Makefile revision 132588
12061Sjkh#
250479Speter# $FreeBSD: head/Makefile 132588 2004-07-23 21:21:34Z kensmith $
32061Sjkh#
438666Sjb# The user-driven targets are:
532427Sjb#
6111131Sru# universe            - *Really* build *everything* (buildworld and
7111131Sru#                       all kernels on all architectures).
838666Sjb# buildworld          - Rebuild *everything*, including glue to help do
938666Sjb#                       upgrades.
1038666Sjb# installworld        - Install everything built by "buildworld".
1138666Sjb# world               - buildworld + installworld.
1264049Salex# buildkernel         - Rebuild the kernel and the kernel-modules.
1364049Salex# installkernel       - Install the kernel and the kernel-modules.
14116679Ssimokawa# installkernel.debug
1566071Smarkm# reinstallkernel     - Reinstall the kernel and the kernel-modules.
16116679Ssimokawa# reinstallkernel.debug
1773504Sobrien# kernel              - buildkernel + installkernel.
1838666Sjb# update              - Convenient way to update your source tree (cvs).
1932427Sjb#
2038666Sjb# This makefile is simple by design. The FreeBSD make automatically reads
21108451Sschweikh# the /usr/share/mk/sys.mk unless the -m argument is specified on the
2238666Sjb# command line. By keeping this makefile simple, it doesn't matter too
2338666Sjb# much how different the installed mk files are from those in the source
2438666Sjb# tree. This makefile executes a child make process, forcing it to use
2538666Sjb# the mk files from the source tree which are supposed to DTRT.
2617308Speter#
2791606Skeramida# The user-driven targets (as listed above) are implemented in Makefile.inc1.
2819175Sbde#
2996205Sjwd# If you want to build your system from source be sure that /usr/obj has
3096205Sjwd# at least 400MB of diskspace available.
3138042Sbde#
3296205Sjwd# For individuals wanting to build from the sources currently on their
3396205Sjwd# system, the simple instructions are:
3438042Sbde#
3596205Sjwd# 1.  `cd /usr/src'  (or to the directory containing your source tree).
3696205Sjwd# 2.  `make world'
3717308Speter#
3896205Sjwd# For individuals wanting to upgrade their sources (even if only a
3996205Sjwd# delta of a few days):
4017308Speter#
4196205Sjwd# 1.  `cd /usr/src'       (or to the directory containing your source tree).
4296205Sjwd# 2.  `make buildworld'
4396205Sjwd# 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
4496205Sjwd# 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
4596205Sjwd# 5.  `reboot'        (in single user mode: boot -s from the loader prompt).
4696205Sjwd# 6.  `mergemaster -p'
4796205Sjwd# 7.  `make installworld'
4896205Sjwd# 8.  `mergemaster'
4996205Sjwd# 9.  `reboot'
5096205Sjwd#
5196205Sjwd# See src/UPDATING `COMMON ITEMS' for more complete information.
5296205Sjwd#
5398775Sdillon# If TARGET_ARCH=arch (e.g. ia64, sparc64, ...) is specified you can
5498723Sdillon# cross build world for other architectures using the buildworld target,
5598723Sdillon# and once the world is built you can cross build a kernel using the
5698723Sdillon# buildkernel target.
5798723Sdillon#
5838666Sjb# Define the user-driven targets. These are listed here in alphabetical
5938666Sjb# order, but that's not important.
6017308Speter#
61123311Speter# Targets that begin with underscore are internal targets intended for
62123311Speter# developer convenience only.  They are intentionally not documented and
63123311Speter# completely subject to change without notice.
64123311Speter#
6595509SruTGTS=	all all-man buildkernel buildworld checkdpadd clean \
6695793Sru	cleandepend cleandir depend distribute distributeworld everything \
67116679Ssimokawa	hierarchy install installcheck installkernel installkernel.debug\
68120760Sru	reinstallkernel reinstallkernel.debug installworld \
69128189Sdes	kernel-toolchain libraries lint maninstall \
70127360Sru	obj objlink regress rerelease tags toolchain update \
71123311Speter	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
72123311Speter	_build-tools _cross-tools _includes _libraries _depend
732061Sjkh
7497769SruBITGTS=	files includes
7597252SruBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
76119579SruTGTS+=	${BITGTS}
7797252Sru
7895730Sru.ORDER: buildworld installworld
7995793Sru.ORDER: buildworld distributeworld
80111617Sru.ORDER: buildworld buildkernel
8195730Sru.ORDER: buildkernel installkernel
82116679Ssimokawa.ORDER: buildkernel installkernel.debug
8395730Sru.ORDER: buildkernel reinstallkernel
84116679Ssimokawa.ORDER: buildkernel reinstallkernel.debug
8595730Sru
86110035SruPATH=	/sbin:/bin:/usr/sbin:/usr/bin
87107516SruMAKEOBJDIRPREFIX?=	/usr/obj
88110035SruMAKEPATH=	${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
89117234SruBINMAKE= \
90110035Sru	`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
91117229Sru	-m ${.CURDIR}/share/mk
92117234Sru_MAKE=	PATH=${PATH} ${BINMAKE} -f Makefile.inc1
9354324Smarcel
9417308Speter#
95119519Smarcel# Make sure we have an up-to-date make(1). Only world and buildworld
96119519Smarcel# should do this as those are the initial targets used for upgrades.
97119519Smarcel# The user can define ALWAYS_CHECK_MAKE to have this check performed
98119519Smarcel# for all targets.
99119519Smarcel#
100119519Smarcel.if defined(ALWAYS_CHECK_MAKE)
101119579Sru${TGTS}: upgrade_checks
102119519Smarcel.else
103119519Smarcelbuildworld: upgrade_checks
104119519Smarcel.endif
105119519Smarcel
106119519Smarcel#
107126031Sgad# This 'cleanworld' target is not included in TGTS, because it is not a
108126024Sgad# recursive target.  All of the work for it is done right here.   It is
109126024Sgad# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
110126024Sgad# created by bsd.obj.mk, except that we don't want to .include that file
111126024Sgad# in this makefile.  
112126024Sgad#
113126024Sgad# In the following, the first 'rm' in a series will usually remove all
114126024Sgad# files and directories.  If it does not, then there are probably some
115126024Sgad# files with chflags set, so this unsets them and tries the 'rm' a
116126024Sgad# second time.  There are situations where this target will be cleaning
117126024Sgad# some directories via more than one method, but that duplication is
118126024Sgad# needed to correctly handle all the possible situations.
119126024Sgad#
120126024SgadBW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
121126031Sgadcleanworld:
122126024Sgad.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
123126024Sgad.if exists(${BW_CANONICALOBJDIR}/)
124126024Sgad	-rm -rf ${BW_CANONICALOBJDIR}/*
125126024Sgad	chflags -R 0 ${BW_CANONICALOBJDIR}
126126024Sgad	rm -rf ${BW_CANONICALOBJDIR}/*
127126024Sgad.endif
128126024Sgad	#   To be safe in this case, fall back to a 'make cleandir'
129126024Sgad	@cd ${.CURDIR}; ${_MAKE} cleandir
130126024Sgad.else
131126024Sgad	-rm -rf ${.OBJDIR}/*
132126024Sgad	chflags -R 0 ${.OBJDIR}
133126024Sgad	rm -rf ${.OBJDIR}/*
134126024Sgad.endif
135125885Sgad
136125885Sgad#
13738666Sjb# Handle the user-driven targets, using the source relative mk files.
13817308Speter#
139119519Smarcel
140119579Sru${TGTS}:
14138666Sjb	@cd ${.CURDIR}; \
142110035Sru		${_MAKE} ${.TARGET}
1432302Spaul
14439206Sjkh# Set a reasonable default
14539206Sjkh.MAIN:	all
14639206Sjkh
147132358Smarkm.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
148126485Sru.if make(world)
14973349SruSTARTTIME!= LC_ALL=C date
150126485Sru.endif
15117308Speter#
15254324Smarcel# world
15354324Smarcel#
154132234Smarcel# Attempt to rebuild and reinstall everything. This target is not to be
155132234Smarcel# used for upgrading an existing FreeBSD system, because the kernel is
156132234Smarcel# not included. One can argue that this target doesn't build everything
157132234Smarcel# then.
15854324Smarcel#
15954324Smarcelworld: upgrade_checks
16054324Smarcel	@echo "--------------------------------------------------------------"
161118531Sru	@echo ">>> make world started on ${STARTTIME}"
16254324Smarcel	@echo "--------------------------------------------------------------"
16354324Smarcel.if target(pre-world)
16454324Smarcel	@echo
16554324Smarcel	@echo "--------------------------------------------------------------"
16654324Smarcel	@echo ">>> Making 'pre-world' target"
16754324Smarcel	@echo "--------------------------------------------------------------"
168110035Sru	@cd ${.CURDIR}; ${_MAKE} pre-world
16954324Smarcel.endif
170110035Sru	@cd ${.CURDIR}; ${_MAKE} buildworld
171110035Sru	@cd ${.CURDIR}; ${_MAKE} -B installworld
17254324Smarcel.if target(post-world)
17354324Smarcel	@echo
17454324Smarcel	@echo "--------------------------------------------------------------"
17554324Smarcel	@echo ">>> Making 'post-world' target"
17654324Smarcel	@echo "--------------------------------------------------------------"
177110035Sru	@cd ${.CURDIR}; ${_MAKE} post-world
17854324Smarcel.endif
17954324Smarcel	@echo
18054324Smarcel	@echo "--------------------------------------------------------------"
181118531Sru	@echo ">>> make world completed on `LC_ALL=C date`"
182118531Sru	@echo "                   (started ${STARTTIME})"
18354324Smarcel	@echo "--------------------------------------------------------------"
184132234Smarcel.else
185132234Smarcelworld:
186132234Smarcel	@echo "WARNING: make world will overwrite your existing FreeBSD"
187132234Smarcel	@echo "installation without also building and installing a new"
188132234Smarcel	@echo "kernel.  This can be dangerous.  Please read the handbook,"
189132588Skensmith	@echo "'Rebuilding world', for how to upgrade your system."
190132358Smarkm	@echo "Define DESTDIR to where you want to install FreeBSD,"
191132234Smarcel	@echo "including /, to override this warning and proceed as usual."
192132358Smarkm	@echo "You may get the historical 'make world' behavior by defining"
193132358Smarkm	@echo "HISTORICAL_MAKE_WORLD.  You should understand the implications"
194132358Smarkm	@echo "before doing this."
195132358Smarkm	@echo ""
196132234Smarcel	@echo "Bailing out now..."
197132234Smarcel	@false
198132234Smarcel.endif
19954324Smarcel
20054324Smarcel#
20195730Sru# kernel
20295730Sru#
20395730Sru# Short hand for `make buildkernel installkernel'
20495730Sru#
20595730Srukernel: buildkernel installkernel
20695730Sru
20795730Sru#
20838666Sjb# Perform a few tests to determine if the installed tools are adequate
209107374Sru# for building the world.
21017308Speter#
21155678Smarcelupgrade_checks:
212110035Sru	@if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
213117793Sru	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
214110035Sru	then \
215110035Sru	    (cd ${.CURDIR} && make make); \
216110035Sru	fi
2172061Sjkh
21817308Speter#
219107516Sru# Upgrade make(1) to the current version using the installed
220107374Sru# headers, libraries and tools.
22155678Smarcel#
222107516SruMMAKEENV=	MAKEOBJDIRPREFIX=${MAKEPATH} \
223107516Sru		DESTDIR= \
224107516Sru		INSTALL="sh ${.CURDIR}/tools/install.sh"
225107516SruMMAKE=		${MMAKEENV} make \
226107516Sru		-D_UPGRADING \
227107516Sru		-DNOMAN -DNOSHARED \
228107516Sru		-DNO_CPU_CFLAGS -DNO_WERROR
229107516Sru
230122204Skrismake: .PHONY
23155678Smarcel	@echo
23255678Smarcel	@echo "--------------------------------------------------------------"
233116696Sru	@echo ">>> Building an up-to-date make(1)"
23455678Smarcel	@echo "--------------------------------------------------------------"
23555678Smarcel	@cd ${.CURDIR}/usr.bin/make; \
236107516Sru		${MMAKE} obj && \
237107516Sru		${MMAKE} depend && \
238107516Sru		${MMAKE} all && \
239107516Sru		${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
24055678Smarcel
24155678Smarcel#
242111131Sru# universe
243111131Sru#
244111131Sru# Attempt to rebuild *everything* for all supported architectures,
245111131Sru# with reasonable chance of success, regardless of how old your
246111131Sru# existing system is.
247111131Sru#
248111131Srui386_mach=	pc98
249103985Sphkuniverse:
250103985Sphk	@echo "--------------------------------------------------------------"
251103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
252103985Sphk	@echo "--------------------------------------------------------------"
253126403Sjohan.for arch in i386 sparc64 alpha ia64 amd64
254111131Sru.for mach in ${arch} ${${arch}_mach}
255111131Sru	@echo ">> ${mach} started on `LC_ALL=C date`"
256131876Sphk	-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
257111131Sru	    TARGET_ARCH=${arch} TARGET=${mach} \
258111131Sru	    __MAKE_CONF=/dev/null \
259111131Sru	    > _.${mach}.buildworld 2>&1
260111131Sru	@echo ">> ${mach} buildworld completed on `LC_ALL=C date`"
261111131Sru.if exists(${.CURDIR}/sys/${mach}/conf/NOTES)
262111131Sru	-cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
263111133Sru	    > ${.CURDIR}/_.${mach}.makeLINT 2>&1
264103985Sphk.endif
265131876Sphk	cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernels TARGET_ARCH=${arch} TARGET=${mach}
266111131Sru	@echo ">> ${mach} completed on `LC_ALL=C date`"
267103985Sphk.endfor
268111131Sru.endfor
269103985Sphk	@echo "--------------------------------------------------------------"
270118531Sru	@echo ">>> make universe completed on `LC_ALL=C date`"
271118531Sru	@echo "                      (started ${STARTTIME})"
272103985Sphk	@echo "--------------------------------------------------------------"
273103985Sphk
274126485Sru.if make(buildkernels)
275111131SruKERNCONFS!=	cd ${.CURDIR}/sys/${TARGET}/conf && \
276111131Sru		find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES
277126485Sru.endif
278103985Sphk
279103985Sphkbuildkernels:
280111131Sru.for kernel in ${KERNCONFS}
281131876Sphk	-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernel \
282111131Sru	    KERNCONF=${kernel} \
283111131Sru	    __MAKE_CONF=/dev/null \
284111131Sru	    > _.${TARGET}.${kernel} 2>&1
285103985Sphk.endfor
286