diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 2 insertions, 17 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.122 1997/04/30 16:02:03 bde Exp $ +# $Id: Makefile,v 1.123 1997/05/03 02:51:58 jb Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -33,6 +33,7 @@ # /usr/share/mk. These include: # obj depend all install clean cleandepend cleanobj +.MAKEFLAGS:= ${.MAKEFLAGS} -m ${.CURDIR}/share/mk # Put initial settings here. SUBDIR= @@ -155,11 +156,6 @@ world: cd ${.CURDIR} && ${MAKE} hierarchy @echo @echo "--------------------------------------------------------------" - @echo " Rebuilding /usr/share/mk" - @echo "--------------------------------------------------------------" - cd ${.CURDIR} && ${MAKE} mk - @echo - @echo "--------------------------------------------------------------" @echo " Cleaning up the source tree" @echo "--------------------------------------------------------------" .if defined(NOCLEAN) @@ -250,11 +246,6 @@ reinstall: cd ${.CURDIR} && ${MAKE} hierarchy @echo @echo "--------------------------------------------------------------" - @echo " Rebuilding /usr/share/mk" - @echo "--------------------------------------------------------------" - cd ${.CURDIR} && ${MAKE} mk - @echo - @echo "--------------------------------------------------------------" @echo " Installing everything.." @echo "--------------------------------------------------------------" cd ${.CURDIR} && ${MAKE} install @@ -359,12 +350,6 @@ hierarchy: cd ${.CURDIR}/etc && ${MAKE} distrib-dirs # -# mk - update the /usr/share/mk makefiles. -# -mk: - cd ${.CURDIR}/share/mk && ${MAKE} install - -# # bootstrap - [re]build tools needed to run the actual build, this includes # tools needed by 'make depend', as some tools are needed to generate source # for the dependency information to be gathered from. |