- 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.
This commit is contained in:
Peter Wemm 1996-08-30 22:35:30 +00:00
parent 20c5124b62
commit b7a48796ce
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17962

View File

@ -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