diff options
| author | Paul Richards <paul@FreeBSD.org> | 1994-08-25 14:45:46 +0000 |
|---|---|---|
| committer | Paul Richards <paul@FreeBSD.org> | 1994-08-25 14:45:46 +0000 |
| commit | 58b3334f82243554e7fcd56db26286a9e508b7f3 (patch) | |
| tree | a362e5f5c5a1df62ceaec6ffd385a4e3c35ff2b0 /Makefile | |
| parent | 2581e485d59f52787ec3014b6f82bd510a300063 (diff) | |
Notes
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/Makefile b/Makefile index a99819b7d734a..c2a75e56d8bd2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.10 1994/08/20 21:34:59 csgr Exp $ +# $Id: Makefile,v 1.11 1994/08/25 10:47:30 paul Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include and MOST of /usr/lib @@ -85,7 +85,7 @@ CLEANDIR= clean CLEANDIR= cleandir .endif -world: directories cleandist mk includes libraries tools mdec +world: directories cleandist mk includes libraries tools @echo "--------------------------------------------------------------" @echo " Rebuilding ${DESTDIR} The whole thing" @echo "--------------------------------------------------------------" @@ -178,8 +178,14 @@ libraries: cd ${.CURDIR}/secure/lib && \ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} .endif +.if exists(sys) + cd ${.CURDIR}/sys/libkern && \ + ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} +.endif +.if exists(lib) cd ${.CURDIR}/lib && \ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} +.endif # You need the lex lib before you can build kerberosIV #XXX # We don't have lex in the 2.0 tree yet! #XXX cd ${.CURDIR}/usr.bin/lex/lib && \ @@ -205,21 +211,4 @@ tools: cd ${.CURDIR}/usr.bin/make && \ ${MAKE} depend all install ${CLEANDIR} ${OBJDIR} -mdec: - @echo "--------------------------------------------------------------" - @echo " Rebuilding ${DESTDIR}/usr/mdec" - @echo "--------------------------------------------------------------" - @echo - @echo " XXX Not yet ready in 2.0.0" -#XXX.if ${MACHINE} == "i386" -#XXX # XXX Need to fix for obj case, src/sys/Makefile needs to be fixed to -#XXX # traverse down into here and this can go away! -#XXX cd ${.CURDIR}/sys/i386/boot && ${MAKE} depend all install ${CLEANDIR} -#XXX.if defined (DESTDIR) -#XXX # XXX Really need to fix the sys/i386/boot Makefile so this is not -#XXX # necessary!!! -#XXX cd /usr/mdec && find . | cpio -pdamuv ${DESTDIR}/usr/mdec -#XXX.endif -#XXX.endif - .include <bsd.subdir.mk> |
