mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
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.
This commit is contained in:
parent
c9cbce0fdb
commit
4a9d3efb86
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=34520
1 changed files with 5 additions and 4 deletions
9
Makefile
9
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 \
|
||||
|
|
Loading…
Reference in a new issue