diff options
author | peter <peter@FreeBSD.org> | 1996-10-04 08:48:27 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-04 08:48:27 +0000 |
commit | f163ad2484dcfb0c5291c1154b306870e0d82417 (patch) | |
tree | bfecf6cc0e9f85f0f24132de48eb7aaaf908979d /Makefile | |
parent | 2108e418757d8fc75b51279e43909c49226ad789 (diff) | |
download | FreeBSD-src-f163ad2484dcfb0c5291c1154b306870e0d82417.zip FreeBSD-src-f163ad2484dcfb0c5291c1154b306870e0d82417.tar.gz |
Add some 'world' hooks for libg++-2.7.2, specifically the new libstdc++
directory. Also, add gnu/usr.bin/as to the lib-tools target since libgcc
generates weak symbols, and libstdc++/libg++ use them. ie: coming from a
2.1.x system will fail without 'as'.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.102 1996/09/19 16:36:24 peter Exp $ +# $Id: Makefile,v 1.103 1996/09/21 06:06:41 ache Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -399,6 +399,7 @@ includes: cd ${.CURDIR}/gnu/include && ${MAKE} install cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall + cd ${.CURDIR}/gnu/lib/libstdc++ && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libg++ && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libdialog && ${MAKE} beforeinstall .if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES) @@ -434,6 +435,8 @@ lib-tools: ${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR} cd ${.CURDIR}/gnu/usr.bin/ld && ${MAKE} depend && \ ${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR} + cd ${.CURDIR}/gnu/usr.bin/as && ${MAKE} depend && \ + ${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR} cd ${.CURDIR}/usr.bin/ar && ${MAKE} depend && \ ${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR} cd ${.CURDIR}/usr.bin/ranlib && ${MAKE} depend && \ |