diff options
author | peter <peter@FreeBSD.org> | 1996-08-30 22:35:30 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-08-30 22:35:30 +0000 |
commit | e7775d9a185f3b2ee8f7c0a8a09f732c06062f52 (patch) | |
tree | c9014271a7690796089021b4b083cc95bc5c6b03 /Makefile | |
parent | ed0593748738d96c2f2af55960427d492587e91e (diff) | |
download | FreeBSD-src-e7775d9a185f3b2ee8f7c0a8a09f732c06062f52.zip FreeBSD-src-e7775d9a185f3b2ee8f7c0a8a09f732c06062f52.tar.gz |
- cosmetic change to 'make world'
- do an explicit 'make all' in include/rpcsvc in 'make includes' as
a 'make install' is not supposed to build anything.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 37 |
1 files changed, 33 insertions, 4 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.96 1996/08/07 19:28:09 nate Exp $ +# $Id: Makefile,v 1.98 1996/08/25 05:17:49 jkh Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -186,9 +186,23 @@ world: cd ${.CURDIR} && ${MAKE} build-tools @echo @echo "--------------------------------------------------------------" - @echo " Rebuilding.. The whole thing" + @echo " Rebuilding dependencies" + @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ${MAKE} depend + @echo + @echo "--------------------------------------------------------------" + @echo " Building everything.." + @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ${MAKE} all + @echo + @echo "--------------------------------------------------------------" + @echo " Installing everything.." + @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ${MAKE} install + @echo + @echo "--------------------------------------------------------------" + @echo " Rebuilding man page indexes" @echo "--------------------------------------------------------------" - cd ${.CURDIR} && ${MAKE} depend && ${MAKE} all install cd ${.CURDIR}/share/man && ${MAKE} makedb .if target(post-world) @echo @@ -200,6 +214,7 @@ world: @echo @echo "--------------------------------------------------------------" @echo "make world completed on `date`" + @echo "--------------------------------------------------------------" # # reinstall @@ -225,10 +240,23 @@ reinstall: cd ${.CURDIR} && ${MAKE} includes @echo @echo "--------------------------------------------------------------" - @echo " Reinstalling.. The whole thing" + @echo " Rebuilding dependencies" @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ${MAKE} depend @echo + @echo "--------------------------------------------------------------" + @echo " Building everything.." + @echo "--------------------------------------------------------------" + cd ${.CURDIR} && ${MAKE} all + @echo + @echo "--------------------------------------------------------------" + @echo " Installing everything.." + @echo "--------------------------------------------------------------" cd ${.CURDIR} && ${MAKE} install + @echo + @echo "--------------------------------------------------------------" + @echo " Rebuilding man page indexes" + @echo "--------------------------------------------------------------" cd ${.CURDIR}/share/man && ${MAKE} makedb @@ -363,6 +391,7 @@ includes: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${DESTDIR}/usr/include .endif + cd ${.CURDIR}/include/rpcsvc && ${MAKE} all cd ${.CURDIR}/include && ${MAKE} install cd ${.CURDIR}/gnu/include && ${MAKE} install cd ${.CURDIR}/gnu/lib/libreadline && ${MAKE} beforeinstall |