summaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1999-03-31 06:38:13 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1999-03-31 06:38:13 +0000
commit5bcba11b710c06ac4a703381eee8c86a5feb8951 (patch)
tree6dcb8f0ab0efbb1b1d340f08a480d9e5de162276 /Makefile.inc1
parentb3f059f4d5b7a0ce68664bd04edec387100061b3 (diff)
downloadsrc-test2-5bcba11b710c06ac4a703381eee8c86a5feb8951.tar.gz
src-test2-5bcba11b710c06ac4a703381eee8c86a5feb8951.zip
Notes
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc120
1 files changed, 15 insertions, 5 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index c79bec346665..d7685e7191bc 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.inc1,v 1.64 1999/02/27 03:18:10 jkh Exp $
+# $Id: Makefile.inc1,v 1.65 1999/03/01 01:09:06 imp Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@@ -599,7 +599,17 @@ lib-tools:
usr.bin/tsort \
${_aout_as} \
gnu/usr.bin/bison \
- gnu/usr.bin/cc \
+ gnu/usr.bin/cc
+ cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \
+ ${MAKE} ${MK_FLAGS} all; \
+ ${MAKE} ${MK_FLAGS} -B install; \
+ ${MAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR}
+.endfor
+ cd ${.CURDIR}/gnu/lib/libgcc; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \
+ ${MAKE} ${MK_FLAGS} all; \
+ ${MAKE} ${MK_FLAGS} -B install; \
+ ${MAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR}
+.for d in \
${_aout_ar} \
usr.bin/env \
usr.bin/lex/lib \
@@ -673,8 +683,8 @@ _libperl= gnu/usr.bin/perl/libperl
# bootstrap-libraries - build just enough libraries for the bootstrap
# tools, and install them under ${WORLDTMP}.
#
-# Build csu and libgcc early so that some tools get linked to the new
-# versions (too late for the main tools, however). Then build the
+# Build csu early so that some tools get linked to the new
+# version (too late for the main tools, however). Then build the
# necessary prerequisite libraries (libtermcap just needs to be before
# libcurses, and this only matters for the NOCLEAN case when NOPIC is
# not set).
@@ -685,7 +695,7 @@ _libperl= gnu/usr.bin/perl/libperl
# host.
#
bootstrap-libraries:
-.for _lib in ${_csu} gnu/usr.bin/cc/libgcc lib/libtermcap \
+.for _lib in ${_csu} lib/libtermcap \
gnu/lib/libregex gnu/lib/libreadline lib/libc \
lib/libcrypt lib/libcurses lib/libedit ${_libm} \
lib/libmd lib/libutil lib/libz usr.bin/lex/lib \