aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-05-21 19:41:16 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-05-21 19:41:16 +0000
commitd50204c1b0a462437edc93e6d5fa4c47f2c2d7a3 (patch)
treea1035de8b94c67282c4435267175938134ea6942 /Makefile
parenteceeb60438c275869ca19f59459c8e747368ae49 (diff)
downloadsrc-d50204c1b0a462437edc93e6d5fa4c47f2c2d7a3.tar.gz
src-d50204c1b0a462437edc93e6d5fa4c47f2c2d7a3.zip
Remove evil MAKE_LOCAL and MAKE_PORTS hacks and replace them with
a simpler, more general LOCAL_DIRS hack. Reviewed by: asami
Notes
Notes: svn path=/head/; revision=25979
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d7fa5acf8c90..6b55628ba511 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,9 @@
#
-# $Id: Makefile,v 1.124 1997/05/10 06:53:40 bde Exp $
+# $Id: Makefile,v 1.125 1997/05/13 18:11:38 peter Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
-# -DMAKE_LOCAL to add ./local to the SUBDIR list
-# -DMAKE_PORTS to add ./ports to the SUBDIR list
+# -DLOCAL_DIRS to add additional dirs to the SUBDIR list
# -DMAKE_EBONES to build eBones (KerberosIV)
# -DALLLANG to build documentation for all languages
# (where available -- see share/doc/Makefile)
@@ -98,11 +97,12 @@ SUBDIR+= etc
# These are last, since it is nice to at least get the base system
# rebuilt before you do them.
-.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
-SUBDIR+= local
+.if defined(LOCAL_DIRS)
+.for _DIR in ${LOCAL_DIRS}
+.if exists(${_DIR}) & exists(${_DIR}/Makefile)
+SUBDIR+= ${_DIR}
.endif
-.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
-SUBDIR+= ports
+.endfor
.endif
# Handle -DNOOBJDIR, -DNOCLEAN and -DNOCLEANDIR