Retired the "most" and "installmost" targets -- they just
do not have a chance to work nowadays as we have a lot of internal libraries in lib/. Discussed with: marcel, wollman
This commit is contained in:
parent
e2b40c9599
commit
829340b175
6
Makefile
6
Makefile
@ -16,8 +16,6 @@
|
||||
# reinstallkernel.debug
|
||||
# kernel - buildkernel + installkernel.
|
||||
# update - Convenient way to update your source tree (cvs).
|
||||
# most - Build user commands, no libraries or include files.
|
||||
# installmost - Install user commands, no libraries or include files.
|
||||
#
|
||||
# This makefile is simple by design. The FreeBSD make automatically reads
|
||||
# the /usr/share/mk/sys.mk unless the -m argument is specified on the
|
||||
@ -63,9 +61,9 @@
|
||||
TGTS= all all-man buildkernel buildworld checkdpadd clean \
|
||||
cleandepend cleandir depend distribute distributeworld everything \
|
||||
hierarchy install installcheck installkernel installkernel.debug\
|
||||
reinstallkernel reinstallkernel.debug installmost installworld \
|
||||
reinstallkernel reinstallkernel.debug installworld \
|
||||
libraries lint maninstall \
|
||||
most obj objlink regress rerelease tags update
|
||||
obj objlink regress rerelease tags update
|
||||
|
||||
BITGTS= files includes
|
||||
BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
|
||||
|
@ -27,8 +27,6 @@
|
||||
# buildworld - rebuild *everything*, including glue to help do upgrades
|
||||
# installworld- install everything built by "buildworld"
|
||||
# update - convenient way to update your source tree (eg: sup/cvs)
|
||||
# most - build user commands, no libraries or include files
|
||||
# installmost - install user commands, no libraries or include files
|
||||
#
|
||||
# Standard targets (not defined here) are documented in the makefiles in
|
||||
# /usr/share/mk. These include:
|
||||
@ -595,33 +593,6 @@ update:
|
||||
cd ${.CURDIR}; ${CVS} -R -q update -A -P -d
|
||||
.endif
|
||||
|
||||
#
|
||||
# most
|
||||
#
|
||||
# Build most of the user binaries on the existing system libs and includes.
|
||||
#
|
||||
most:
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo ">>> Building programs only"
|
||||
@echo "--------------------------------------------------------------"
|
||||
.for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin
|
||||
cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all
|
||||
.endfor
|
||||
|
||||
#
|
||||
# installmost
|
||||
#
|
||||
# Install the binaries built by the 'most' target. This does not include
|
||||
# libraries or include files.
|
||||
#
|
||||
installmost:
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo ">>> Installing programs only"
|
||||
@echo "--------------------------------------------------------------"
|
||||
.for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin
|
||||
cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install
|
||||
.endfor
|
||||
|
||||
#
|
||||
# ------------------------------------------------------------------------
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user