Makefile revision 138515
12061Sjkh#
250479Speter# $FreeBSD: head/Makefile 138515 2004-12-07 14:41:16Z harti $
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 \
72137288Speter	_build-tools _cross-tools _includes _libraries _depend \
73137288Speter	build32 install32
742061Sjkh
7597769SruBITGTS=	files includes
7697252SruBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
77119579SruTGTS+=	${BITGTS}
7897252Sru
7995730Sru.ORDER: buildworld installworld
8095793Sru.ORDER: buildworld distributeworld
81111617Sru.ORDER: buildworld buildkernel
8295730Sru.ORDER: buildkernel installkernel
83116679Ssimokawa.ORDER: buildkernel installkernel.debug
8495730Sru.ORDER: buildkernel reinstallkernel
85116679Ssimokawa.ORDER: buildkernel reinstallkernel.debug
8695730Sru
87110035SruPATH=	/sbin:/bin:/usr/sbin:/usr/bin
88107516SruMAKEOBJDIRPREFIX?=	/usr/obj
89136671Sru_MAKEOBJDIRPREFIX!= /usr/bin/env -i \
90136671Sru		PATH=${PATH} MAKEFLAGS="${.MAKEFLAGS}" ${MAKE} \
91133942Sru		-f /dev/null -V MAKEOBJDIRPREFIX dummy
92133942Sru.if !empty(_MAKEOBJDIRPREFIX)
93133942Sru.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
94133942Sru	(in /etc/make.conf) or command-line variable.
95133942Sru.endif
96110035SruMAKEPATH=	${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
97117234SruBINMAKE= \
98110035Sru	`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
99117229Sru	-m ${.CURDIR}/share/mk
100117234Sru_MAKE=	PATH=${PATH} ${BINMAKE} -f Makefile.inc1
10154324Smarcel
10217308Speter#
103119519Smarcel# Make sure we have an up-to-date make(1). Only world and buildworld
104119519Smarcel# should do this as those are the initial targets used for upgrades.
105119519Smarcel# The user can define ALWAYS_CHECK_MAKE to have this check performed
106119519Smarcel# for all targets.
107119519Smarcel#
108119519Smarcel.if defined(ALWAYS_CHECK_MAKE)
109119579Sru${TGTS}: upgrade_checks
110119519Smarcel.else
111119519Smarcelbuildworld: upgrade_checks
112119519Smarcel.endif
113119519Smarcel
114119519Smarcel#
115126031Sgad# This 'cleanworld' target is not included in TGTS, because it is not a
116126024Sgad# recursive target.  All of the work for it is done right here.   It is
117126024Sgad# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
118126024Sgad# created by bsd.obj.mk, except that we don't want to .include that file
119126024Sgad# in this makefile.  
120126024Sgad#
121126024Sgad# In the following, the first 'rm' in a series will usually remove all
122126024Sgad# files and directories.  If it does not, then there are probably some
123126024Sgad# files with chflags set, so this unsets them and tries the 'rm' a
124126024Sgad# second time.  There are situations where this target will be cleaning
125126024Sgad# some directories via more than one method, but that duplication is
126126024Sgad# needed to correctly handle all the possible situations.
127126024Sgad#
128126024SgadBW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
129126031Sgadcleanworld:
130126024Sgad.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
131126024Sgad.if exists(${BW_CANONICALOBJDIR}/)
132126024Sgad	-rm -rf ${BW_CANONICALOBJDIR}/*
133126024Sgad	chflags -R 0 ${BW_CANONICALOBJDIR}
134126024Sgad	rm -rf ${BW_CANONICALOBJDIR}/*
135126024Sgad.endif
136126024Sgad	#   To be safe in this case, fall back to a 'make cleandir'
137133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
138126024Sgad.else
139126024Sgad	-rm -rf ${.OBJDIR}/*
140126024Sgad	chflags -R 0 ${.OBJDIR}
141126024Sgad	rm -rf ${.OBJDIR}/*
142126024Sgad.endif
143125885Sgad
144125885Sgad#
14538666Sjb# Handle the user-driven targets, using the source relative mk files.
14617308Speter#
147119519Smarcel
148119579Sru${TGTS}:
149133376Sharti	${_+_}@cd ${.CURDIR}; \
150110035Sru		${_MAKE} ${.TARGET}
1512302Spaul
15239206Sjkh# Set a reasonable default
15339206Sjkh.MAIN:	all
15439206Sjkh
155133945SruSTARTTIME!= LC_ALL=C date
156133945Sru
157132358Smarkm.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
15817308Speter#
15954324Smarcel# world
16054324Smarcel#
161132234Smarcel# Attempt to rebuild and reinstall everything. This target is not to be
162132234Smarcel# used for upgrading an existing FreeBSD system, because the kernel is
163132234Smarcel# not included. One can argue that this target doesn't build everything
164132234Smarcel# then.
16554324Smarcel#
16654324Smarcelworld: upgrade_checks
16754324Smarcel	@echo "--------------------------------------------------------------"
168118531Sru	@echo ">>> make world started on ${STARTTIME}"
16954324Smarcel	@echo "--------------------------------------------------------------"
17054324Smarcel.if target(pre-world)
17154324Smarcel	@echo
17254324Smarcel	@echo "--------------------------------------------------------------"
17354324Smarcel	@echo ">>> Making 'pre-world' target"
17454324Smarcel	@echo "--------------------------------------------------------------"
175133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
17654324Smarcel.endif
177133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
178133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
17954324Smarcel.if target(post-world)
18054324Smarcel	@echo
18154324Smarcel	@echo "--------------------------------------------------------------"
18254324Smarcel	@echo ">>> Making 'post-world' target"
18354324Smarcel	@echo "--------------------------------------------------------------"
184133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
18554324Smarcel.endif
18654324Smarcel	@echo
18754324Smarcel	@echo "--------------------------------------------------------------"
188118531Sru	@echo ">>> make world completed on `LC_ALL=C date`"
189118531Sru	@echo "                   (started ${STARTTIME})"
19054324Smarcel	@echo "--------------------------------------------------------------"
191132234Smarcel.else
192132234Smarcelworld:
193132234Smarcel	@echo "WARNING: make world will overwrite your existing FreeBSD"
194132234Smarcel	@echo "installation without also building and installing a new"
195132234Smarcel	@echo "kernel.  This can be dangerous.  Please read the handbook,"
196132588Skensmith	@echo "'Rebuilding world', for how to upgrade your system."
197132358Smarkm	@echo "Define DESTDIR to where you want to install FreeBSD,"
198132234Smarcel	@echo "including /, to override this warning and proceed as usual."
199132358Smarkm	@echo "You may get the historical 'make world' behavior by defining"
200132358Smarkm	@echo "HISTORICAL_MAKE_WORLD.  You should understand the implications"
201132358Smarkm	@echo "before doing this."
202132358Smarkm	@echo ""
203132234Smarcel	@echo "Bailing out now..."
204132234Smarcel	@false
205132234Smarcel.endif
20654324Smarcel
20754324Smarcel#
20895730Sru# kernel
20995730Sru#
21095730Sru# Short hand for `make buildkernel installkernel'
21195730Sru#
21295730Srukernel: buildkernel installkernel
21395730Sru
21495730Sru#
21538666Sjb# Perform a few tests to determine if the installed tools are adequate
216107374Sru# for building the world.
21717308Speter#
21855678Smarcelupgrade_checks:
219110035Sru	@if ! (cd ${.CURDIR}/tools/regression/usr.bin/make && \
220138515Sharti	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
221117793Sru	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
222110035Sru	then \
223110035Sru	    (cd ${.CURDIR} && make make); \
224110035Sru	fi
2252061Sjkh
22617308Speter#
227107516Sru# Upgrade make(1) to the current version using the installed
228107374Sru# headers, libraries and tools.
22955678Smarcel#
230107516SruMMAKEENV=	MAKEOBJDIRPREFIX=${MAKEPATH} \
231107516Sru		DESTDIR= \
232107516Sru		INSTALL="sh ${.CURDIR}/tools/install.sh"
233107516SruMMAKE=		${MMAKEENV} make \
234107516Sru		-D_UPGRADING \
235107516Sru		-DNOMAN -DNOSHARED \
236107516Sru		-DNO_CPU_CFLAGS -DNO_WERROR
237107516Sru
238122204Skrismake: .PHONY
23955678Smarcel	@echo
24055678Smarcel	@echo "--------------------------------------------------------------"
241116696Sru	@echo ">>> Building an up-to-date make(1)"
24255678Smarcel	@echo "--------------------------------------------------------------"
243133376Sharti	${_+_}@cd ${.CURDIR}/usr.bin/make; \
244107516Sru		${MMAKE} obj && \
245107516Sru		${MMAKE} depend && \
246107516Sru		${MMAKE} all && \
247107516Sru		${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
24855678Smarcel
24955678Smarcel#
250111131Sru# universe
251111131Sru#
252111131Sru# Attempt to rebuild *everything* for all supported architectures,
253133945Sru# with a reasonable chance of success, regardless of how old your
254111131Sru# existing system is.
255111131Sru#
256133945Sruuniverse: universe_prologue
257133945Sruuniverse_prologue:
258103985Sphk	@echo "--------------------------------------------------------------"
259103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
260103985Sphk	@echo "--------------------------------------------------------------"
261133945Sru.for target in i386 i386:pc98 sparc64 alpha ia64 amd64
262133945Sru.for arch in ${target:C/:.*$//}
263133945Sru.for mach in ${target:C/^.*://}
264133945Sruuniverse: universe_${mach}
265133945Sru.ORDER: universe_prologue universe_${mach} universe_epilogue
266133945Sruuniverse_${mach}:
267111131Sru	@echo ">> ${mach} started on `LC_ALL=C date`"
268131876Sphk	-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
269111131Sru	    TARGET_ARCH=${arch} TARGET=${mach} \
270111131Sru	    __MAKE_CONF=/dev/null \
271111131Sru	    > _.${mach}.buildworld 2>&1
272111131Sru	@echo ">> ${mach} buildworld completed on `LC_ALL=C date`"
273111131Sru.if exists(${.CURDIR}/sys/${mach}/conf/NOTES)
274111131Sru	-cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
275111133Sru	    > ${.CURDIR}/_.${mach}.makeLINT 2>&1
276103985Sphk.endif
277133945Sru	cd ${.CURDIR} && ${MAKE} buildkernels TARGET_ARCH=${arch} TARGET=${mach}
278111131Sru	@echo ">> ${mach} completed on `LC_ALL=C date`"
279103985Sphk.endfor
280111131Sru.endfor
281133945Sru.endfor
282133945Sruuniverse: universe_epilogue
283133945Sruuniverse_epilogue:
284103985Sphk	@echo "--------------------------------------------------------------"
285118531Sru	@echo ">>> make universe completed on `LC_ALL=C date`"
286118531Sru	@echo "                      (started ${STARTTIME})"
287103985Sphk	@echo "--------------------------------------------------------------"
288103985Sphk
289126485Sru.if make(buildkernels)
290111131SruKERNCONFS!=	cd ${.CURDIR}/sys/${TARGET}/conf && \
291111131Sru		find [A-Z]*[A-Z] -type f -maxdepth 0 ! -name NOTES
292103985Sphkbuildkernels:
293111131Sru.for kernel in ${KERNCONFS}
294131876Sphk	-cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernel \
295111131Sru	    KERNCONF=${kernel} \
296111131Sru	    __MAKE_CONF=/dev/null \
297111131Sru	    > _.${TARGET}.${kernel} 2>&1
298103985Sphk.endfor
299133945Sru.endif
300