diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 1994-10-15 21:19:56 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-10-15 21:19:56 +0000 |
| commit | ac08bc0c4ab12ddcb196e20ea31ee4ff8d882e67 (patch) | |
| tree | 861f6be4c99cedab7d1bb80a9014375b3ed86ed9 | |
| parent | 9d40918f0f23df82a31dc5deaefb23b1db1c8f46 (diff) | |
Notes
| -rw-r--r-- | Makefile | 38 |
1 files changed, 37 insertions, 1 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.25 1994/10/08 15:08:14 ache Exp $ +# $Id: Makefile,v 1.26 1994/10/11 23:33:00 ache Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include and MOST of /usr/lib @@ -152,6 +152,42 @@ cleandist: ${MAKE} obj .endif +installmost: + @echo "--------------------------------------------------------------" + @echo " Installing programs only" + @echo "--------------------------------------------------------------" + cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} install + cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} install +#.if defined(MAKE_EBONES) && !defined(NOCRYPT) +# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} installmost +#.endif +#.if !defined(NOSECURE) && !defined(NOCRYPT) +# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} installmost +#.endif + +most: + @echo "--------------------------------------------------------------" + @echo " Building programs only" + @echo "--------------------------------------------------------------" + cd ${.CURDIR}/bin && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/sbin && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/libexec && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/usr.bin && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/usr.sbin && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/gnu/libexec && ${MAKE} ${.MAKEFLAGS} all + cd ${.CURDIR}/gnu/usr.bin && ${MAKE} ${.MAKEFLAGS} all +#.if defined(MAKE_EBONES) && !defined(NOCRYPT) +# cd ${.CURDIR}/eBones && ${MAKE} ${.MAKEFLAGS} most +#.endif +#.if !defined(NOSECURE) && !defined(NOCRYPT) +# cd ${.CURDIR}/secure && ${MAKE} ${.MAKEFLAGS} most +#.endif + mk: @echo "--------------------------------------------------------------" @echo " Rebuilding ${DESTDIR}/usr/share/mk" |
