Added the following so that people can have these built
authorRod Grimes <rgrimes@FreeBSD.org>
Tue, 11 Jan 1994 08:06:49 +0000 (08:06 +0000)
committerRod Grimes <rgrimes@FreeBSD.org>
Tue, 11 Jan 1994 08:06:49 +0000 (08:06 +0000)
automatically if they like:
# This is for people who want to have src/ports, src/local built
# automatically.
.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
SUBDIR+= local
.endif
.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
SUBDIR+= ports
.endif

Makefile

index ceb31b0..c8951e4 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 #      @(#)Makefile    5.1.1.2 (Berkeley) 5/9/91
 #
 #      @(#)Makefile    5.1.1.2 (Berkeley) 5/9/91
 #
-#      $Id: Makefile,v 1.30 1993/12/31 09:02:25 rgrimes Exp $
+#      $Id: Makefile,v 1.31 1994/01/05 20:11:49 nate Exp $
 #
 
 SUBDIR=
 #
 
 SUBDIR=
@@ -38,6 +38,16 @@ SUBDIR+= usr.bin
 SUBDIR+= usr.sbin
 .endif
 
 SUBDIR+= usr.sbin
 .endif
 
+# This is for people who want to have src/ports, src/local built
+# automatically.  
+.if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
+SUBDIR+= local
+.endif
+.if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
+SUBDIR+= ports
+.endif
+
+
 # Special cases: etc sys
 # Not ported: kerberosIV
 
 # Special cases: etc sys
 # Not ported: kerberosIV