From 4a9d3efb86f593efdb747cf772ab9849fea3d921 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 12 Mar 1998 13:19:59 +0000 Subject: [PATCH] compile_et is now used early to build includes for libss, so build it earlier. This is probably unnecessary. Added now-necessary -B for installing headers for libss. Removed now-unnecessary -B for building cleandepend for rpcgen. --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4919b8ba600e..068c84dc3a0a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.160 1998/03/12 10:08:50 bde Exp $ +# $Id: Makefile,v 1.161 1998/03/12 10:55:02 bde Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -470,10 +470,12 @@ bootstrap: # on cleaned away headers in ${WORLDTMP}. # include-tools: - cd ${.CURDIR}/usr.bin/rpcgen && ${MAKE} -B cleandepend && \ +.for d in usr.bin/compile_et usr.bin/rpcgen + cd ${.CURDIR}/$d && ${MAKE} cleandepend && \ ${MAKE} ${MK_FLAGS} depend && \ ${MAKE} ${MK_FLAGS} all && \ ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} +.endfor # # includes - possibly generate and install the include files. @@ -532,7 +534,7 @@ includes: .endif cd ${.CURDIR}/lib/libtermcap && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libcom_err && ${MAKE} beforeinstall - cd ${.CURDIR}/lib/libss && ${MAKE} hdrs beforeinstall + cd ${.CURDIR}/lib/libss && ${MAKE} -B hdrs beforeinstall cd ${.CURDIR}/lib/libscsi && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libutil && ${MAKE} beforeinstall cd ${.CURDIR}/lib/libvgl && ${MAKE} beforeinstall @@ -554,7 +556,6 @@ lib-tools: gnu/usr.bin/bison \ gnu/usr.bin/cc \ usr.bin/ar \ - usr.bin/compile_et \ usr.bin/lex/lib \ usr.bin/mk_cmds \ usr.bin/nm \