From 5b938211e33090852851430b50cb13314ba7dd9a Mon Sep 17 00:00:00 2001 From: paul Date: Sun, 24 Mar 1996 13:16:45 +0000 Subject: [PATCH] Re-instate the bootstrap target which can be used to build tools that can't be built by older OS versions. Use it to install the lint binaries. --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c2b15818fc57..a175ca78c26f 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.76 1996/02/17 14:23:25 peter Exp $ +# $Id: Makefile,v 1.77 1996/03/11 14:59:10 jkh Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include and MOST of /usr/lib @@ -100,7 +100,7 @@ CLEANDIR= cleandir .endif .endif -world: hierarchy mk $(WORLD_CLEANDIST) include-tools includes lib-tools libraries build-tools +world: hierarchy mk $(WORLD_CLEANDIST) bootstrap include-tools includes lib-tools libraries build-tools @echo "--------------------------------------------------------------" @echo " Rebuilding ${DESTDIR} The whole thing" @echo "--------------------------------------------------------------" @@ -109,6 +109,12 @@ world: hierarchy mk $(WORLD_CLEANDIST) include-tools includes lib-tools librarie cd ${.CURDIR}/share/man && ${MAKE} makedb @echo "make world completed on `date`" +bootstrap: + cd ${.CURDIR}/usr.bin/xlint && ${MAKE} lint1 lint2 xlint + cd ${.CURDIR}/usr.bin/xlint/lint1 && ${MAKE} install + cd ${.CURDIR}/usr.bin/xlint/lint2 && ${MAKE} install + cd ${.CURDIR}/usr.bin/xlint/xlint && ${MAKE} install + reinstall: hierarchy mk includes @echo "--------------------------------------------------------------" @echo " Reinstall ${DESTDIR} The whole thing"