diff options
author | asami <asami@FreeBSD.org> | 1998-11-08 18:29:53 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-11-08 18:29:53 +0800 |
commit | 61b7191822802fe9b06580ddec9765d50dfbf205 (patch) | |
tree | 5d2246f3ded2199e200c7f2e45ab1c353bd0577f /Mk/bsd.port.subdir.mk | |
parent | 1536e272f99c66137a6ce5a6d58a2ab3b6d73696 (diff) | |
download | freebsd-ports-gnome-61b7191822802fe9b06580ddec9765d50dfbf205.tar.gz freebsd-ports-gnome-61b7191822802fe9b06580ddec9765d50dfbf205.tar.zst freebsd-ports-gnome-61b7191822802fe9b06580ddec9765d50dfbf205.zip |
(1) New variable MAKE_ARGS: will be appended to build/install make argument
list. The old MAKE_FLAGS was a little hard to use since it had a weird
default ("-f").
Suggested by: Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>
(2) Add new targets clean-restricted and clean-for-cdrom, which will
delete RESTRICTED and NO_CDROM packages and distfiles from the top.
Reviewed by: jkh
(3) Add depends to list of things to recurse on. It will help people
who are trying to fetch some ports plus their dependencies.
Requested by: Chris Dillon <cdillon@wolves.k12.mo.us>
Diffstat (limited to 'Mk/bsd.port.subdir.mk')
-rw-r--r-- | Mk/bsd.port.subdir.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Mk/bsd.port.subdir.mk b/Mk/bsd.port.subdir.mk index ba16c9e642a9..8d63b0031541 100644 --- a/Mk/bsd.port.subdir.mk +++ b/Mk/bsd.port.subdir.mk @@ -1,5 +1,5 @@ # from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91 -# $Id: bsd.port.subdir.mk,v 1.24 1998/08/26 23:46:13 asami Exp $ +# $Id: bsd.port.subdir.mk,v 1.25 1998/10/30 08:28:02 asami Exp $ # # The include file <bsd.port.subdir.mk> contains the default targets # for building ports subdirectories. @@ -28,7 +28,8 @@ # Creating README.html for package. # # afterinstall, all, beforeinstall, build, checksum, clean, -# configure, deinstall, depend, describe, extract, fetch, fetch-list, +# clean-for-cdrom, clean-restricted, configure, deinstall, +# depend, depends, describe, extract, fetch, fetch-list, # install, package, package-loop, readmes, realinstall, reinstall, tags # @@ -79,7 +80,8 @@ ${SUBDIR}:: ${MAKE} all .for __target in all fetch fetch-list package package-loop extract configure \ - build clean deinstall depend describe distclean \ + build clean clean-for-cdrom clean-restricted \ + deinstall depend depends describe distclean \ reinstall tags checksum .if !target(${__target}) ${__target}: _SUBDIRUSE |