diff options
author | peter <peter@FreeBSD.org> | 1997-08-18 06:44:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-08-18 06:44:44 +0000 |
commit | 2528a5618ebe21027957716ffca6d9dce01632a6 (patch) | |
tree | 8ab5c64955da4ba6bf0e611f7f451006487dbab9 /Makefile | |
parent | 0abf5130c20d87da265969d781d46a4f74174737 (diff) | |
download | FreeBSD-src-2528a5618ebe21027957716ffca6d9dce01632a6.zip FreeBSD-src-2528a5618ebe21027957716ffca6d9dce01632a6.tar.gz |
In the includes target, call the header install target explicitly and then
call the 'symlinks' target to build the /usr/obj/tmp/install/sys tree since
In the includes target, call the header install target explicitly and then
call the 'symlinks' target to build the /usr/obj/tmp/install/sys tree since
we set this up manually earlier, and if we do a 'make all install', we
replace the symlink tree in the obj dirs with new copies of the files
which breaks any chance of -DNOCLEAN working.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.134 1997/08/12 10:12:56 asami Exp $ +# $Id: Makefile,v 1.135 1997/08/17 21:14:22 andreas Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -441,7 +441,7 @@ includes: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${DESTDIR}/usr/include .endif - cd ${.CURDIR}/include && ${MAKE} all install + cd ${.CURDIR}/include && ${MAKE} all installhdrs symlinks cd ${.CURDIR}/gnu/include && ${MAKE} install cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall cd ${.CURDIR}/gnu/lib/libregex && ${MAKE} beforeinstall |