Deleted Added
sdiff udiff text old ( 158687 ) new ( 158962 )
full compact
1#
2# $FreeBSD: head/Makefile.inc1 158687 2006-05-17 09:33:15Z phk $
3#
4# Make command line options:
5# -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
6# -DNO_CLEAN do not clean at all
7# -DNO_SHARE do not go into share subdir
8# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
9# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
10# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
11# -DNO_PORTSUPDATE do not update ports in ${MAKE} update
12# -DNO_DOCUPDATE do not update doc in ${MAKE} update
13# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
14# TARGET_ARCH="arch" to crossbuild world to a different arch
15
16#
17# The intended user-driven targets are:
18# buildworld - rebuild *everything*, including glue to help do upgrades
19# installworld- install everything built by "buildworld"
20# update - convenient way to update your source tree (eg: cvsup/cvs)
21#
22# Standard targets (not defined here) are documented in the makefiles in
23# /usr/share/mk. These include:
24# obj depend all install clean cleandepend cleanobj
25
26.include <bsd.own.mk>
27

--- 678 unchanged lines hidden (view full) ---

706 @echo "--------------------------------------------------------------"
707 @echo ">>> Installing kernel"
708 @echo "--------------------------------------------------------------"
709 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
710 ${CROSSENV} PATH=${TMPPATH} \
711 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
712
713#
714# update
715#
716# Update the source tree, by running cvsup and/or running cvs to update to the
717# latest copy.
718#
719update:
720.if defined(SUP_UPDATE)
721 @echo "--------------------------------------------------------------"

--- 460 unchanged lines hidden ---