diff options
author | dmcmahill <dmcmahill> | 2001-12-17 02:32:22 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-12-17 02:32:22 +0000 |
commit | fcef78fe9cbfdd7836e173ee0720bb2e40c9e286 (patch) | |
tree | 46206899ae8ca78a529c724dd73b18e44d6a3b43 /Makefile | |
parent | 00880eaf1b79d1bb91718c759d52e0d53f74e2a8 (diff) | |
download | pkgsrc-fcef78fe9cbfdd7836e173ee0720bb2e40c9e286.tar.gz |
- add 'bulk-cache' and 'clean-bulk-cache' targets to create and remove
the cache files used during a bulk pkgsrc build.
- replace the code in the build script that used to create the cache
files with a 'make bulk-cache' call.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2001/07/17 13:11:51 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2001/12/17 02:32:22 dmcmahill Exp $ # .include "mk/bsd.prefs.mk" @@ -53,6 +53,14 @@ PKGSRCTOP= yes .include "mk/bsd.pkg.subdir.mk" +# the bulk-cache and clean-bulk-cache targets are a global-pkgsrc +# thing and thus it makes sense to run it from the top level pkgsrc +# directory. +.if make(bulk-cache) || make(clean-bulk-cache) +.include "${.CURDIR}/mk/bulk/bsd.bulk-pkg.mk" +_PKGSRCDIR?=${.CURDIR} +.endif + index: @rm -f ${.CURDIR}/INDEX @${MAKE} ${.CURDIR}/INDEX |