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