diff options
author | Bryan Jurish <mukau@users.sourceforge.net> | 2009-03-07 21:21:48 +0000 |
---|---|---|
committer | Bryan Jurish <mukau@users.sourceforge.net> | 2009-03-07 21:21:48 +0000 |
commit | 50e38f16b75c09739cefc2f9ac49a6da42ba1852 (patch) | |
tree | f7a2f0ec8ae515f2916a9255d86dfe260f79010a /hello | |
parent | b8b6bff40742f898a10e745b44919bece1fffff1 (diff) |
+ updated README.(txt|html)
svn path=/trunk/externals/moocow/; revision=10847
Diffstat (limited to 'hello')
-rw-r--r-- | hello/README.html | 26 | ||||
-rw-r--r-- | hello/README.txt | 34 |
2 files changed, 35 insertions, 25 deletions
diff --git a/hello/README.html b/hello/README.html index 8f0d7a2..eb8870e 100644 --- a/hello/README.html +++ b/hello/README.html @@ -100,22 +100,28 @@ how to use GNU autotools to manage your own Pd external package.</p> </p> <h2><a name="files">Files</a></h2> <dl> -<dt><strong><a name="item___top_srcdir__m4">$(top_srcdir)/m4</a></strong></dt> +<dt><strong><a name="item___top_srcdir__common">$(top_srcdir)/common</a></strong></dt> <dd> -<p>The directory m4/ should be copied to your top-level package directory. +<p>The directory common/ includes common code for the autotools packages. +Copy it to your top-level package directory.</p> +</dd> +<dt><strong><a name="item___top_srcdir__common_m4">$(top_srcdir)/common/m4</a></strong></dt> + +<dd> +<p>Contains m4 macros for autotools. See <a href="#ax_pd_external_m4">ax_pd_external.m4</a> for details.</p> </dd> -<dt><strong><a name="item___top_srcdir__pdexternal_am">$(top_srcdir)/pdexternal.am</a></strong></dt> +<dt><strong><a name="item___top_srcdir__common_pdexternal_am">$(top_srcdir)/common/pdexternal.am</a></strong></dt> <dd> -<p>The file pdexternal.am should be copied to your top-level package directory +<p>May be included in your package's Makefile.am. See <a href="#pdexternal_am">pdexternal.am</a> for details.</p> </dd> -<dt><strong><a name="item_h">$(srcdir)/mooPdUtils.h (optional)</a></strong></dt> +<dt><strong><a name="item_h">$(top_srcdir)/common/mooPdUtils.h (optional)</a></strong></dt> <dd> -<p>The file mooPdUtils.h may be copied to your source-level directory. +<p>The file mooPdUtils.h may be included by your C source files. Currently, this only provides a PDEXT_UNUSED macro to avoid annoying gcc warnings under -W.</p> </dd> @@ -123,11 +129,11 @@ gcc warnings under -W.</p> <p> </p> <h2><a name="running_aclocal">Running aclocal</a></h2> -<p>You must pass the ``-I m4'' flag to aclocal when you call it. +<p>You must pass the ``-I common/m4'' flag to aclocal when you call it. For maintainer-mode rebuilding and autoreconf, you should add the following to your top-level Makefile.am:</p> <pre> - ACLOCAL_AMFLAGS = -I m4</pre> + ACLOCAL_AMFLAGS = -I $(top_srcdir)/common/m4</pre> <p>See the example package's autogen.sh for a useful wrapper script.</p> <p> </p> @@ -148,7 +154,7 @@ variables:</p> <p> </p> <h2><a name="makefile_am">Makefile.am</a></h2> -<p>You probably want to include $(top_srcdir)/pdexternal.am in +<p>You probably want to include $(top_srcdir)/common/pdexternal.am in your Makefile.am(s). This will allow you to build Pd externals as ``_PROGRAMS'' targets. In particular, pdext_PROGRAMS targets will be built as externals and installed in PDEXT_DIR (see above).</p> @@ -183,7 +189,7 @@ following to Makefile.am:</p> <p> </p> <h2><a name="ax_pd_external_m4">ax_pd_external.m4</a></h2> -<p>The AX_PD_EXTERNAL macro defined in m4/ax_pd_external.m4 +<p>The AX_PD_EXTERNAL macro defined in common/m4/ax_pd_external.m4 is intended to perform all common autoconf-level checks and substitutions necessary for building Pd external packages on various systems. Among other things, this includes:</p> diff --git a/hello/README.txt b/hello/README.txt index e4e5b97..7f1da0b 100644 --- a/hello/README.txt +++ b/hello/README.txt @@ -45,25 +45,29 @@ HOWTO use GNU autotools to manage your own Pd external package. Files - $(top_srcdir)/m4 - The directory m4/ should be copied to your top-level package - directory. See "ax_pd_external.m4" for details. + $(top_srcdir)/common + The directory common/ includes common code for the autotools + packages. Copy it to your top-level package directory. - $(top_srcdir)/pdexternal.am - The file pdexternal.am should be copied to your top-level package - directory See "pdexternal.am" for details. + $(top_srcdir)/common/m4 + Contains m4 macros for autotools. See "ax_pd_external.m4" for + details. - $(srcdir)/mooPdUtils.h (optional) - The file mooPdUtils.h may be copied to your source-level directory. + $(top_srcdir)/common/pdexternal.am + May be included in your package's Makefile.am. See "pdexternal.am" + for details. + + $(top_srcdir)/common/mooPdUtils.h (optional) + The file mooPdUtils.h may be included by your C source files. Currently, this only provides a PDEXT_UNUSED macro to avoid annoying gcc warnings under -W. Running aclocal - You must pass the "-I m4" flag to aclocal when you call it. For + You must pass the "-I common/m4" flag to aclocal when you call it. For maintainer-mode rebuilding and autoreconf, you should add the following to your top-level Makefile.am: - ACLOCAL_AMFLAGS = -I m4 + ACLOCAL_AMFLAGS = -I $(top_srcdir)/common/m4 See the example package's autogen.sh for a useful wrapper script. @@ -83,7 +87,7 @@ HOWTO See the example package's configure.ac for a complete working example. Makefile.am - You probably want to include $(top_srcdir)/pdexternal.am in your + You probably want to include $(top_srcdir)/common/pdexternal.am in your Makefile.am(s). This will allow you to build Pd externals as "_PROGRAMS" targets. In particular, pdext_PROGRAMS targets will be built as externals and installed in PDEXT_DIR (see above). @@ -110,10 +114,10 @@ HOWTO pddoc_DATA = hello-help.pd ax_pd_external.m4 - The AX_PD_EXTERNAL macro defined in m4/ax_pd_external.m4 is intended to - perform all common autoconf-level checks and substitutions necessary for - building Pd external packages on various systems. Among other things, - this includes: + The AX_PD_EXTERNAL macro defined in common/m4/ax_pd_external.m4 is + intended to perform all common autoconf-level checks and substitutions + necessary for building Pd external packages on various systems. Among + other things, this includes: * Providing --with-FEATURE and --enable-FEATURE arguments such as --with-pd-dir (see "CONFIGURATION OPTIONS", above). |