1#
2# $FreeBSD: releng/10.3/Makefile 295679 2016-02-16 22:37:24Z bapt $
3#
4# The user-driven targets are:
5#
6# universe            - *Really* build *everything* (buildworld and
7#                       all kernels on all architectures).
8# tinderbox           - Same as universe, but presents a list of failed build
9#                       targets and exits with an error if there were any.
10# buildworld          - Rebuild *everything*, including glue to help do
11#                       upgrades.
12# installworld        - Install everything built by "buildworld".
13# world               - buildworld + installworld, no kernel.
14# buildkernel         - Rebuild the kernel and the kernel-modules.
15# installkernel       - Install the kernel and the kernel-modules.
16# installkernel.debug
17# reinstallkernel     - Reinstall the kernel and the kernel-modules.
18# reinstallkernel.debug
19# kernel              - buildkernel + installkernel.
20# kernel-toolchain    - Builds the subset of world necessary to build a kernel
21# kernel-toolchains   - Build kernel-toolchain for all universe targets.
22# doxygen             - Build API documentation of the kernel, needs doxygen.
23# update              - Convenient way to update your source tree(s).
24# check-old           - List obsolete directories/files/libraries.
25# check-old-dirs      - List obsolete directories.
26# check-old-files     - List obsolete files.
27# check-old-libs      - List obsolete libraries.
28# delete-old          - Delete obsolete directories/files.
29# delete-old-dirs     - Delete obsolete directories.
30# delete-old-files    - Delete obsolete files.
31# delete-old-libs     - Delete obsolete libraries.
32# targets             - Print a list of supported TARGET/TARGET_ARCH pairs
33#                       for world and kernel targets.
34# toolchains          - Build a toolchain for all world and kernel targets.
35# xdev                - xdev-build + xdev-install for the architecture
36#                       specified with XDEV and XDEV_ARCH.
37# xdev-build          - Build cross-development tools.
38# xdev-install        - Install cross-development tools.
39# native-xtools       - Create host binaries that produce target objects
40#                       for use in qemu user-mode jails.
41# 
42# "quick" way to test all kernel builds:
43# 	_jflag=`sysctl -n hw.ncpu`
44# 	_jflag=$(($_jflag * 2))
45# 	[ $_jflag -gt 12 ] && _jflag=12
46# 	make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
47#
48# This makefile is simple by design. The FreeBSD make automatically reads
49# the /usr/share/mk/sys.mk unless the -m argument is specified on the
50# command line. By keeping this makefile simple, it doesn't matter too
51# much how different the installed mk files are from those in the source
52# tree. This makefile executes a child make process, forcing it to use
53# the mk files from the source tree which are supposed to DTRT.
54#
55# Most of the user-driven targets (as listed above) are implemented in
56# Makefile.inc1.  The exceptions are universe, tinderbox and targets.
57#
58# If you want to build your system from source be sure that /usr/obj has
59# at least 1GB of diskspace available.  A complete 'universe' build requires
60# about 15GB of space.
61#
62# For individuals wanting to build from the sources currently on their
63# system, the simple instructions are:
64#
65# 1.  `cd /usr/src'  (or to the directory containing your source tree).
66# 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
67# 3.  `make world'
68#
69# For individuals wanting to upgrade their sources (even if only a
70# delta of a few days):
71#
72#  1.  `cd /usr/src'       (or to the directory containing your source tree).
73#  2.  `make buildworld'
74#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
75#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
76#       [steps 3. & 4. can be combined by using the "kernel" target]
77#  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
78#  6.  `mergemaster -p'
79#  7.  `make installworld'
80#  8.  `mergemaster'		(you may wish to use -i, along with -U or -F).
81#  9.  `make delete-old'
82# 10.  `reboot'
83# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
84#
85# See src/UPDATING `COMMON ITEMS' for more complete information.
86#
87# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
88# cross build world for other machine types using the buildworld target,
89# and once the world is built you can cross build a kernel using the
90# buildkernel target.
91#
92# Define the user-driven targets. These are listed here in alphabetical
93# order, but that's not important.
94#
95# Targets that begin with underscore are internal targets intended for
96# developer convenience only.  They are intentionally not documented and
97# completely subject to change without notice.
98#
99# For more information, see the build(7) manual page.
100#
101TGTS=	all all-man buildenv buildenvvars buildkernel buildworld \
102	check-old check-old-dirs check-old-files check-old-libs \
103	checkdpadd clean cleandepend cleandir \
104	delete-old delete-old-dirs delete-old-files delete-old-libs \
105	depend distribute distributekernel distributekernel.debug \
106	distributeworld distrib-dirs distribution doxygen \
107	everything hier hierarchy install installcheck installkernel \
108	installkernel.debug packagekernel packageworld \
109	reinstallkernel reinstallkernel.debug \
110	installworld kernel-toolchain libraries lint maninstall \
111	obj objlink regress rerelease showconfig tags toolchain update \
112	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
113	_build-tools _cross-tools _includes _libraries _depend \
114	build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
115	native-xtools \
116
117TGTS+=	${SUBDIR_TARGETS}
118
119BITGTS=	files includes
120BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
121TGTS+=	${BITGTS}
122
123.ORDER: buildworld installworld
124.ORDER: buildworld distributeworld
125.ORDER: buildworld buildkernel
126.ORDER: buildkernel installkernel
127.ORDER: buildkernel installkernel.debug
128.ORDER: buildkernel reinstallkernel
129.ORDER: buildkernel reinstallkernel.debug
130
131PATH=	/sbin:/bin:/usr/sbin:/usr/bin
132MAKEOBJDIRPREFIX?=	/usr/obj
133_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
134    ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
135    -f /dev/null -V MAKEOBJDIRPREFIX dummy
136.if !empty(_MAKEOBJDIRPREFIX)
137.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
138	(in make.conf(5)) or command-line variable.
139.endif
140
141# We often need to use the tree's version of make to build it.
142# Choices add to complexity though.
143# We cannot blindly use a make which may not be the one we want
144# so be exlicit - until all choice is removed.
145.if !defined(WITHOUT_BMAKE)
146WANT_MAKE=	bmake
147.else
148WANT_MAKE=	fmake
149.endif
150MYMAKE=		${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
151.if defined(.PARSEDIR)
152HAVE_MAKE=	bmake
153.else
154HAVE_MAKE=	fmake
155.endif
156.if exists(${MYMAKE})
157SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
158.elif ${WANT_MAKE} != ${HAVE_MAKE} || ${WANT_MAKE} != "bmake"
159# It may not exist yet but we may cause it to.
160# In the case of fmake, upgrade_checks may cause a newer version to be built.
161SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
162	-m ${.CURDIR}/share/mk
163.else
164SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
165.endif
166
167_MAKE=	PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
168
169# Guess machine architecture from machine type, and vice versa.
170.if !defined(TARGET_ARCH) && defined(TARGET)
171_TARGET_ARCH=	${TARGET:S/pc98/i386/}
172.elif !defined(TARGET) && defined(TARGET_ARCH) && \
173    ${TARGET_ARCH} != ${MACHINE_ARCH}
174_TARGET=		${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/}
175.endif
176# Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1
177.if defined(TARGET) && defined(TARGET_ARCH) && \
178    ${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb}
179_TARGET_ARCH=		${TARGET_ARCH:C/eb$//}
180.warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}"
181.endif
182.if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN)
183.warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS.  Big-endian is not the default."
184.endif
185# arm with TARGET_BIG_ENDIAN -> armeb
186.if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
187.warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated.  use armeb"
188_TARGET_ARCH=armeb
189.endif
190.if defined(TARGET) && !defined(_TARGET)
191_TARGET=${TARGET}
192.endif
193.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
194_TARGET_ARCH=${TARGET_ARCH}
195.endif
196# Otherwise, default to current machine type and architecture.
197_TARGET?=	${MACHINE}
198_TARGET_ARCH?=	${MACHINE_ARCH}
199
200#
201# Make sure we have an up-to-date make(1). Only world and buildworld
202# should do this as those are the initial targets used for upgrades.
203# The user can define ALWAYS_CHECK_MAKE to have this check performed
204# for all targets.
205#
206.if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
207${TGTS}: upgrade_checks
208.else
209buildworld: upgrade_checks
210.endif
211
212#
213# This 'cleanworld' target is not included in TGTS, because it is not a
214# recursive target.  All of the work for it is done right here.   It is
215# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
216# created by bsd.obj.mk, except that we don't want to .include that file
217# in this makefile.  
218#
219# In the following, the first 'rm' in a series will usually remove all
220# files and directories.  If it does not, then there are probably some
221# files with file flags set, so this unsets them and tries the 'rm' a
222# second time.  There are situations where this target will be cleaning
223# some directories via more than one method, but that duplication is
224# needed to correctly handle all the possible situations.  Removing all
225# files without file flags set in the first 'rm' instance saves time,
226# because 'chflags' will need to operate on fewer files afterwards.
227#
228BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
229cleanworld:
230.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
231.if exists(${BW_CANONICALOBJDIR}/)
232	-rm -rf ${BW_CANONICALOBJDIR}/*
233	-chflags -R 0 ${BW_CANONICALOBJDIR}
234	rm -rf ${BW_CANONICALOBJDIR}/*
235.endif
236	#   To be safe in this case, fall back to a 'make cleandir'
237	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
238.else
239	-rm -rf ${.OBJDIR}/*
240	-chflags -R 0 ${.OBJDIR}
241	rm -rf ${.OBJDIR}/*
242.endif
243
244#
245# Handle the user-driven targets, using the source relative mk files.
246#
247
248.if !(!empty(.MAKEFLAGS:M-n) && ${.MAKEFLAGS:M-n} == "-n")
249# skip this for -n to avoid changing previous behavior of 
250# 'make -n buildworld' etc.  Using -n -n will run it.
251${TGTS}: .MAKE
252tinderbox toolchains kernel-toolchains: .MAKE
253.endif
254
255${TGTS}: .PHONY
256	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
257
258# The historic default "all" target creates files which may cause stale
259# or (in the cross build case) unlinkable results. Fail with an error
260# when no target is given. The users can explicitly specify "all"
261# if they want the historic behavior.
262.MAIN:	_guard
263
264_guard:
265	@echo
266	@echo "Explicit target required (use \"all\" for historic behavior)"
267	@echo
268	@false
269
270STARTTIME!= LC_ALL=C date
271CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
272.if !empty(CHECK_TIME)
273.error check your date/time: ${STARTTIME}
274.endif
275
276.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
277#
278# world
279#
280# Attempt to rebuild and reinstall everything. This target is not to be
281# used for upgrading an existing FreeBSD system, because the kernel is
282# not included. One can argue that this target doesn't build everything
283# then.
284#
285world: upgrade_checks
286	@echo "--------------------------------------------------------------"
287	@echo ">>> make world started on ${STARTTIME}"
288	@echo "--------------------------------------------------------------"
289.if target(pre-world)
290	@echo
291	@echo "--------------------------------------------------------------"
292	@echo ">>> Making 'pre-world' target"
293	@echo "--------------------------------------------------------------"
294	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
295.endif
296	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
297	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
298.if target(post-world)
299	@echo
300	@echo "--------------------------------------------------------------"
301	@echo ">>> Making 'post-world' target"
302	@echo "--------------------------------------------------------------"
303	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
304.endif
305	@echo
306	@echo "--------------------------------------------------------------"
307	@echo ">>> make world completed on `LC_ALL=C date`"
308	@echo "                   (started ${STARTTIME})"
309	@echo "--------------------------------------------------------------"
310.else
311world:
312	@echo "WARNING: make world will overwrite your existing FreeBSD"
313	@echo "installation without also building and installing a new"
314	@echo "kernel.  This can be dangerous.  Please read the handbook,"
315	@echo "'Rebuilding world', for how to upgrade your system."
316	@echo "Define DESTDIR to where you want to install FreeBSD,"
317	@echo "including /, to override this warning and proceed as usual."
318	@echo ""
319	@echo "Bailing out now..."
320	@false
321.endif
322
323#
324# kernel
325#
326# Short hand for `make buildkernel installkernel'
327#
328kernel: buildkernel installkernel
329
330#
331# Perform a few tests to determine if the installed tools are adequate
332# for building the world.
333#
334# Note: if we ever need to care about the version of bmake, simply testing
335# MAKE_VERSION against a required version should suffice.
336#
337upgrade_checks:
338.if ${HAVE_MAKE} != ${WANT_MAKE}
339	@(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
340.elif ${WANT_MAKE} == "fmake"
341	@if ! (cd ${.CURDIR}/tools/build/make_check && \
342	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
343	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
344	then \
345	    (cd ${.CURDIR} && ${MAKE} make); \
346	fi
347.endif
348
349#
350# Upgrade make(1) to the current version using the installed
351# headers, libraries and tools.  Also, allow the location of
352# the system bsdmake-like utility to be overridden.
353#
354MMAKEENV=	MAKEOBJDIRPREFIX=${MYMAKE:H} \
355		DESTDIR= \
356		INSTALL="sh ${.CURDIR}/tools/install.sh"
357MMAKE=		${MMAKEENV} ${MAKE} \
358		-D_UPGRADING \
359		-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
360		-DNO_CPU_CFLAGS -DNO_WERROR \
361		DESTDIR= -DNO_TESTS PROGNAME=${MYMAKE:T}
362
363make bmake: .PHONY
364	@echo
365	@echo "--------------------------------------------------------------"
366	@echo ">>> Building an up-to-date make(1)"
367	@echo "--------------------------------------------------------------"
368	${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
369		${MMAKE} obj; \
370		${MMAKE} depend; \
371		${MMAKE} all; \
372		${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
373
374tinderbox toolchains kernel-toolchains: upgrade_checks
375
376tinderbox:
377	@cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
378
379toolchains:
380	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
381
382kernel-toolchains:
383	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
384
385#
386# universe
387#
388# Attempt to rebuild *everything* for all supported architectures,
389# with a reasonable chance of success, regardless of how old your
390# existing system is.
391#
392.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
393TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
394TARGET_ARCHES_arm?=	arm armeb armv6
395TARGET_ARCHES_mips?=	mipsel mips mips64el mips64 mipsn32
396TARGET_ARCHES_powerpc?=	powerpc powerpc64
397TARGET_ARCHES_pc98?=	i386
398.for target in ${TARGETS}
399TARGET_ARCHES_${target}?= ${target}
400.endfor
401
402.if defined(UNIVERSE_TARGET)
403MAKE_JUST_WORLDS=	YES
404.else
405UNIVERSE_TARGET?=	buildworld
406.endif
407KERNSRCDIR?=		${.CURDIR}/sys
408
409targets:
410	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
411.for target in ${TARGETS}
412.for target_arch in ${TARGET_ARCHES_${target}}
413	@echo "    ${target}/${target_arch}"
414.endfor
415.endfor
416
417.if defined(DOING_TINDERBOX)
418FAILFILE=${.CURDIR}/_.tinderbox.failed
419MAKEFAIL=tee -a ${FAILFILE}
420.else
421MAKEFAIL=cat
422.endif
423
424universe_prologue:  upgrade_checks
425universe: universe_prologue
426universe_prologue:
427	@echo "--------------------------------------------------------------"
428	@echo ">>> make universe started on ${STARTTIME}"
429	@echo "--------------------------------------------------------------"
430.if defined(DOING_TINDERBOX)
431	@rm -f ${FAILFILE}
432.endif
433.for target in ${TARGETS}
434universe: universe_${target}
435universe_epilogue: universe_${target}
436universe_${target}: universe_${target}_prologue
437universe_${target}_prologue: universe_prologue
438	@echo ">> ${target} started on `LC_ALL=C date`"
439.if !defined(MAKE_JUST_KERNELS)
440.for target_arch in ${TARGET_ARCHES_${target}}
441universe_${target}: universe_${target}_${target_arch}
442universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
443	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
444	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
445	    ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
446	    TARGET=${target} \
447	    TARGET_ARCH=${target_arch} \
448	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
449	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
450	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
451	    ${MAKEFAIL}))
452	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
453.endfor
454.endif
455.if !defined(MAKE_JUST_WORLDS)
456# If we are building world and kernels wait for the required worlds to finish
457.if !defined(MAKE_JUST_KERNELS)
458.for target_arch in ${TARGET_ARCHES_${target}}
459universe_${target}_kernels: universe_${target}_${target_arch}
460.endfor
461.endif
462universe_${target}: universe_${target}_kernels
463universe_${target}_kernels: universe_${target}_prologue .MAKE
464.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
465	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
466	    ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
467	    (echo "${target} 'make LINT' failed," \
468	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
469.endif
470	@cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
471	    universe_kernels
472.endif
473	@echo ">> ${target} completed on `LC_ALL=C date`"
474.endfor
475universe_kernels: universe_kernconfs
476.if !defined(TARGET)
477TARGET!=	uname -m
478.endif
479.if defined(MAKE_ALL_KERNELS)
480_THINNER=cat
481.else
482_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
483.endif
484KERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
485		find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
486		-type f -maxdepth 0 \
487		! -name DEFAULTS ! -name NOTES | \
488		${_THINNER}
489universe_kernconfs:
490.for kernel in ${KERNCONFS}
491TARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
492	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
493	grep -v WARNING: | cut -f 2
494.if empty(TARGET_ARCH_${kernel})
495.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
496.endif
497universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
498universe_kernconf_${TARGET}_${kernel}: .MAKE
499	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
500	    ${SUB_MAKE} ${JFLAG} buildkernel \
501	    TARGET=${TARGET} \
502	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
503	    KERNCONF=${kernel} \
504	    > _.${TARGET}.${kernel} 2>&1 || \
505	    (echo "${TARGET} ${kernel} kernel failed," \
506	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
507.endfor
508universe: universe_epilogue
509universe_epilogue:
510	@echo "--------------------------------------------------------------"
511	@echo ">>> make universe completed on `LC_ALL=C date`"
512	@echo "                      (started ${STARTTIME})"
513	@echo "--------------------------------------------------------------"
514.if defined(DOING_TINDERBOX)
515	@if [ -e ${FAILFILE} ] ; then \
516		echo "Tinderbox failed:" ;\
517		cat ${FAILFILE} ;\
518		exit 1 ;\
519	fi
520.endif
521.endif
522
523buildLINT:
524	${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
525
526.if defined(.PARSEDIR)
527.if make(universe)
528# we do not want a failure of one branch abort all.
529MAKE_JOB_ERROR_TOKEN= no
530.export MAKE_JOB_ERROR_TOKEN
531.endif
532.endif
533