diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-16 20:24:29 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-16 20:24:29 +0000 |
| commit | 0eec3684ff4dacab3de452de7889700c61dc56b1 (patch) | |
| tree | 3f55eaf44d108ca249b4e0ba8c13096a08c1c228 /Makefile | |
| parent | ae32fff8356f4ea609aa1146d1cf71ec045679e6 (diff) | |
Notes
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 07810ada65405..7275f00d83100 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.16 1994/09/09 20:29:20 csgr Exp $ +# $Id: Makefile,v 1.17 1994/09/12 05:17:15 rgrimes Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include and MOST of /usr/lib @@ -8,6 +8,7 @@ # -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir # -DNOCRYPT will prevent building of crypt versions # XXX2 -DNOKERBEROS do not build Kerberos +# -DNOLKM do not build loadable kernel modules # -DNOOBJDIR do not run ``${MAKE} obj'' # -DNOPROFILE do not build profiled libraries # -DNOSECURE do not go into secure subdir @@ -53,9 +54,6 @@ SUBDIR+= libexec .if exists(sbin) SUBDIR+= sbin .endif -.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE) -SUBDIR+= secure -.endif .if exists(share) SUBDIR+= share .endif @@ -68,6 +66,12 @@ SUBDIR+= usr.bin .if exists(usr.sbin) SUBDIR+= usr.sbin .endif +.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE) +SUBDIR+= secure +.endif +.if exists(lkm) && !defined(NOLKM) +SUBDIR+= lkm +.endif # These are last, since it is nice to at least get the base system # rebuilt before you do them. |
