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