diff options
author | wiz <wiz@pkgsrc.org> | 2004-12-03 12:48:15 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-12-03 12:48:15 +0000 |
commit | a5f0a24450876f24b806bc6b8db91f64c3a6bae8 (patch) | |
tree | 2c75d674106e03a5b8c164d89e0965a610e4689d /doc | |
parent | 1bc25990a6f3c54ab5b353c903752b386a458665 (diff) | |
download | pkgsrc-a5f0a24450876f24b806bc6b8db91f64c3a6bae8.tar.gz |
ALL_TARGET -> BUILD_TARGET.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guide/files/build.xml | 6 | ||||
-rw-r--r-- | doc/pkgsrc.html | 14 | ||||
-rw-r--r-- | doc/pkgsrc.txt | 16 |
3 files changed, 18 insertions, 18 deletions
diff --git a/doc/guide/files/build.xml b/doc/guide/files/build.xml index 1bba7dc7679..3e055b6e805 100644 --- a/doc/guide/files/build.xml +++ b/doc/guide/files/build.xml @@ -1,4 +1,4 @@ -<!-- $NetBSD: build.xml,v 1.2 2004/11/22 16:50:01 wiz Exp $ --> +<!-- $NetBSD: build.xml,v 1.3 2004/12/03 12:48:15 wiz Exp $ --> <chapter id="build"> <title>The build process</title> @@ -278,11 +278,11 @@ CONFIGURE_ARGS+= netbsd13</programlisting> <listitem> <para>Once configuration has taken place, the software will be built by invoking <varname>$MAKE_PROGRAM</varname> on - <varname>$MAKEFILE</varname> with <varname>$ALL_TARGET</varname> as + <varname>$MAKEFILE</varname> with <varname>$BUILD_TARGET</varname> as the target to build. The default <varname>MAKE_PROGRAM</varname> is <quote>gmake</quote> if <varname>USE_GNU_TOOLS</varname> contains <quote>make</quote>, <quote>make</quote> otherwise. <varname>MAKEFILE</varname> is set to - <quote>Makefile</quote> by default, and <varname>ALL_TARGET</varname> + <quote>Makefile</quote> by default, and <varname>BUILD_TARGET</varname> defaults to <quote>all</quote>. Any of these variables can be set in the package's Makefile to change the default build process.</para> diff --git a/doc/pkgsrc.html b/doc/pkgsrc.html index f8ca6b66454..6a4c8b6426f 100644 --- a/doc/pkgsrc.html +++ b/doc/pkgsrc.html @@ -4297,7 +4297,7 @@ CONF_FILES= ${EGDIR}/Muttrc ${PKG_SYSCONFDIR}/Muttrc audit-packages installation procedure:</p> <pre class="screen"> =========================================================================== -$NetBSD: pkgsrc.html,v 1.8 2004/12/01 09:52:59 wiz Exp $ +$NetBSD: pkgsrc.html,v 1.9 2004/12/02 22:23:46 dillo Exp $ You may wish to have the vulnerabilities file downloaded daily so that it remains current. This may be done by adding an appropriate entry @@ -5332,7 +5332,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/unix <p>Be sure to add a RCS ID line as the first thing in any <code class="filename">PLIST</code> file you write:</p> <pre class="programlisting"> -@comment $NetBSD: pkgsrc.html,v 1.8 2004/12/01 09:52:59 wiz Exp $ +@comment $NetBSD: pkgsrc.html,v 1.9 2004/12/02 22:23:46 dillo Exp $ </pre> </div> @@ -6007,7 +6007,7 @@ DEPENDS+= foo>=1.1.0:../../category/foo "filename">buildlink3.mk</code> is taken from <code class="filename">pkgsrc/graphics/tiff</code>:</p> <pre class="programlisting"> -# $NetBSD: pkgsrc.html,v 1.8 2004/12/01 09:52:59 wiz Exp $ +# $NetBSD: pkgsrc.html,v 1.9 2004/12/02 22:23:46 dillo Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ TIFF_BUILDLINK3_MK:= ${TIFF_BUILDLINK3_MK}+ @@ -7122,7 +7122,7 @@ CONFIGURE_ARGS+= netbsd13 will be built by invoking <code class= "varname">$MAKE_PROGRAM</code> on <code class= "varname">$MAKEFILE</code> with <code class= - "varname">$ALL_TARGET</code> as the target to + "varname">$BUILD_TARGET</code> as the target to build. The default <code class= "varname">MAKE_PROGRAM</code> is “<span class="quote">gmake</span>” if @@ -7132,7 +7132,7 @@ CONFIGURE_ARGS+= netbsd13 otherwise. <code class="varname">MAKEFILE</code> is set to “<span class= "quote">Makefile</span>” by default, and - <code class="varname">ALL_TARGET</code> defaults to + <code class="varname">BUILD_TARGET</code> defaults to “<span class="quote">all</span>”. Any of these variables can be set in the package's Makefile to change the default build process.</p> @@ -10512,7 +10512,7 @@ PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Pg/.packlist </div> </div> <pre class="programlisting"> -# $NetBSD: pkgsrc.html,v 1.8 2004/12/01 09:52:59 wiz Exp $ +# $NetBSD: pkgsrc.html,v 1.9 2004/12/02 22:23:46 dillo Exp $ # DISTNAME= bison-1.25 @@ -10557,7 +10557,7 @@ of the NetBSD source tree is beyond me. </div> </div> <pre class="programlisting"> -@comment $NetBSD: pkgsrc.html,v 1.8 2004/12/01 09:52:59 wiz Exp $ +@comment $NetBSD: pkgsrc.html,v 1.9 2004/12/02 22:23:46 dillo Exp $ bin/bison man/man1/bison.1.gz info/bison.info diff --git a/doc/pkgsrc.txt b/doc/pkgsrc.txt index 70f76ac5a1b..3fd386d5e8b 100644 --- a/doc/pkgsrc.txt +++ b/doc/pkgsrc.txt @@ -14,7 +14,7 @@ The pkgsrc Developers Copyright (C) 1994-2004 The NetBSD Foundation, Inc -$NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +$NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ Abstract @@ -1663,7 +1663,7 @@ The following message is displayed as part of the audit-packages installation procedure: =========================================================================== -$NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +$NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ You may wish to have the vulnerabilities file downloaded daily so that it remains current. This may be done by adding an appropriate entry @@ -2079,7 +2079,7 @@ the PLIST file (or files, see below!). Be sure to add a RCS ID line as the first thing in any PLIST file you write: -@comment $NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +@comment $NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ 8.2. Semi-automatic PLIST generation @@ -2354,7 +2354,7 @@ following command will generate a good starting point for buildlink3.mk files: The following real-life example buildlink3.mk is taken from pkgsrc/graphics/ tiff: -# $NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +# $NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ TIFF_BUILDLINK3_MK:= ${TIFF_BUILDLINK3_MK}+ @@ -2873,9 +2873,9 @@ configure build Once configuration has taken place, the software will be built by invoking - $MAKE_PROGRAM on $MAKEFILE with $ALL_TARGET as the target to build. The + $MAKE_PROGRAM on $MAKEFILE with $BUILD_TARGET as the target to build. The default MAKE_PROGRAM is "gmake" if USE_GNU_TOOLS contains "make", "make" - otherwise. MAKEFILE is set to "Makefile" by default, and ALL_TARGET + otherwise. MAKEFILE is set to "Makefile" by default, and BUILD_TARGET defaults to "all". Any of these variables can be set in the package's Makefile to change the default build process. @@ -4316,7 +4316,7 @@ A.1. files A.1.1. Makefile -# $NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +# $NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ # DISTNAME= bison-1.25 @@ -4340,7 +4340,7 @@ of the NetBSD source tree is beyond me. A.1.3. PLIST -@comment $NetBSD: pkgsrc.txt,v 1.8 2004/12/01 09:52:59 wiz Exp $ +@comment $NetBSD: pkgsrc.txt,v 1.9 2004/12/02 22:23:47 dillo Exp $ bin/bison man/man1/bison.1.gz info/bison.info |