aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-08-30 22:35:30 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-08-30 22:35:30 +0000
commitb7a48796ce8d37b078fd462bb9df0fdd2b5dedb1 (patch)
treec9014271a7690796089021b4b083cc95bc5c6b03 /Makefile
parent20c5124b62014e629ddcdc251aecc2faa57c9a55 (diff)
downloadsrc-b7a48796ce8d37b078fd462bb9df0fdd2b5dedb1.tar.gz
src-b7a48796ce8d37b078fd462bb9df0fdd2b5dedb1.zip
- 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.
Notes
Notes: svn path=/head/; revision=17962
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile37
1 files changed, 33 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 72234eeef336..e467c957f537 100644
--- a/Makefile
+++ b/Makefile
@@ -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