]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - Makefile.inc1
Fix multiple small kernel memory disclosures. [EN-18:04.mem]
[FreeBSD/releng/10.3.git] / Makefile.inc1
1 #
2 # $FreeBSD$
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 #       -DDB_FROM_SRC use the user/group databases in src/etc instead of
8 #           the system database when installing.
9 #       -DNO_SHARE do not go into share subdir
10 #       -DKERNFAST define NO_KERNEL{CONFIG,CLEAN,DEPEND,OBJ}
11 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
12 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
13 #       -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
14 #       -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel
15 #       -DNO_PORTSUPDATE do not update ports in ${MAKE} update
16 #       -DNO_ROOT install without using root privilege
17 #       -DNO_DOCUPDATE do not update doc in ${MAKE} update
18 #       -DNO_CTF do not run the DTrace CTF conversion tools on built objects
19 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
20 #       LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list
21 #       LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target
22 #       LOCAL_MTREE="list of mtree files" to process to allow local directories
23 #           to be created before files are installed
24 #       LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools
25 #           list
26 #       METALOG="path to metadata log" to write permission and ownership
27 #           when NO_ROOT is set.  (default: ${DESTDIR}/METALOG)
28 #       TARGET="machine" to crossbuild world for a different machine type
29 #       TARGET_ARCH= may be required when a TARGET supports multiple endians
30 #       BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh)
31 #       WORLD_FLAGS= additional flags to pass to make(1) during buildworld
32 #       KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel
33
34 #
35 # The intended user-driven targets are:
36 # buildworld  - rebuild *everything*, including glue to help do upgrades
37 # installworld- install everything built by "buildworld"
38 # doxygen     - build API documentation of the kernel
39 # update      - convenient way to update your source tree (eg: svn/svnup)
40 #
41 # Standard targets (not defined here) are documented in the makefiles in
42 # /usr/share/mk.  These include:
43 #               obj depend all install clean cleandepend cleanobj
44
45 .if !defined(TARGET) || !defined(TARGET_ARCH)
46 .error "Both TARGET and TARGET_ARCH must be defined."
47 .endif
48
49 .include <bsd.own.mk>
50 .include <bsd.arch.inc.mk>
51 .include <bsd.compiler.mk>
52
53 # We must do share/info early so that installation of info `dir'
54 # entries works correctly.  Do it first since it is less likely to
55 # grow dependencies on include and lib than vice versa.
56 #
57 # We must do lib/ and libexec/ before bin/, because if installworld
58 # installs a new /bin/sh, the 'make' command will *immediately*
59 # use that new version.  And the new (dynamically-linked) /bin/sh
60 # will expect to find appropriate libraries in /lib and /libexec.
61 #
62 SRCDIR?=        ${.CURDIR}
63 .if defined(SUBDIR_OVERRIDE)
64 SUBDIR= ${SUBDIR_OVERRIDE}
65 .else
66 SUBDIR= share/info lib libexec
67 SUBDIR+=bin
68 .if ${MK_GAMES} != "no"
69 SUBDIR+=games
70 .endif
71 .if ${MK_CDDL} != "no"
72 SUBDIR+=cddl
73 .endif
74 SUBDIR+=gnu include
75 .if ${MK_KERBEROS} != "no"
76 SUBDIR+=kerberos5
77 .endif
78 .if ${MK_RESCUE} != "no"
79 SUBDIR+=rescue
80 .endif
81 SUBDIR+=sbin
82 .if ${MK_CRYPT} != "no"
83 SUBDIR+=secure
84 .endif
85 .if !defined(NO_SHARE)
86 SUBDIR+=share
87 .endif
88 SUBDIR+=sys usr.bin usr.sbin
89 .if ${MK_TESTS} != "no"
90 SUBDIR+=        tests
91 .endif
92 .if ${MK_OFED} != "no"
93 SUBDIR+=contrib/ofed
94 .endif
95 #
96 # We must do etc/ last for install/distribute to work.
97 #
98 SUBDIR+=etc
99
100 # These are last, since it is nice to at least get the base system
101 # rebuilt before you do them.
102 .for _DIR in ${LOCAL_LIB_DIRS} ${LOCAL_DIRS}
103 .if exists(${.CURDIR}/${_DIR}/Makefile)
104 SUBDIR+= ${_DIR}
105 .endif
106 .endfor
107 .endif
108
109 .if defined(NOCLEAN)
110 NO_CLEAN=       ${NOCLEAN}
111 .endif
112 .if defined(NO_CLEANDIR)
113 CLEANDIR=       clean cleandepend
114 .else
115 CLEANDIR=       cleandir
116 .endif
117
118 LOCAL_TOOL_DIRS?=
119 PACKAGEDIR?=    ${DESTDIR}/${DISTDIR}
120
121 BUILDENV_SHELL?=/bin/sh
122
123 SVN?=           /usr/local/bin/svn
124 SVNFLAGS?=      -r HEAD
125
126 MAKEOBJDIRPREFIX?=      /usr/obj
127 .if !defined(OSRELDATE)
128 .if exists(/usr/include/osreldate.h)
129 OSRELDATE!=     awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
130                 /usr/include/osreldate.h
131 .else
132 OSRELDATE=      0
133 .endif
134 .endif
135
136 .if !defined(VERSION)
137 REVISION!=      ${MAKE} -C ${SRCDIR}/release -V REVISION
138 BRANCH!=        ${MAKE} -C ${SRCDIR}/release -V BRANCH
139 SRCRELDATE!=    awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
140                 ${SRCDIR}/sys/sys/param.h
141 VERSION=        FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE}
142 .endif
143
144 KNOWN_ARCHES?=  amd64 arm armeb/arm armv6/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64
145 .if ${TARGET} == ${TARGET_ARCH}
146 _t=             ${TARGET}
147 .else
148 _t=             ${TARGET_ARCH}/${TARGET}
149 .endif
150 .for _t in ${_t}
151 .if empty(KNOWN_ARCHES:M${_t})
152 .error Unknown target ${TARGET_ARCH}:${TARGET}.
153 .endif
154 .endfor
155
156 .if ${TARGET} == ${MACHINE}
157 TARGET_CPUTYPE?=${CPUTYPE}
158 .else
159 TARGET_CPUTYPE?=
160 .endif
161
162 .if !empty(TARGET_CPUTYPE)
163 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
164 .else
165 _TARGET_CPUTYPE=dummy
166 .endif
167 _CPUTYPE!=      MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \
168                 -f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE
169 .if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
170 .error CPUTYPE global should be set with ?=.
171 .endif
172 .if make(buildworld)
173 BUILD_ARCH!=    uname -p
174 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
175 .error To cross-build, set TARGET_ARCH.
176 .endif
177 .endif
178 .if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING)
179 OBJTREE=        ${MAKEOBJDIRPREFIX}
180 .else
181 OBJTREE=        ${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH}
182 .endif
183 WORLDTMP=       ${OBJTREE}${.CURDIR}/tmp
184 # /usr/games added for fortune which depend on strfile
185 BPATH=          ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games:${WORLDTMP}/legacy/bin
186 XPATH=          ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
187 STRICTTMPPATH=  ${BPATH}:${XPATH}
188 TMPPATH=        ${STRICTTMPPATH}:${PATH}
189
190 #
191 # Avoid running mktemp(1) unless actually needed.
192 # It may not be functional, e.g., due to new ABI
193 # when in the middle of installing over this system.
194 #
195 .if make(distributeworld) || make(installworld)
196 INSTALLTMP!=    /usr/bin/mktemp -d -u -t install
197 .endif
198
199 #
200 # Building a world goes through the following stages
201 #
202 # 1. legacy stage [BMAKE]
203 #       This stage is responsible for creating compatibility
204 #       shims that are needed by the bootstrap-tools,
205 #       build-tools and cross-tools stages.
206 # 1. bootstrap-tools stage [BMAKE]
207 #       This stage is responsible for creating programs that
208 #       are needed for backward compatibility reasons. They
209 #       are not built as cross-tools.
210 # 2. build-tools stage [TMAKE]
211 #       This stage is responsible for creating the object
212 #       tree and building any tools that are needed during
213 #       the build process.
214 # 3. cross-tools stage [XMAKE]
215 #       This stage is responsible for creating any tools that
216 #       are needed for cross-builds. A cross-compiler is one
217 #       of them.
218 # 4. world stage [WMAKE]
219 #       This stage actually builds the world.
220 # 5. install stage (optional) [IMAKE]
221 #       This stage installs a previously built world.
222 #
223
224 BOOTSTRAPPING?= 0
225
226 # Common environment for world related stages
227 CROSSENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
228                 MACHINE_ARCH=${TARGET_ARCH} \
229                 MACHINE=${TARGET} \
230                 CPUTYPE=${TARGET_CPUTYPE}
231 .if ${MK_GROFF} != "no"
232 CROSSENV+=      GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
233                 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
234                 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
235 .endif
236
237 _BOOTSTRAP_MAKEINFO?=   ${MK_INFO}
238 # bootstrap-tools stage
239 BMAKEENV=       INSTALL="sh ${.CURDIR}/tools/install.sh" \
240                 PATH=${BPATH}:${PATH} \
241                 WORLDTMP=${WORLDTMP} \
242                 VERSION="${VERSION}" \
243                 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \
244                 COMPILER_TYPE=${COMPILER_TYPE}
245 BMAKE=          MAKEOBJDIRPREFIX=${WORLDTMP} \
246                 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
247                 DESTDIR= \
248                 BOOTSTRAPPING=${OSRELDATE} \
249                 SSP_CFLAGS= \
250                 -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
251                 -DNO_PIC -DNO_PROFILE -DNO_SHARED \
252                 _BOOTSTRAP_MAKEINFO=${_BOOTSTRAP_MAKEINFO} \
253                 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF -DEARLY_BUILD -DNO_TESTS
254
255 # build-tools stage
256 TMAKE=          MAKEOBJDIRPREFIX=${OBJTREE} \
257                 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
258                 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
259                 DESTDIR= \
260                 BOOTSTRAPPING=${OSRELDATE} \
261                 SSP_CFLAGS= \
262                 -DNO_LINT \
263                 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF -DEARLY_BUILD -DNO_TESTS
264
265 # cross-tools stage
266 XMAKE=          TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
267                 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
268                 -DWITHOUT_GDB -DNO_TESTS
269
270 # kernel-tools stage
271 KTMAKEENV=      INSTALL="sh ${.CURDIR}/tools/install.sh" \
272                 PATH=${BPATH}:${PATH} \
273                 WORLDTMP=${WORLDTMP} \
274                 VERSION="${VERSION}" \
275                 COMPILER_TYPE=${COMPILER_TYPE}
276 KTMAKE=         TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \
277                 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \
278                 DESTDIR= \
279                 BOOTSTRAPPING=${OSRELDATE} \
280                 SSP_CFLAGS= \
281                 -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
282                 -DNO_PIC -DNO_PROFILE -DNO_SHARED \
283                 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF -DEARLY_BUILD
284
285 # world stage
286 WMAKEENV=       ${CROSSENV} \
287                 _SHLIBDIRPREFIX=${WORLDTMP} \
288                 _LDSCRIPTROOT= \
289                 VERSION="${VERSION}" \
290                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
291                 PATH=${TMPPATH}
292
293 # make hierarchy
294 HMAKE=          PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q}
295 .if defined(NO_ROOT)
296 HMAKE+=         PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT
297 .endif
298
299 .if ${MK_CDDL} == "no"
300 WMAKEENV+=      NO_CTF=1
301 .endif
302
303 .if defined(CROSS_TOOLCHAIN_PREFIX)
304 CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
305 CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX}
306 .endif
307 XCOMPILERS=     CC CXX CPP
308 .for COMPILER in ${XCOMPILERS}
309 .if defined(CROSS_COMPILER_PREFIX)
310 X${COMPILER}?=  ${CROSS_COMPILER_PREFIX}${${COMPILER}}
311 .else
312 X${COMPILER}?=  ${${COMPILER}}
313 .endif
314 .endfor
315 XBINUTILS=      AS AR LD NM OBJCOPY OBJDUMP RANLIB STRINGS
316 .for BINUTIL in ${XBINUTILS}
317 .if defined(CROSS_BINUTILS_PREFIX)
318 X${BINUTIL}?=   ${CROSS_BINUTILS_PREFIX}${${BINUTIL}}
319 .else
320 X${BINUTIL}?=   ${${BINUTIL}}
321 .endif
322 .endfor
323 WMAKEENV+=      CC="${XCC} ${XFLAGS}" CXX="${XCXX} ${XFLAGS}" \
324                 CPP="${XCPP} ${XFLAGS}" \
325                 AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \
326                 OBJDUMP=${XOBJDUMP} OBJCOPY="${XOBJCOPY}" \
327                 RANLIB=${XRANLIB} STRINGS=${XSTRINGS}
328
329 .if ${XCC:T:Mgcc} == "gcc"
330 WMAKE_COMPILER_TYPE=    gcc
331 .elif ${XCC:T:Mclang} == "clang"
332 WMAKE_COMPILER_TYPE=    clang
333 .elif ${MK_CLANG_IS_CC} == "no"
334 WMAKE_COMPILER_TYPE=    gcc
335 .else
336 WMAKE_COMPILER_TYPE=    clang
337 .endif
338 IMAKE_COMPILER_TYPE=    COMPILER_TYPE=${WMAKE_COMPILER_TYPE}
339
340 .if ${XCC:M/*}
341 XFLAGS=         --sysroot=${WORLDTMP}
342 .if defined(CROSS_BINUTILS_PREFIX)
343 # In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a
344 # directory, but the compiler will look in the right place for it's
345 # tools so we don't need to tell it where to look.
346 .if exists(${CROSS_BINUTILS_PREFIX})
347 XFLAGS+=        -B${CROSS_BINUTILS_PREFIX}
348 .endif
349 .else
350 XFLAGS+=        -B${WORLDTMP}/usr/bin
351 .endif
352 .if ${TARGET_ARCH} != ${MACHINE_ARCH} && ${WMAKE_COMPILER_TYPE} == "clang"
353 .if (${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "armv6") && \
354 ${MK_ARM_EABI} != "no"
355 TARGET_ABI=     gnueabi
356 .else
357 TARGET_ABI=     unknown
358 .endif
359 TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd10.0
360 XFLAGS+=        -target ${TARGET_TRIPLE}
361 .endif
362 .endif
363
364 WMAKEENV+=      COMPILER_TYPE=${WMAKE_COMPILER_TYPE}
365 WMAKE=          ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP}
366
367 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64"
368 # 32 bit world
369 LIB32TMP=       ${OBJTREE}${.CURDIR}/lib32
370
371 .if ${TARGET_ARCH} == "amd64"
372 .if empty(TARGET_CPUTYPE)
373 LIB32CPUFLAGS=  -march=i686 -mmmx -msse -msse2
374 .else
375 LIB32CPUFLAGS=  -march=${TARGET_CPUTYPE}
376 .endif
377 LIB32WMAKEENV=  MACHINE=i386 MACHINE_ARCH=i386 \
378                 MACHINE_CPU="i686 mmx sse sse2"
379 LIB32WMAKEFLAGS=        \
380                 AS="${XAS} --32" \
381                 LD="${XLD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \
382                 OBJCOPY="${XOBJCOPY}"
383
384 .elif ${TARGET_ARCH} == "powerpc64"
385 .if empty(TARGET_CPUTYPE)
386 LIB32CPUFLAGS=  -mcpu=powerpc
387 .else
388 LIB32CPUFLAGS=  -mcpu=${TARGET_CPUTYPE}
389 .endif
390 LIB32WMAKEENV=  MACHINE=powerpc MACHINE_ARCH=powerpc
391 LIB32WMAKEFLAGS=        \
392                 LD="${XLD} -m elf32ppc_fbsd" \
393                 OBJCOPY="${XOBJCOPY}"
394 .endif
395
396
397 LIB32FLAGS=     -m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \
398                 -isystem ${LIB32TMP}/usr/include/ \
399                 -L${LIB32TMP}/usr/lib32 \
400                 -B${LIB32TMP}/usr/lib32
401 .if ${XCC:M/*}
402 LIB32FLAGS+=            --sysroot=${WORLDTMP}
403 .endif
404
405 # Yes, the flags are redundant.
406 LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \
407                 _SHLIBDIRPREFIX=${LIB32TMP} \
408                 _LDSCRIPTROOT=${LIB32TMP} \
409                 VERSION="${VERSION}" \
410                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
411                 PATH=${TMPPATH} \
412                 LIBDIR=/usr/lib32 \
413                 SHLIBDIR=/usr/lib32 \
414                 LIBPRIVATEDIR=/usr/lib32/private \
415                 COMPILER_TYPE=${WMAKE_COMPILER_TYPE} \
416                 DTRACE="${DTRACE} -32"
417 LIB32WMAKEFLAGS+=       \
418                 CC="${XCC} ${LIB32FLAGS}" \
419                 CXX="${XCXX} ${LIB32FLAGS}" \
420                 DESTDIR=${LIB32TMP} \
421                 -DCOMPAT_32BIT \
422                 -DLIBRARIES_ONLY \
423                 -DNO_CPU_CFLAGS \
424                 -DNO_CTF \
425                 -DNO_LINT \
426                 -DNO_TESTS
427
428 LIB32WMAKE=     ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \
429                 -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML
430 LIB32IMAKE=     ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS \
431                 ${IMAKE_INSTALL}
432 .endif
433
434 IMAKEENV=       ${CROSSENV:N_LDSCRIPTROOT=*}
435 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1 \
436                 ${IMAKE_INSTALL} ${IMAKE_MTREE} ${IMAKE_COMPILER_TYPE}
437 .if empty(.MAKEFLAGS:M-n)
438 IMAKEENV+=      PATH=${STRICTTMPPATH}:${INSTALLTMP} \
439                 LD_LIBRARY_PATH=${INSTALLTMP} \
440                 PATH_LOCALE=${INSTALLTMP}/locale
441 IMAKE+=         __MAKE_SHELL=${INSTALLTMP}/sh
442 .else
443 IMAKEENV+=      PATH=${TMPPATH}:${INSTALLTMP}
444 .endif
445 .if defined(DB_FROM_SRC)
446 INSTALLFLAGS+=  -N ${.CURDIR}/etc
447 MTREEFLAGS+=    -N ${.CURDIR}/etc
448 .endif
449 _INSTALL_DDIR=  ${DESTDIR}/${DISTDIR}
450 INSTALL_DDIR=   ${_INSTALL_DDIR:S://:/:g:C:/$::}
451 .if defined(NO_ROOT)
452 METALOG?=       ${DESTDIR}/${DISTDIR}/METALOG
453 IMAKE+=         -DNO_ROOT METALOG=${METALOG}
454 INSTALLFLAGS+=  -U -M ${METALOG} -D ${INSTALL_DDIR}
455 MTREEFLAGS+=    -W
456 .endif
457 .if defined(DB_FROM_SRC) || defined(NO_ROOT)
458 IMAKE_INSTALL=  INSTALL="install ${INSTALLFLAGS}"
459 IMAKE_MTREE=    MTREE_CMD="nmtree ${MTREEFLAGS}"
460 .endif
461
462 # kernel stage
463 KMAKEENV=       ${WMAKEENV}
464 KMAKE=          ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME}
465
466 #
467 # buildworld
468 #
469 # Attempt to rebuild the entire system, with reasonable chance of
470 # success, regardless of how old your existing system is.
471 #
472 _worldtmp: .PHONY
473 .if ${.CURDIR:C/[^,]//g} != ""
474 #       The m4 build of sendmail files doesn't like it if ',' is used
475 #       anywhere in the path of it's files.
476         @echo
477         @echo "*** Error: path to source tree contains a comma ','"
478         @echo
479         false
480 .endif
481         @echo
482         @echo "--------------------------------------------------------------"
483         @echo ">>> Rebuilding the temporary build tree"
484         @echo "--------------------------------------------------------------"
485 .if !defined(NO_CLEAN)
486         rm -rf ${WORLDTMP}
487 .if defined(LIB32TMP)
488         rm -rf ${LIB32TMP}
489 .endif
490 .else
491         rm -rf ${WORLDTMP}/legacy/usr/include
492 #       XXX - These three can depend on any header file.
493         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
494         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c
495         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
496 .endif
497 .for _dir in \
498     lib usr legacy/bin legacy/usr
499         mkdir -p ${WORLDTMP}/${_dir}
500 .endfor
501         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
502             -p ${WORLDTMP}/legacy/usr >/dev/null
503 .if ${MK_GROFF} != "no"
504         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \
505             -p ${WORLDTMP}/legacy/usr >/dev/null
506 .endif
507         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
508             -p ${WORLDTMP}/usr >/dev/null
509         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
510             -p ${WORLDTMP}/usr/include >/dev/null
511         ln -sf ${.CURDIR}/sys ${WORLDTMP}
512 .if ${MK_DEBUG_FILES} != "no"
513         # We could instead disable debug files for these build stages
514         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
515             -p ${WORLDTMP}/legacy/usr/lib >/dev/null
516         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
517             -p ${WORLDTMP}/usr/lib >/dev/null
518 .endif
519 .if ${MK_TESTS} != "no"
520         mkdir -p ${WORLDTMP}${TESTSBASE}
521         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
522             -p ${WORLDTMP}${TESTSBASE} >/dev/null
523 .endif
524 .for _mtree in ${LOCAL_MTREE}
525         mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null
526 .endfor
527 _legacy:
528         @echo
529         @echo "--------------------------------------------------------------"
530         @echo ">>> stage 1.1: legacy release compatibility shims"
531         @echo "--------------------------------------------------------------"
532         ${_+_}cd ${.CURDIR}; ${BMAKE} legacy
533 _bootstrap-tools:
534         @echo
535         @echo "--------------------------------------------------------------"
536         @echo ">>> stage 1.2: bootstrap tools"
537         @echo "--------------------------------------------------------------"
538         ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools
539 _cleanobj:
540 .if !defined(NO_CLEAN)
541         @echo
542         @echo "--------------------------------------------------------------"
543         @echo ">>> stage 2.1: cleaning up the object tree"
544         @echo "--------------------------------------------------------------"
545         ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
546 .if defined(LIB32TMP)
547         ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
548 .endif
549 .endif
550 _obj:
551         @echo
552         @echo "--------------------------------------------------------------"
553         @echo ">>> stage 2.2: rebuilding the object tree"
554         @echo "--------------------------------------------------------------"
555         ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj
556 _build-tools:
557         @echo
558         @echo "--------------------------------------------------------------"
559         @echo ">>> stage 2.3: build tools"
560         @echo "--------------------------------------------------------------"
561         ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools
562 _cross-tools:
563         @echo
564         @echo "--------------------------------------------------------------"
565         @echo ">>> stage 3: cross tools"
566         @echo "--------------------------------------------------------------"
567         ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools
568         ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools
569 _includes:
570         @echo
571         @echo "--------------------------------------------------------------"
572         @echo ">>> stage 4.1: building includes"
573         @echo "--------------------------------------------------------------"
574         ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
575 _libraries:
576         @echo
577         @echo "--------------------------------------------------------------"
578         @echo ">>> stage 4.2: building libraries"
579         @echo "--------------------------------------------------------------"
580         ${_+_}cd ${.CURDIR}; \
581             ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
582             -DWITHOUT_MAN -DNO_PROFILE -DNO_TESTS libraries
583 _depend:
584         @echo
585         @echo "--------------------------------------------------------------"
586         @echo ">>> stage 4.3: make dependencies"
587         @echo "--------------------------------------------------------------"
588         ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend
589 everything:
590         @echo
591         @echo "--------------------------------------------------------------"
592         @echo ">>> stage 4.4: building everything"
593         @echo "--------------------------------------------------------------"
594         ${_+_}cd ${.CURDIR}; ${WMAKE} par-all
595 .if defined(LIB32TMP)
596 build32: .PHONY
597         @echo
598         @echo "--------------------------------------------------------------"
599         @echo ">>> stage 5.1: building 32 bit shim libraries"
600         @echo "--------------------------------------------------------------"
601         mkdir -p ${LIB32TMP}/usr/include
602         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
603             -p ${LIB32TMP}/usr >/dev/null
604         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
605             -p ${LIB32TMP}/usr/include >/dev/null
606 .if ${MK_DEBUG_FILES} != "no"
607         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
608             -p ${LIB32TMP}/usr/lib >/dev/null
609 .endif
610         mkdir -p ${WORLDTMP}
611         ln -sf ${.CURDIR}/sys ${WORLDTMP}
612 .for _t in obj includes
613         ${_+_}cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
614         ${_+_}cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
615 .if ${MK_CDDL} != "no"
616         ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
617 .endif
618         ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
619 .if ${MK_CRYPT} != "no"
620         ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
621 .endif
622 .if ${MK_KERBEROS} != "no"
623         ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
624 .endif
625 .endfor
626 .for _dir in usr.bin/lex/lib
627         ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
628 .endfor
629 .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
630         ${_+_}cd ${.CURDIR}/${_dir}; \
631             WORLDTMP=${WORLDTMP} \
632             MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \
633             MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
634             DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
635             -DEARLY_BUILD build-tools
636 .endfor
637         ${_+_}cd ${.CURDIR}; \
638             ${LIB32WMAKE} -f Makefile.inc1 -DNO_FSCHG libraries
639 .for _t in obj depend all
640         ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
641             -DNO_FSCHG DIRPRFX=libexec/rtld-elf/ ${_t}
642         ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
643             DIRPRFX=usr.bin/ldd ${_t}
644 .endfor
645
646 distribute32 install32: .MAKE .PHONY
647         ${_+_}cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
648 .if ${MK_CDDL} != "no"
649         ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
650 .endif
651         ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
652 .if ${MK_CRYPT} != "no"
653         ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
654 .endif
655 .if ${MK_KERBEROS} != "no"
656         ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
657 .endif
658         ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \
659             PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
660         ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} \
661             ${.TARGET:S/32$//}
662 .endif
663
664 WMAKE_TGTS=
665 .if !defined(SUBDIR_OVERRIDE)
666 WMAKE_TGTS+=    _worldtmp _legacy _bootstrap-tools
667 .endif
668 WMAKE_TGTS+=    _cleanobj _obj _build-tools
669 .if !defined(SUBDIR_OVERRIDE)
670 WMAKE_TGTS+=    _cross-tools
671 .endif
672 WMAKE_TGTS+=    _includes _libraries _depend everything
673 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
674 WMAKE_TGTS+=    build32
675 .endif
676
677 buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
678 .ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
679
680 buildworld_prologue:
681         @echo "--------------------------------------------------------------"
682         @echo ">>> World build started on `LC_ALL=C date`"
683         @echo "--------------------------------------------------------------"
684
685 buildworld_epilogue:
686         @echo
687         @echo "--------------------------------------------------------------"
688         @echo ">>> World build completed on `LC_ALL=C date`"
689         @echo "--------------------------------------------------------------"
690
691 #
692 # We need to have this as a target because the indirection between Makefile
693 # and Makefile.inc1 causes the correct PATH to be used, rather than a
694 # modification of the current environment's PATH.  In addition, we need
695 # to quote multiword values.
696 #
697 buildenvvars:
698         @echo ${WMAKEENV:Q}
699
700 .if ${.TARGETS:Mbuildenv}
701 .if ${.MAKEFLAGS:M-j}
702 .error The buildenv target is incompatible with -j
703 .endif
704 .endif
705 buildenv:
706         @echo Entering world for ${TARGET_ARCH}:${TARGET}
707         @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true
708
709 TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
710 toolchain: ${TOOLCHAIN_TGTS}
711 kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
712
713 #
714 # installcheck
715 #
716 # Checks to be sure system is ready for installworld/installkernel.
717 #
718 installcheck: _installcheck_world _installcheck_kernel
719 _installcheck_world:
720 _installcheck_kernel:
721
722 #
723 # Require DESTDIR to be set if installing for a different architecture or
724 # using the user/group database in the source tree.
725 #
726 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \
727     defined(DB_FROM_SRC)
728 .if !make(distributeworld)
729 _installcheck_world: __installcheck_DESTDIR
730 _installcheck_kernel: __installcheck_DESTDIR
731 __installcheck_DESTDIR:
732 .if !defined(DESTDIR) || empty(DESTDIR)
733         @echo "ERROR: Please set DESTDIR!"; \
734         false
735 .endif
736 .endif
737 .endif
738
739 .if !defined(DB_FROM_SRC)
740 #
741 # Check for missing UIDs/GIDs.
742 #
743 CHECK_UIDS=     auditdistd
744 CHECK_GIDS=     audit
745 .if ${MK_SENDMAIL} != "no"
746 CHECK_UIDS+=    smmsp
747 CHECK_GIDS+=    smmsp
748 .endif
749 .if ${MK_PF} != "no"
750 CHECK_UIDS+=    proxy
751 CHECK_GIDS+=    proxy authpf
752 .endif
753 .if ${MK_UNBOUND} != "no"
754 CHECK_UIDS+=    unbound
755 CHECK_GIDS+=    unbound
756 .endif
757 _installcheck_world: __installcheck_UGID
758 __installcheck_UGID:
759 .for uid in ${CHECK_UIDS}
760         @if ! `id -u ${uid} >/dev/null 2>&1`; then \
761                 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
762                 false; \
763         fi
764 .endfor
765 .for gid in ${CHECK_GIDS}
766         @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
767                 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
768                 false; \
769         fi
770 .endfor
771 .endif
772
773 #
774 # Required install tools to be saved in a scratch dir for safety.
775 #
776 .if ${MK_INFO} != "no"
777 _install-info=  install-info
778 .endif
779 .if ${MK_ZONEINFO} != "no"
780 _zoneinfo=      zic tzsetup
781 .endif
782
783 .if exists(/usr/sbin/nmtree)
784 _nmtree_itools= nmtree
785 .endif
786
787 ITOOLS= [ awk cap_mkdb cat chflags chmod chown \
788         date echo egrep find grep id install ${_install-info} \
789         ln lockf make mkdir mtree ${_nmtree_itools} mv pwd_mkdb \
790         rm sed sh strip sysctl test true uname wc ${_zoneinfo} \
791         ${LOCAL_ITOOLS}
792
793 # Needed for share/man
794 .if ${MK_MAN} != "no"
795 ITOOLS+=makewhatis
796 .endif
797
798 #
799 # distributeworld
800 #
801 # Distributes everything compiled by a `buildworld'.
802 #
803 # installworld
804 #
805 # Installs everything compiled by a 'buildworld'.
806 #
807
808 # Non-base distributions produced by the base system
809 EXTRA_DISTRIBUTIONS=    doc
810 .if ${MK_GAMES} != "no"
811 EXTRA_DISTRIBUTIONS+=   games
812 .endif
813 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
814 EXTRA_DISTRIBUTIONS+=   lib32
815 .endif
816 .if ${MK_TESTS} != "no"
817 EXTRA_DISTRIBUTIONS+=   tests
818 .endif
819
820 MTREE_MAGIC?=   mtree 2.0
821
822 distributeworld installworld: _installcheck_world
823         mkdir -p ${INSTALLTMP}
824         export PATH=${BPATH}:${PATH} ; \
825         progs=$$(for prog in ${ITOOLS}; do \
826                 if progpath=`which $$prog`; then \
827                         echo $$progpath; \
828                 else \
829                         echo "Required tool $$prog not found in PATH." >&2; \
830                         exit 1; \
831                 fi; \
832             done); \
833         libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
834             while read line; do \
835                 set -- $$line; \
836                 if [ "$$2 $$3" != "not found" ]; then \
837                         echo $$2; \
838                 else \
839                         echo "Required library $$1 not found." >&2; \
840                         exit 1; \
841                 fi; \
842             done); \
843         cp $$libs $$progs ${INSTALLTMP}
844         cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
845 .if defined(NO_ROOT)
846         echo "#${MTREE_MAGIC}" > ${METALOG}
847 .endif
848 .if make(distributeworld)
849 .for dist in ${EXTRA_DISTRIBUTIONS}
850         -mkdir ${DESTDIR}/${DISTDIR}/${dist}
851         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
852             -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
853         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
854             -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
855         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
856             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
857 .if ${MK_DEBUG_FILES} != "no"
858         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \
859             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null
860 .endif
861 .if ${MK_TESTS} != "no" && ${dist} == "tests"
862         -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE}
863         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
864             -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null
865 .endif
866 .if defined(NO_ROOT)
867         ${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \
868             sed -e 's#^\./#./${dist}/#' >> ${METALOG}
869         ${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \
870             sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG}
871         ${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \
872             sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG}
873 .endif
874 .endfor
875         -mkdir ${DESTDIR}/${DISTDIR}/base
876         ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
877             METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \
878             DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \
879             LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs
880 .endif
881         ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
882             ${IMAKEENV} rm -rf ${INSTALLTMP}
883 .if make(distributeworld)
884 .for dist in ${EXTRA_DISTRIBUTIONS}
885         find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete
886 .endfor
887 .if defined(NO_ROOT)
888 .for dist in base ${EXTRA_DISTRIBUTIONS}
889         @# For each file that exists in this dist, print the corresponding
890         @# line from the METALOG.  This relies on the fact that
891         @# a line containing only the filename will sort immediatly before
892         @# the relevant mtree line.
893         cd ${DESTDIR}/${DISTDIR}; \
894         find ./${dist} | sort -u ${METALOG} - | \
895         awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
896         ${DESTDIR}/${DISTDIR}/${dist}.meta
897 .endfor
898 .if ${MK_DEBUG_FILES} != "no"
899 . for dist in base ${EXTRA_DISTRIBUTIONS}
900         @# For each file that exists in this dist, print the corresponding
901         @# line from the METALOG.  This relies on the fact that
902         @# a line containing only the filename will sort immediatly before
903         @# the relevant mtree line.
904         cd ${DESTDIR}/${DISTDIR}; \
905         find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \
906         awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \
907         ${DESTDIR}/${DISTDIR}/${dist}.debug.meta
908 . endfor
909 .endif
910 .endif
911 .endif
912
913 packageworld:
914 .for dist in base ${EXTRA_DISTRIBUTIONS}
915 .if defined(NO_ROOT)
916         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
917             tar cvf - --exclude usr/lib/debug \
918             @${DESTDIR}/${DISTDIR}/${dist}.meta | \
919             ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
920 .else
921         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
922             tar cvf - --exclude usr/lib/debug . | \
923             ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz
924 .endif
925 .endfor
926
927 .if ${MK_DEBUG_FILES} != "no"
928 . for dist in base ${EXTRA_DISTRIBUTIONS}
929 .  if defined(NO_ROOT)
930         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
931             tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \
932             ${XZ_CMD} > ${PACKAGEDIR}/${dist}.debug.txz
933 .  else
934         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
935             tar cvLf - usr/lib/debug | \
936             ${XZ_CMD} > ${PACKAGEDIR}/${dist}-debug.txz
937 .  endif
938 . endfor
939 .endif
940
941 #
942 # reinstall
943 #
944 # If you have a build server, you can NFS mount the source and obj directories
945 # and do a 'make reinstall' on the *client* to install new binaries from the
946 # most recent server build.
947 #
948 reinstall: .MAKE .PHONY
949         @echo "--------------------------------------------------------------"
950         @echo ">>> Making hierarchy"
951         @echo "--------------------------------------------------------------"
952         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \
953             LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy
954         @echo
955         @echo "--------------------------------------------------------------"
956         @echo ">>> Installing everything"
957         @echo "--------------------------------------------------------------"
958         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
959 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
960         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
961 .endif
962
963 redistribute: .MAKE .PHONY
964         @echo "--------------------------------------------------------------"
965         @echo ">>> Distributing everything"
966         @echo "--------------------------------------------------------------"
967         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
968 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
969         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
970             DISTRIBUTION=lib32
971 .endif
972
973 distrib-dirs distribution: .MAKE .PHONY
974         cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
975             ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET}
976
977 #
978 # buildkernel and installkernel
979 #
980 # Which kernels to build and/or install is specified by setting
981 # KERNCONF. If not defined a GENERIC kernel is built/installed.
982 # Only the existing (depending TARGET) config files are used
983 # for building kernels and only the first of these is designated
984 # as the one being installed.
985 #
986 # Note that we have to use TARGET instead of TARGET_ARCH when
987 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
988 # be set to cross-build, we have to make sure TARGET is set
989 # properly.
990
991 .if defined(KERNFAST)
992 NO_KERNELCLEAN= t
993 NO_KERNELCONFIG=        t
994 NO_KERNELDEPEND=        t
995 NO_KERNELOBJ=           t
996 # Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
997 .if !defined(KERNCONF) && ${KERNFAST} != "1"
998 KERNCONF=${KERNFAST}
999 .endif
1000 .endif
1001 .if ${TARGET_ARCH} == "powerpc64"
1002 KERNCONF?=      GENERIC64
1003 .else
1004 KERNCONF?=      GENERIC
1005 .endif
1006 INSTKERNNAME?=  kernel
1007
1008 KERNSRCDIR?=    ${.CURDIR}/sys
1009 KRNLCONFDIR=    ${KERNSRCDIR}/${TARGET}/conf
1010 KRNLOBJDIR=     ${OBJTREE}${KERNSRCDIR}
1011 KERNCONFDIR?=   ${KRNLCONFDIR}
1012
1013 BUILDKERNELS=
1014 INSTALLKERNEL=
1015 NO_INSTALLEXTRAKERNELS?= yes
1016 .if defined(NO_INSTALLKERNEL)
1017 # All of the BUILDKERNELS loops start at index 1.
1018 BUILDKERNELS+= dummy
1019 .endif
1020 .for _kernel in ${KERNCONF}
1021 .if exists(${KERNCONFDIR}/${_kernel})
1022 BUILDKERNELS+=  ${_kernel}
1023 .if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL)
1024 INSTALLKERNEL= ${_kernel}
1025 .endif
1026 .endif
1027 .endfor
1028
1029 ${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1030
1031 #
1032 # buildkernel
1033 #
1034 # Builds all kernels defined by BUILDKERNELS.
1035 #
1036 buildkernel: .MAKE .PHONY
1037 .if empty(BUILDKERNELS:Ndummy)
1038         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1039         false
1040 .endif
1041         @echo
1042 .for _kernel in ${BUILDKERNELS:Ndummy}
1043         @echo "--------------------------------------------------------------"
1044         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1045         @echo "--------------------------------------------------------------"
1046         @echo "===> ${_kernel}"
1047         mkdir -p ${KRNLOBJDIR}
1048 .if !defined(NO_KERNELCONFIG)
1049         @echo
1050         @echo "--------------------------------------------------------------"
1051         @echo ">>> stage 1: configuring the kernel"
1052         @echo "--------------------------------------------------------------"
1053         cd ${KRNLCONFDIR}; \
1054                 PATH=${TMPPATH} \
1055                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1056                         -I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1057 .endif
1058 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1059         @echo
1060         @echo "--------------------------------------------------------------"
1061         @echo ">>> stage 2.1: cleaning up the object tree"
1062         @echo "--------------------------------------------------------------"
1063         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1064 .endif
1065 .if !defined(NO_KERNELOBJ)
1066         @echo
1067         @echo "--------------------------------------------------------------"
1068         @echo ">>> stage 2.2: rebuilding the object tree"
1069         @echo "--------------------------------------------------------------"
1070         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1071 .endif
1072         @echo
1073         @echo "--------------------------------------------------------------"
1074         @echo ">>> stage 2.3: build tools"
1075         @echo "--------------------------------------------------------------"
1076         ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1077 .if !defined(NO_KERNELDEPEND)
1078         @echo
1079         @echo "--------------------------------------------------------------"
1080         @echo ">>> stage 3.1: making dependencies"
1081         @echo "--------------------------------------------------------------"
1082         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
1083 .endif
1084         @echo
1085         @echo "--------------------------------------------------------------"
1086         @echo ">>> stage 3.2: building everything"
1087         @echo "--------------------------------------------------------------"
1088         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1089         @echo "--------------------------------------------------------------"
1090         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1091         @echo "--------------------------------------------------------------"
1092 .endfor
1093
1094 #
1095 # installkernel, etc.
1096 #
1097 # Install the kernel defined by INSTALLKERNEL
1098 #
1099 installkernel installkernel.debug \
1100 reinstallkernel reinstallkernel.debug: _installcheck_kernel
1101 .if !defined(NO_INSTALLKERNEL)
1102 .if empty(INSTALLKERNEL)
1103         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1104         false
1105 .endif
1106         @echo "--------------------------------------------------------------"
1107         @echo ">>> Installing kernel ${INSTALLKERNEL}"
1108         @echo "--------------------------------------------------------------"
1109         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1110             ${CROSSENV} PATH=${TMPPATH} \
1111             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1112 .endif
1113 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1114 .for _kernel in ${BUILDKERNELS:[2..-1]}
1115         @echo "--------------------------------------------------------------"
1116         @echo ">>> Installing kernel ${_kernel}"
1117         @echo "--------------------------------------------------------------"
1118         cd ${KRNLOBJDIR}/${_kernel}; \
1119             ${CROSSENV} PATH=${TMPPATH} \
1120             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1121 .endfor
1122 .endif
1123
1124 distributekernel distributekernel.debug:
1125 .if !defined(NO_INSTALLKERNEL)
1126 .if empty(INSTALLKERNEL)
1127         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1128         false
1129 .endif
1130         mkdir -p ${DESTDIR}/${DISTDIR}
1131 .if defined(NO_ROOT)
1132         echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1133 .endif
1134         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1135             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1136             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1137             DESTDIR=${INSTALL_DDIR}/kernel \
1138             ${.TARGET:S/distributekernel/install/}
1139 .if defined(NO_ROOT)
1140         sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1141             ${DESTDIR}/${DISTDIR}/kernel.meta
1142 .endif
1143 .endif
1144 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1145 .for _kernel in ${BUILDKERNELS:[2..-1]}
1146 .if defined(NO_ROOT)
1147         echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1148 .endif
1149         cd ${KRNLOBJDIR}/${_kernel}; \
1150             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1151             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1152             KERNEL=${INSTKERNNAME}.${_kernel} \
1153             DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1154             ${.TARGET:S/distributekernel/install/}
1155 .if defined(NO_ROOT)
1156         sed -e 's|^./kernel|.|' \
1157             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1158             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1159 .endif
1160 .endfor
1161 .endif
1162
1163 packagekernel:
1164 .if defined(NO_ROOT)
1165 .if !defined(NO_INSTALLKERNEL)
1166         cd ${DESTDIR}/${DISTDIR}/kernel; \
1167             tar cvf - @${DESTDIR}/${DISTDIR}/kernel.meta | \
1168             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1169 .endif
1170 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1171 .for _kernel in ${BUILDKERNELS:[2..-1]}
1172         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1173             tar cvf - @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1174             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1175 .endfor
1176 .endif
1177 .else
1178 .if !defined(NO_INSTALLKERNEL)
1179         cd ${DESTDIR}/${DISTDIR}/kernel; \
1180             tar cvf - . | \
1181             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1182 .endif
1183 .if ${BUILDKERNELS:[#]} > 1 && !defined(NO_INSTALLEXTRAKERNELS)
1184 .for _kernel in ${BUILDKERNELS:[2..-1]}
1185         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1186             tar cvf - . | \
1187             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1188 .endfor
1189 .endif
1190 .endif
1191
1192 #
1193 # doxygen
1194 #
1195 # Build the API documentation with doxygen
1196 #
1197 doxygen: .PHONY
1198         @if [ ! -x `/usr/bin/which doxygen` ]; then \
1199                 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1200                 exit 1; \
1201         fi
1202         ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1203
1204 #
1205 # update
1206 #
1207 # Update the source tree(s), by running svn/svnup to update to the
1208 # latest copy.
1209 #
1210 update:
1211 .if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1212         @echo "--------------------------------------------------------------"
1213         @echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1214         @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1215         @echo "--------------------------------------------------------------"
1216         @exit 1
1217 .endif
1218 .if defined(SVN_UPDATE)
1219         @echo "--------------------------------------------------------------"
1220         @echo ">>> Updating ${.CURDIR} using Subversion"
1221         @echo "--------------------------------------------------------------"
1222         @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1223 .endif
1224
1225 #
1226 # ------------------------------------------------------------------------
1227 #
1228 # From here onwards are utility targets used by the 'make world' and
1229 # related targets.  If your 'world' breaks, you may like to try to fix
1230 # the problem and manually run the following targets to attempt to
1231 # complete the build.  Beware, this is *not* guaranteed to work, you
1232 # need to have a pretty good grip on the current state of the system
1233 # to attempt to manually finish it.  If in doubt, 'make world' again.
1234 #
1235
1236 #
1237 # legacy: Build compatibility shims for the next three targets
1238 #
1239 legacy:
1240 .if ${BOOTSTRAPPING} < 700055 && ${BOOTSTRAPPING} != 0
1241         @echo "ERROR: Source upgrades from versions prior to 7.0 not supported."; \
1242         false
1243 .endif
1244 .for _tool in tools/build
1245         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1246             cd ${.CURDIR}/${_tool}; \
1247             ${MAKE} DIRPRFX=${_tool}/ obj; \
1248             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1249             ${MAKE} DIRPRFX=${_tool}/ depend; \
1250             ${MAKE} DIRPRFX=${_tool}/ all; \
1251             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1252 .endfor
1253
1254 #
1255 # bootstrap-tools: Build tools needed for compatibility
1256 #
1257 _bt=            _bootstrap-tools        
1258
1259 .if ${MK_GAMES} != "no"
1260 _strfile=       games/fortune/strfile
1261 .endif
1262
1263 .if ${MK_CXX} != "no"
1264 _gperf=         gnu/usr.bin/gperf
1265 .endif
1266
1267 .if ${MK_GROFF} != "no"
1268 _groff=         gnu/usr.bin/groff
1269 .endif
1270
1271 .if ${MK_VT} != "no"
1272 _vtfontcvt=     usr.bin/vtfontcvt
1273 .endif
1274
1275 .if ${BOOTSTRAPPING} < 800022
1276 _ar=            usr.bin/ar
1277 .endif
1278
1279 .if ${BOOTSTRAPPING} < 800013
1280 _mklocale=      usr.bin/mklocale
1281 .endif
1282
1283 .if ${BOOTSTRAPPING} < 900002
1284 _sed=           usr.bin/sed
1285 .endif
1286
1287 .if ${BOOTSTRAPPING} < 1000033
1288 _m4=            usr.bin/m4
1289 _lex=           usr.bin/lex
1290
1291 ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1292 .endif
1293
1294 .if ${BOOTSTRAPPING} < 1001506
1295 _yacc=          lib/liby \
1296                 usr.bin/yacc
1297
1298 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1299 .endif
1300
1301 # crunchgen broken on head with STRIP= for a while, even
1302 # when building stable binaries, so bootstrap there too.
1303 # r284356 to r285986 is the broken range.
1304 .if ${BOOTSTRAPPING} < 1000014 || \
1305         (${BOOTSTRAPPING} > 1100076 && ${BOOTSTRAPPING} < 1100078)
1306 _crunch=        usr.sbin/crunch
1307 .endif
1308
1309 .if ${BOOTSTRAPPING} < 1000026
1310 _nmtree=        lib/libnetbsd \
1311                 usr.sbin/nmtree
1312
1313 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1314 .endif
1315
1316 .if ${BOOTSTRAPPING} < 1000027
1317 _cat=           bin/cat
1318 .endif
1319
1320 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1321 _awk=           usr.bin/awk
1322 .endif
1323
1324 .if ${MK_BSNMP} != "no"
1325 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
1326 .endif
1327
1328 .if ${MK_CLANG} != "no"
1329 _clang_tblgen= \
1330         lib/clang/libllvmsupport \
1331         lib/clang/libllvmtablegen \
1332         usr.bin/clang/tblgen \
1333         usr.bin/clang/clang-tblgen
1334
1335 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1336 ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1337 .endif
1338
1339 # dtrace tools are required for older bootstrap env and cross-build
1340 .if ${MK_CDDL} != "no" && \
1341     ((${BOOTSTRAPPING} < 1000034 && \
1342           !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \
1343       || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH}))
1344 _dtrace_tools= cddl/lib/libctf lib/libelf \
1345     lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1346
1347 ${_bt}-cddl/usr.bin/ctfconvert: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1348 ${_bt}-cddl/usr.bin/ctfmerge: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1349 .endif
1350
1351 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1352 # request it.
1353 _dtc= usr.bin/dtc
1354 .if ${MK_GPL_DTC} != "no"
1355 _dtc= gnu/usr.bin/dtc
1356 .endif
1357
1358 .if ${MK_KERBEROS} != "no"
1359 _kerberos5_bootstrap_tools= \
1360         kerberos5/tools/make-roken \
1361         kerberos5/lib/libroken \
1362         kerberos5/lib/libvers \
1363         kerberos5/tools/asn1_compile \
1364         kerberos5/tools/slc \
1365         usr.bin/compile_et
1366
1367 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1368 .endif
1369
1370 .if ${_BOOTSTRAP_MAKEINFO} != "no"
1371 _texinfo=       gnu/usr.bin/texinfo/libtxi \
1372                 gnu/usr.bin/texinfo/makeinfo \
1373                 gnu/usr.bin/texinfo/install-info
1374
1375 ${_bt}-gnu/usr.bin/texinfo/install-info: ${_bt}-gnu/usr.bin/texinfo/libtxi
1376 ${_bt}-gnu/usr.bin/texinfo/makeinfo: ${_bt}-gnu/usr.bin/texinfo/libtxi
1377 .endif
1378 bootstrap-tools: .PHONY
1379
1380 #       Please document (add comment) why something is in 'bootstrap-tools'.
1381 #       Try to bound the building of the bootstrap-tool to just the
1382 #       FreeBSD versions that need the tool built at this stage of the build.
1383 .for _tool in \
1384     ${_clang_tblgen} \
1385     ${_kerberos5_bootstrap_tools} \
1386     ${_dtrace_tools} \
1387     ${_strfile} \
1388     ${_gperf} \
1389     ${_groff} \
1390     ${_ar} \
1391     ${_dtc} \
1392     ${_awk} \
1393     ${_cat} \
1394     usr.bin/lorder \
1395     usr.bin/makewhatis \
1396     ${_mklocale} \
1397     usr.bin/rpcgen \
1398     ${_sed} \
1399     ${_yacc} \
1400     ${_m4} \
1401     ${_lex} \
1402     usr.bin/xinstall \
1403     ${_gensnmptree} \
1404     usr.sbin/config \
1405     ${_crunch} \
1406     ${_nmtree} \
1407     ${_texinfo} \
1408     ${_vtfontcvt}
1409 ${_bt}-${_tool}: .PHONY .MAKE
1410         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1411                 cd ${.CURDIR}/${_tool}; \
1412                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1413                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1414                 ${MAKE} DIRPRFX=${_tool}/ all; \
1415                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1416
1417 bootstrap-tools: ${_bt}-${_tool}
1418 .endfor
1419
1420 #
1421 # build-tools: Build special purpose build tools
1422 #
1423 .if !defined(NO_SHARE)
1424 _share= share/syscons/scrnmaps
1425 .endif
1426
1427 .if ${MK_GCC} != "no"
1428 _gcc_tools= gnu/usr.bin/cc/cc_tools
1429 .endif
1430
1431 .if ${MK_RESCUE} != "no"
1432 _rescue= rescue/rescue
1433 .endif
1434
1435 build-tools: .MAKE
1436 .for _tool in \
1437     bin/csh \
1438     bin/sh \
1439     ${_rescue} \
1440     ${LOCAL_TOOL_DIRS} \
1441     lib/ncurses/ncurses \
1442     lib/ncurses/ncursesw \
1443     ${_share} \
1444     usr.bin/awk \
1445     lib/libmagic \
1446     usr.bin/mkesdb_static \
1447     usr.bin/mkcsmapper_static \
1448     usr.bin/vi/catalog
1449         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1450                 cd ${.CURDIR}/${_tool}; \
1451                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1452                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1453 .endfor
1454 .for _tool in \
1455     ${_gcc_tools}
1456         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1457                 cd ${.CURDIR}/${_tool}; \
1458                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1459                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1460                 ${MAKE} DIRPRFX=${_tool}/ all
1461 .endfor
1462
1463
1464 #
1465 # kernel-tools: Build kernel-building tools
1466 #
1467 kernel-tools:
1468         mkdir -p ${MAKEOBJDIRPREFIX}/usr
1469         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1470             -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1471
1472 #
1473 # cross-tools: Build cross-building tools
1474 #
1475 .if !defined(TARGET_ARCH) && defined(XDEV_ARCH)
1476 TARGET_ARCH=    ${XDEV_ARCH}
1477 .endif
1478 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1479 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1480 _btxld=         usr.sbin/btxld
1481 .endif
1482 .endif
1483 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1484 .if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1485 _crunchide=     usr.sbin/crunch/crunchide
1486 .endif
1487 .if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1488 _kgzip=         usr.sbin/kgzip
1489 .endif
1490 .endif
1491
1492 .if ${XAS:M/*} == "" && ${MK_BINUTILS} != "no"
1493 _binutils=      gnu/usr.bin/binutils
1494 .endif
1495
1496 # If an full path to an external cross compiler is given, don't build
1497 # a cross compiler.
1498 .if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1499 .if ${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang"
1500 _clang=         usr.bin/clang
1501 _clang_libs=    lib/clang
1502 .else
1503 _cc=            gnu/usr.bin/cc
1504 .endif
1505
1506 # The boot2 for pc98 requires gcc.
1507 .if ${TARGET} == "pc98"
1508 _cc=            gnu/usr.bin/cc
1509 .endif
1510 .endif
1511
1512 cross-tools: .MAKE .PHONY
1513 .for _tool in \
1514     ${_clang_libs} \
1515     ${_clang} \
1516     ${_binutils} \
1517     ${_cc} \
1518     usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1519     ${_btxld} \
1520     ${_crunchide} \
1521     ${_kgzip}
1522         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1523                 cd ${.CURDIR}/${_tool}; \
1524                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1525                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1526                 ${MAKE} DIRPRFX=${_tool}/ all; \
1527                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1528 .endfor
1529
1530 NXBENV=         MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1531                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
1532                 VERSION="${VERSION}"
1533 NXBMAKE=        ${NXBENV} ${MAKE} \
1534                 TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \
1535                 CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \
1536                 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1537                 -DWITHOUT_GDB -DNO_TESTS \
1538                 SSP_CFLAGS= \
1539                 -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
1540                 -DNO_PIC -DNO_PROFILE -DNO_SHARED \
1541                 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
1542                 -DWITHOUT_CLANG_FULL -DWITHOUT_LLDB
1543
1544 native-xtools: .PHONY
1545         mkdir -p ${OBJTREE}/nxb-bin/bin
1546         mkdir -p ${OBJTREE}/nxb-bin/sbin
1547         mkdir -p ${OBJTREE}/nxb-bin/usr
1548         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1549             -p ${OBJTREE}/nxb-bin/usr >/dev/null
1550         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1551             -p ${OBJTREE}/nxb-bin/usr/include >/dev/null
1552 .for _tool in \
1553     bin/cat \
1554     bin/chmod \
1555     bin/cp \
1556     bin/csh \
1557     bin/echo \
1558     bin/expr \
1559     bin/hostname \
1560     bin/ln \
1561     bin/ls \
1562     bin/mkdir \
1563     bin/mv \
1564     bin/ps \
1565     bin/realpath \
1566     bin/rm \
1567     bin/rmdir \
1568     bin/sh \
1569     bin/sleep \
1570     ${_clang_tblgen} \
1571     usr.bin/ar \
1572     ${_binutils} \
1573     ${_cc} \
1574     ${_gcc_tools} \
1575     ${_clang_libs} \
1576     ${_clang} \
1577     sbin/md5 \
1578     sbin/sysctl \
1579     gnu/usr.bin/diff \
1580     usr.bin/awk \
1581     usr.bin/basename \
1582     usr.bin/bmake \
1583     usr.bin/bzip2 \
1584     usr.bin/cmp \
1585     usr.bin/dirname \
1586     usr.bin/env \
1587     usr.bin/fetch \
1588     usr.bin/find \
1589     usr.bin/grep \
1590     usr.bin/gzip \
1591     usr.bin/id \
1592     usr.bin/lex \
1593     usr.bin/lorder \
1594     usr.bin/mktemp \
1595     usr.bin/mt \
1596     usr.bin/patch \
1597     usr.bin/sed \
1598     usr.bin/sort \
1599     usr.bin/tar \
1600     usr.bin/touch \
1601     usr.bin/tr \
1602     usr.bin/true \
1603     usr.bin/uniq \
1604     usr.bin/unzip \
1605     usr.bin/xargs \
1606     usr.bin/xinstall \
1607     usr.bin/xz \
1608     usr.bin/yacc \
1609     usr.sbin/chown
1610         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1611                 cd ${.CURDIR}/${_tool}; \
1612                 ${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1613                 ${NXBMAKE} DIRPRFX=${_tool}/ depend; \
1614                 ${NXBMAKE} DIRPRFX=${_tool}/ all; \
1615                 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install
1616 .endfor
1617
1618 #
1619 # hierarchy - ensure that all the needed directories are present
1620 #
1621 hierarchy hier: .MAKE .PHONY
1622         ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1623
1624 #
1625 # libraries - build all libraries, and install them under ${DESTDIR}.
1626 #
1627 # The list of libraries with dependents (${_prebuild_libs}) and their
1628 # interdependencies (__L) are built automatically by the
1629 # ${.CURDIR}/tools/make_libdeps.sh script.
1630 #
1631 libraries: .MAKE .PHONY
1632         ${_+_}cd ${.CURDIR}; \
1633             ${MAKE} -f Makefile.inc1 _prereq_libs; \
1634             ${MAKE} -f Makefile.inc1 _startup_libs; \
1635             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1636             ${MAKE} -f Makefile.inc1 _generic_libs
1637
1638 #
1639 # static libgcc.a prerequisite for shared libc
1640 #
1641 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1642
1643 # These dependencies are not automatically generated:
1644 #
1645 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1646 # all shared libraries for ELF.
1647 #
1648 _startup_libs=  gnu/lib/csu
1649 _startup_libs+= lib/csu
1650 _startup_libs+= gnu/lib/libgcc
1651 _startup_libs+= lib/libcompiler_rt
1652 _startup_libs+= lib/libc
1653 _startup_libs+= lib/libc_nonshared
1654 .if ${MK_LIBCPLUSPLUS} != "no"
1655 _startup_libs+= lib/libcxxrt
1656 .endif
1657
1658 gnu/lib/libgcc__L: lib/libc__L
1659 gnu/lib/libgcc__L: lib/libc_nonshared__L
1660 .if ${MK_LIBCPLUSPLUS} != "no"
1661 lib/libcxxrt__L: gnu/lib/libgcc__L
1662 .endif
1663
1664 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1665                 ${_kerberos5_lib_libhdb} \
1666                 ${_kerberos5_lib_libheimbase} \
1667                 ${_kerberos5_lib_libheimntlm} \
1668                 ${_kerberos5_lib_libheimsqlite} \
1669                 ${_kerberos5_lib_libheimipcc} \
1670                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1671                 ${_kerberos5_lib_libroken} \
1672                 ${_kerberos5_lib_libwind} \
1673                 ${_lib_atf} \
1674                 lib/libbz2 ${_libcom_err} lib/libcrypt \
1675                 lib/libelf lib/libexpat \
1676                 lib/libfigpar \
1677                 ${_lib_libgssapi} ${_lib_libipx} \
1678                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1679                 lib/ncurses/ncurses lib/ncurses/ncursesw \
1680                 lib/libopie lib/libpam ${_lib_libthr} \
1681                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
1682                 lib/libgeom \
1683                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1684                 ${_cddl_lib_libuutil} \
1685                 ${_cddl_lib_libavl} \
1686                 ${_cddl_lib_libzfs_core} \
1687                 lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1688                 ${_secure_lib_libcrypto} ${_lib_libldns} \
1689                 ${_secure_lib_libssh} ${_secure_lib_libssl} \
1690                 gnu/lib/libdialog
1691 .if ${MK_GNUCXX} != no
1692 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1693 gnu/lib/libstdc++__L: lib/msun__L
1694 .endif
1695
1696 .if ${MK_LIBCPLUSPLUS} != "no"
1697 _prebuild_libs+= lib/libc++
1698 .endif
1699
1700 lib/libgeom__L: lib/libexpat__L
1701
1702 .if defined(WITH_ATF) || ${MK_TESTS} != "no"
1703 .if !defined(WITH_ATF)
1704 # Ensure that the ATF libraries will be built during make libraries, even
1705 # though they will have -DNO_TESTS
1706 MAKE+=          -DWITH_ATF
1707 .endif
1708 _lib_atf=       lib/atf
1709 .if ${MK_GNUCXX} != no
1710 lib/atf__L: gnu/lib/libstdc++__L
1711 .endif
1712 .if ${MK_LIBCPLUSPLUS} != "no"
1713 lib/atf__L: lib/libc++__L lib/msun__L
1714 .endif
1715 .endif
1716
1717 .if ${MK_LIBTHR} != "no"
1718 _lib_libthr=    lib/libthr
1719 .endif
1720
1721 .if ${MK_RADIUS_SUPPORT} != "no"
1722 _lib_libradius= lib/libradius
1723 .endif
1724
1725 .if ${MK_OFED} != "no"
1726 _ofed_lib=      contrib/ofed/usr.lib/
1727 .endif
1728
1729 lib/liblzma__L: lib/libthr__L
1730
1731 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1732 .for _DIR in ${LOCAL_LIB_DIRS}
1733 .if exists(${.CURDIR}/${_DIR}/Makefile)
1734 _generic_libs+= ${_DIR}
1735 .endif
1736 .endfor
1737
1738 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1739
1740 .if ${MK_CDDL} != "no"
1741 _cddl_lib_libumem= cddl/lib/libumem
1742 _cddl_lib_libnvpair= cddl/lib/libnvpair
1743 _cddl_lib_libavl= cddl/lib/libavl
1744 _cddl_lib_libuutil= cddl/lib/libuutil
1745 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
1746 _cddl_lib= cddl/lib
1747 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1748 cddl/lib/libzfs__L: lib/libgeom__L
1749 .endif
1750
1751 .if ${MK_CRYPT} != "no"
1752 .if ${MK_OPENSSL} != "no"
1753 _secure_lib_libcrypto= secure/lib/libcrypto
1754 _secure_lib_libssl= secure/lib/libssl
1755 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1756 .if ${MK_LDNS} != "no"
1757 _lib_libldns= lib/libldns
1758 lib/libldns__L: secure/lib/libcrypto__L
1759 .endif
1760 .if ${MK_OPENSSH} != "no"
1761 _secure_lib_libssh= secure/lib/libssh
1762 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1763 .if ${MK_LDNS} != "no"
1764 secure/lib/libssh__L: lib/libldns__L
1765 .endif
1766 .if ${MK_KERBEROS_SUPPORT} != "no"
1767 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1768     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1769     lib/libmd__L kerberos5/lib/libroken__L
1770 .endif
1771 .endif
1772 .endif
1773 _secure_lib=    secure/lib
1774 .endif
1775
1776 .if ${MK_KERBEROS} != "no"
1777 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1778 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1779     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1780     kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1781 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1782     kerberos5/lib/libroken__L lib/libcom_err__L
1783 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1784     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1785 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1786     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1787     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1788     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1789 kerberos5/lib/libroken__L: lib/libcrypt__L
1790 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1791 kerberos5/lib/libheimbase__L: lib/libthr__L
1792 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1793 kerberos5/lib/libheimsqlite__L: lib/libthr__L
1794 .endif
1795
1796 .if ${MK_GSSAPI} != "no"
1797 _lib_libgssapi= lib/libgssapi
1798 .endif
1799
1800 .if ${MK_IPX} != "no"
1801 _lib_libipx=    lib/libipx
1802 .endif
1803
1804 .if ${MK_KERBEROS} != "no"
1805 _kerberos5_lib= kerberos5/lib
1806 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1807 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1808 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1809 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1810 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1811 _kerberos5_lib_libroken= kerberos5/lib/libroken
1812 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1813 _kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1814 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1815 _kerberos5_lib_libwind= kerberos5/lib/libwind
1816 _libcom_err= lib/libcom_err
1817 .endif
1818
1819 .if ${MK_NIS} != "no"
1820 _lib_libypclnt= lib/libypclnt
1821 .endif
1822
1823 .if ${MK_OPENSSL} == "no"
1824 lib/libradius__L: lib/libmd__L
1825 .endif
1826
1827 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
1828
1829 .for _lib in ${_prereq_libs}
1830 ${_lib}__PL: .PHONY .MAKE
1831 .if exists(${.CURDIR}/${_lib})
1832         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1833                 cd ${.CURDIR}/${_lib}; \
1834                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj; \
1835                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend; \
1836                 ${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1837                     DIRPRFX=${_lib}/ all; \
1838                 ${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1839                     DIRPRFX=${_lib}/ install
1840 .endif
1841 .endfor
1842
1843 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1844 ${_lib}__L: .PHONY .MAKE
1845 .if exists(${.CURDIR}/${_lib})
1846         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1847                 cd ${.CURDIR}/${_lib}; \
1848                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj; \
1849                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend; \
1850                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ all; \
1851                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ install
1852 .endif
1853 .endfor
1854
1855 # libpam is special: we need to build static PAM modules before
1856 # static PAM library, and dynamic PAM library before dynamic PAM
1857 # modules.
1858 lib/libpam__L: .PHONY .MAKE
1859         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1860                 cd ${.CURDIR}/lib/libpam; \
1861                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ obj; \
1862                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ depend; \
1863                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1864                     -D_NO_LIBPAM_SO_YET all; \
1865                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1866                     -D_NO_LIBPAM_SO_YET install
1867
1868 _prereq_libs: ${_prereq_libs:S/$/__PL/}
1869 _startup_libs: ${_startup_libs:S/$/__L/}
1870 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1871 _generic_libs: ${_generic_libs:S/$/__L/}
1872
1873 .for __target in all clean cleandepend cleandir depend includes obj
1874 .for entry in ${SUBDIR}
1875 ${entry}.${__target}__D: .PHONY .MAKE
1876         ${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1877                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1878                 edir=${entry}.${MACHINE_ARCH}; \
1879                 cd ${.CURDIR}/$${edir}; \
1880         else \
1881                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1882                 edir=${entry}; \
1883                 cd ${.CURDIR}/$${edir}; \
1884         fi; \
1885         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1886 .endfor
1887 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1888 .endfor
1889
1890 .include <bsd.subdir.mk>
1891
1892 .if make(check-old) || make(check-old-dirs) || \
1893     make(check-old-files) || make(check-old-libs) || \
1894     make(delete-old) || make(delete-old-dirs) || \
1895     make(delete-old-files) || make(delete-old-libs)
1896
1897 #
1898 # check for / delete old files section
1899 #
1900
1901 .include "ObsoleteFiles.inc"
1902
1903 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1904 else you can not start such an application. Consult UPDATING for more \
1905 information regarding how to cope with the removal/revision bump of a \
1906 specific library."
1907
1908 .if !defined(BATCH_DELETE_OLD_FILES)
1909 RM_I=-i
1910 .else
1911 RM_I=-v
1912 .endif
1913
1914 delete-old-files:
1915         @echo ">>> Removing old files (only deletes safe to delete libs)"
1916 # Ask for every old file if the user really wants to remove it.
1917 # It's annoying, but better safe than sorry.
1918 # NB: We cannot pass the list of OLD_FILES as a parameter because the
1919 # argument list will get too long. Using .for/.endfor make "loops" will make
1920 # the Makefile parser segfault.
1921         @exec 3<&0; \
1922         cd ${.CURDIR}; \
1923         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1924             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1925         while read file; do \
1926                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1927                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1928                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1929                 fi; \
1930                 for ext in debug symbols; do \
1931                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1932                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1933                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1934                               <&3; \
1935                   fi; \
1936                 done; \
1937         done
1938 # Remove catpages without corresponding manpages.
1939         @exec 3<&0; \
1940         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1941         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1942         while read catpage; do \
1943                 read manpage; \
1944                 if [ ! -e "$${manpage}" ]; then \
1945                         rm ${RM_I} $${catpage} <&3; \
1946                 fi; \
1947         done
1948         @echo ">>> Old files removed"
1949
1950 check-old-files:
1951         @echo ">>> Checking for old files"
1952         @cd ${.CURDIR}; \
1953         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1954             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1955         while read file; do \
1956                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1957                         echo "${DESTDIR}/$${file}"; \
1958                 fi; \
1959                 for ext in debug symbols; do \
1960                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1961                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
1962                   fi; \
1963                 done; \
1964         done
1965 # Check for catpages without corresponding manpages.
1966         @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1967         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1968         while read catpage; do \
1969                 read manpage; \
1970                 if [ ! -e "$${manpage}" ]; then \
1971                         echo $${catpage}; \
1972                 fi; \
1973         done
1974
1975 delete-old-libs:
1976         @echo ">>> Removing old libraries"
1977         @echo "${OLD_LIBS_MESSAGE}" | fmt
1978         @exec 3<&0; \
1979         cd ${.CURDIR}; \
1980         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1981             -V OLD_LIBS | xargs -n1 | \
1982         while read file; do \
1983                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1984                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1985                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1986                 fi; \
1987                 for ext in debug symbols; do \
1988                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1989                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1990                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1991                               <&3; \
1992                   fi; \
1993                 done; \
1994         done
1995         @echo ">>> Old libraries removed"
1996
1997 check-old-libs:
1998         @echo ">>> Checking for old libraries"
1999         @cd ${.CURDIR}; \
2000         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2001             -V OLD_LIBS | xargs -n1 | \
2002         while read file; do \
2003                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
2004                         echo "${DESTDIR}/$${file}"; \
2005                 fi; \
2006                 for ext in debug symbols; do \
2007                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
2008                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
2009                   fi; \
2010                 done; \
2011         done
2012
2013 delete-old-dirs:
2014         @echo ">>> Removing old directories"
2015         @cd ${.CURDIR}; \
2016         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2017             -V OLD_DIRS | xargs -n1 | sort -r | \
2018         while read dir; do \
2019                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2020                         rmdir -v "${DESTDIR}/$${dir}" || true; \
2021                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2022                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2023                 fi; \
2024         done
2025         @echo ">>> Old directories removed"
2026
2027 check-old-dirs:
2028         @echo ">>> Checking for old directories"
2029         @cd ${.CURDIR}; \
2030         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2031             -V OLD_DIRS | xargs -n1 | \
2032         while read dir; do \
2033                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2034                         echo "${DESTDIR}/$${dir}"; \
2035                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2036                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2037                 fi; \
2038         done
2039
2040 delete-old: delete-old-files delete-old-dirs
2041         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2042
2043 check-old: check-old-files check-old-libs check-old-dirs
2044         @echo "To remove old files and directories run '${MAKE} delete-old'."
2045         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2046
2047 .endif
2048
2049 #
2050 # showconfig - show build configuration.
2051 #
2052 showconfig:
2053         @${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
2054
2055 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2056 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2057
2058 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2059 .if exists(${KERNCONFDIR}/${KERNCONF})
2060 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2061         '${KERNCONFDIR}/${KERNCONF}' ; echo
2062 .endif
2063 .endif
2064
2065 .endif
2066
2067 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2068 DTBOUTPUTPATH= ${.CURDIR}
2069 .endif
2070
2071 #
2072 # Build 'standalone' Device Tree Blob
2073 #
2074 builddtb:
2075         @PATH=${TMPPATH} MACHINE=${TARGET} \
2076         ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2077             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2078
2079 ###############
2080
2081 .if defined(XDEV) && defined(XDEV_ARCH)
2082
2083 .if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
2084 XDEV_CPUTYPE?=${CPUTYPE}
2085 .else
2086 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2087 .endif
2088
2089 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
2090         -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
2091         -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_TESTS -DNO_WARNS \
2092         TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
2093         CPUTYPE=${XDEV_CPUTYPE}
2094
2095 XDDIR=${XDEV_ARCH}-freebsd
2096 XDTP?=/usr/${XDDIR}
2097 .if ${XDTP:N/*}
2098 .error XDTP variable should be an absolute path
2099 .endif
2100
2101 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2102         INSTALL="sh ${.CURDIR}/tools/install.sh"
2103 CDENV= ${CDBENV} \
2104         _SHLIBDIRPREFIX=${XDDESTDIR} \
2105         TOOLS_PREFIX=${XDTP}
2106 CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2107         --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2108         -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2109 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2110         CPP="${CPP} ${CD2CFLAGS}" \
2111         MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
2112
2113 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2114 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2115 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2116 XDDESTDIR=${DESTDIR}/${XDTP}
2117 .if !defined(OSREL)
2118 OSREL!= uname -r | sed -e 's/[-(].*//'
2119 .endif
2120
2121 .ORDER: xdev-build xdev-install
2122 xdev: xdev-build xdev-install
2123
2124 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2125 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2126
2127 _xb-worldtmp: .PHONY
2128         mkdir -p ${CDTMP}/usr
2129         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2130             -p ${CDTMP}/usr >/dev/null
2131
2132 _xb-bootstrap-tools: .PHONY
2133 .for _tool in \
2134     ${_clang_tblgen}
2135         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2136         cd ${.CURDIR}/${_tool}; \
2137         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2138         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2139         ${CDMAKE} DIRPRFX=${_tool}/ all; \
2140         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2141 .endfor
2142
2143 _xb-build-tools: .PHONY
2144         ${_+_}@cd ${.CURDIR}; \
2145         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2146
2147 _xb-cross-tools: .PHONY
2148 .for _tool in \
2149     ${_binutils} \
2150     usr.bin/ar \
2151     ${_clang_libs} \
2152     ${_clang} \
2153     ${_cc}
2154         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2155         cd ${.CURDIR}/${_tool}; \
2156         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2157         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2158         ${CDMAKE} DIRPRFX=${_tool}/ all
2159 .endfor
2160
2161 _xi-mtree: .PHONY
2162         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2163         mkdir -p ${XDDESTDIR}
2164         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2165             -p ${XDDESTDIR} >/dev/null
2166         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2167             -p ${XDDESTDIR}/usr >/dev/null
2168         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2169             -p ${XDDESTDIR}/usr/include >/dev/null
2170 .if ${MK_TESTS} != "no"
2171         mkdir -p ${XDDESTDIR}${TESTSBASE}
2172         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2173             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2174 .endif
2175
2176 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
2177 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
2178
2179 _xi-cross-tools: .PHONY
2180         @echo "_xi-cross-tools"
2181 .for _tool in \
2182     ${_binutils} \
2183     usr.bin/ar \
2184     ${_clang_libs} \
2185     ${_clang} \
2186     ${_cc}
2187         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2188         cd ${.CURDIR}/${_tool}; \
2189         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2190 .endfor
2191
2192 _xi-includes: .PHONY
2193         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
2194                 DESTDIR=${XDDESTDIR}
2195
2196 _xi-libraries: .PHONY
2197         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2198                 DESTDIR=${XDDESTDIR}
2199
2200 _xi-links: .PHONY
2201         ${_+_}cd ${XDDESTDIR}/usr/bin; \
2202        mkdir -p ../../../../usr/bin; \
2203                 for i in *; do \
2204                         ln -sf ../../${XDTP}/usr/bin/$$i \
2205                             ../../../../usr/bin/${XDDIR}-$$i; \
2206                         ln -sf ../../${XDTP}/usr/bin/$$i \
2207                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2208                 done
2209 .else
2210 xdev xdev-build xdev-install:
2211         @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
2212 .endif