diff options
author | peter <peter@FreeBSD.org> | 1997-08-18 06:54:18 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-08-18 06:54:18 +0000 |
commit | b224a05842b1f2b4d5704ed084f9ca79471d929d (patch) | |
tree | d93af593b38582b914ef60dcf9622ce8bf99988b /Makefile | |
parent | 2528a5618ebe21027957716ffca6d9dce01632a6 (diff) | |
download | FreeBSD-src-b224a05842b1f2b4d5704ed084f9ca79471d929d.zip FreeBSD-src-b224a05842b1f2b4d5704ed084f9ca79471d929d.tar.gz |
Pass command line args to 'buildworld' and 'installworld' etc. Otherwise
'make -DNOCLEAN world' is completely ignored.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.135 1997/08/17 21:14:22 andreas Exp $ +# $Id: Makefile,v 1.136 1997/08/18 06:44:44 peter Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -144,16 +144,16 @@ world: @echo "--------------------------------------------------------------" @echo " Making 'pre-world' target" @echo "--------------------------------------------------------------" - cd ${.CURDIR} && ${MAKE} pre-world + cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} pre-world .endif - cd ${.CURDIR} && ${MAKE} buildworld - cd ${.CURDIR} && ${MAKE} installworld + cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} buildworld + cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} installworld .if target(post-world) @echo @echo "--------------------------------------------------------------" @echo " Making 'post-world' target" @echo "--------------------------------------------------------------" - cd ${.CURDIR} && ${MAKE} post-world + cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} post-world .endif @echo @echo "--------------------------------------------------------------" |