]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - Makefile.inc1
MFC r291610:
[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 # 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 .for _kernel in ${KERNCONF}
1016 .if exists(${KERNCONFDIR}/${_kernel})
1017 BUILDKERNELS+=  ${_kernel}
1018 .if empty(INSTALLKERNEL)
1019 INSTALLKERNEL= ${_kernel}
1020 .endif
1021 .endif
1022 .endfor
1023
1024 ${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY
1025
1026 #
1027 # buildkernel
1028 #
1029 # Builds all kernels defined by BUILDKERNELS.
1030 #
1031 buildkernel: .MAKE .PHONY
1032 .if empty(BUILDKERNELS)
1033         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
1034         false
1035 .endif
1036         @echo
1037 .for _kernel in ${BUILDKERNELS}
1038         @echo "--------------------------------------------------------------"
1039         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
1040         @echo "--------------------------------------------------------------"
1041         @echo "===> ${_kernel}"
1042         mkdir -p ${KRNLOBJDIR}
1043 .if !defined(NO_KERNELCONFIG)
1044         @echo
1045         @echo "--------------------------------------------------------------"
1046         @echo ">>> stage 1: configuring the kernel"
1047         @echo "--------------------------------------------------------------"
1048         cd ${KRNLCONFDIR}; \
1049                 PATH=${TMPPATH} \
1050                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
1051                         -I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}'
1052 .endif
1053 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
1054         @echo
1055         @echo "--------------------------------------------------------------"
1056         @echo ">>> stage 2.1: cleaning up the object tree"
1057         @echo "--------------------------------------------------------------"
1058         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
1059 .endif
1060 .if !defined(NO_KERNELOBJ)
1061         @echo
1062         @echo "--------------------------------------------------------------"
1063         @echo ">>> stage 2.2: rebuilding the object tree"
1064         @echo "--------------------------------------------------------------"
1065         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
1066 .endif
1067         @echo
1068         @echo "--------------------------------------------------------------"
1069         @echo ">>> stage 2.3: build tools"
1070         @echo "--------------------------------------------------------------"
1071         ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools
1072 .if !defined(NO_KERNELDEPEND)
1073         @echo
1074         @echo "--------------------------------------------------------------"
1075         @echo ">>> stage 3.1: making dependencies"
1076         @echo "--------------------------------------------------------------"
1077         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
1078 .endif
1079         @echo
1080         @echo "--------------------------------------------------------------"
1081         @echo ">>> stage 3.2: building everything"
1082         @echo "--------------------------------------------------------------"
1083         ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
1084         @echo "--------------------------------------------------------------"
1085         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
1086         @echo "--------------------------------------------------------------"
1087 .endfor
1088
1089 #
1090 # installkernel, etc.
1091 #
1092 # Install the kernel defined by INSTALLKERNEL
1093 #
1094 installkernel installkernel.debug \
1095 reinstallkernel reinstallkernel.debug: _installcheck_kernel
1096 .if empty(INSTALLKERNEL)
1097         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1098         false
1099 .endif
1100         @echo "--------------------------------------------------------------"
1101         @echo ">>> Installing kernel ${INSTALLKERNEL}"
1102         @echo "--------------------------------------------------------------"
1103         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1104             ${CROSSENV} PATH=${TMPPATH} \
1105             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
1106 .if ${BUILDKERNELS:[#]} > 1
1107 .for _kernel in ${BUILDKERNELS:[2..-1]}
1108         @echo "--------------------------------------------------------------"
1109         @echo ">>> Installing kernel ${_kernel}"
1110         @echo "--------------------------------------------------------------"
1111         cd ${KRNLOBJDIR}/${_kernel}; \
1112             ${CROSSENV} PATH=${TMPPATH} \
1113             ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//}
1114 .endfor
1115 .endif
1116
1117 distributekernel distributekernel.debug:
1118 .if empty(INSTALLKERNEL)
1119         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
1120         false
1121 .endif
1122         mkdir -p ${DESTDIR}/${DISTDIR}
1123 .if defined(NO_ROOT)
1124         echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta
1125 .endif
1126         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
1127             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \
1128             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
1129             DESTDIR=${INSTALL_DDIR}/kernel \
1130             ${.TARGET:S/distributekernel/install/}
1131 .if defined(NO_ROOT)
1132         sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \
1133             ${DESTDIR}/${DISTDIR}/kernel.meta
1134 .endif
1135 .if ${BUILDKERNELS:[#]} > 1
1136 .for _kernel in ${BUILDKERNELS:[2..-1]}
1137 .if defined(NO_ROOT)
1138         echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta
1139 .endif
1140         cd ${KRNLOBJDIR}/${_kernel}; \
1141             ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \
1142             ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \
1143             KERNEL=${INSTKERNNAME}.${_kernel} \
1144             DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \
1145             ${.TARGET:S/distributekernel/install/}
1146 .if defined(NO_ROOT)
1147         sed -e 's|^./kernel|.|' \
1148             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \
1149             ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta
1150 .endif
1151 .endfor
1152 .endif
1153
1154 packagekernel:
1155 .if defined(NO_ROOT)
1156         cd ${DESTDIR}/${DISTDIR}/kernel; \
1157             tar cvf - @${DESTDIR}/${DISTDIR}/kernel.meta | \
1158             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1159 .if ${BUILDKERNELS:[#]} > 1
1160 .for _kernel in ${BUILDKERNELS:[2..-1]}
1161         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1162             tar cvf - @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \
1163             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1164 .endfor
1165 .endif
1166 .else
1167         cd ${DESTDIR}/${DISTDIR}/kernel; \
1168             tar cvf - . | \
1169             ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz
1170 .if ${BUILDKERNELS:[#]} > 1
1171 .for _kernel in ${BUILDKERNELS:[2..-1]}
1172         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
1173             tar cvf - . | \
1174             ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz
1175 .endfor
1176 .endif
1177 .endif
1178
1179 #
1180 # doxygen
1181 #
1182 # Build the API documentation with doxygen
1183 #
1184 doxygen: .PHONY
1185         @if [ ! -x `/usr/bin/which doxygen` ]; then \
1186                 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
1187                 exit 1; \
1188         fi
1189         ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all
1190
1191 #
1192 # update
1193 #
1194 # Update the source tree(s), by running svn/svnup to update to the
1195 # latest copy.
1196 #
1197 update:
1198 .if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE)
1199         @echo "--------------------------------------------------------------"
1200         @echo "CVS_UPDATE and SUP_UPDATE are no longer supported."
1201         @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated"
1202         @echo "--------------------------------------------------------------"
1203         @exit 1
1204 .endif
1205 .if defined(SVN_UPDATE)
1206         @echo "--------------------------------------------------------------"
1207         @echo ">>> Updating ${.CURDIR} using Subversion"
1208         @echo "--------------------------------------------------------------"
1209         @(cd ${.CURDIR}; ${SVN} update ${SVNFLAGS})
1210 .endif
1211
1212 #
1213 # ------------------------------------------------------------------------
1214 #
1215 # From here onwards are utility targets used by the 'make world' and
1216 # related targets.  If your 'world' breaks, you may like to try to fix
1217 # the problem and manually run the following targets to attempt to
1218 # complete the build.  Beware, this is *not* guaranteed to work, you
1219 # need to have a pretty good grip on the current state of the system
1220 # to attempt to manually finish it.  If in doubt, 'make world' again.
1221 #
1222
1223 #
1224 # legacy: Build compatibility shims for the next three targets
1225 #
1226 legacy:
1227 .if ${BOOTSTRAPPING} < 700055 && ${BOOTSTRAPPING} != 0
1228         @echo "ERROR: Source upgrades from versions prior to 7.0 not supported."; \
1229         false
1230 .endif
1231 .for _tool in tools/build
1232         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
1233             cd ${.CURDIR}/${_tool}; \
1234             ${MAKE} DIRPRFX=${_tool}/ obj; \
1235             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
1236             ${MAKE} DIRPRFX=${_tool}/ depend; \
1237             ${MAKE} DIRPRFX=${_tool}/ all; \
1238             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1239 .endfor
1240
1241 #
1242 # bootstrap-tools: Build tools needed for compatibility
1243 #
1244 _bt=            _bootstrap-tools        
1245
1246 .if ${MK_GAMES} != "no"
1247 _strfile=       games/fortune/strfile
1248 .endif
1249
1250 .if ${MK_CXX} != "no"
1251 _gperf=         gnu/usr.bin/gperf
1252 .endif
1253
1254 .if ${MK_GROFF} != "no"
1255 _groff=         gnu/usr.bin/groff
1256 .endif
1257
1258 .if ${MK_VT} != "no"
1259 _vtfontcvt=     usr.bin/vtfontcvt
1260 .endif
1261
1262 .if ${BOOTSTRAPPING} < 800022
1263 _ar=            usr.bin/ar
1264 .endif
1265
1266 .if ${BOOTSTRAPPING} < 800013
1267 _mklocale=      usr.bin/mklocale
1268 .endif
1269
1270 .if ${BOOTSTRAPPING} < 900002
1271 _sed=           usr.bin/sed
1272 .endif
1273
1274 .if ${BOOTSTRAPPING} < 1000002
1275 _m4=            usr.bin/m4
1276 .endif
1277
1278 .if ${BOOTSTRAPPING} < 1001506
1279 _yacc=          lib/liby \
1280                 usr.bin/yacc
1281
1282 ${_bt}-usr.bin/yacc: ${_bt}-lib/liby
1283 .endif
1284
1285 # crunchgen broken on head with STRIP= for a while, even
1286 # when building stable binaries, so bootstrap there too.
1287 # r284356 to r285986 is the broken range.
1288 .if ${BOOTSTRAPPING} < 1000014 || \
1289         (${BOOTSTRAPPING} > 1100076 && ${BOOTSTRAPPING} < 1100078)
1290 _crunch=        usr.sbin/crunch
1291 .endif
1292
1293 .if ${BOOTSTRAPPING} < 1000026
1294 _nmtree=        lib/libnetbsd \
1295                 usr.sbin/nmtree
1296
1297 ${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd
1298 .endif
1299
1300 .if ${BOOTSTRAPPING} < 1000027
1301 _cat=           bin/cat
1302 .endif
1303
1304 .if ${BOOTSTRAPPING} < 1000033
1305 _lex=           usr.bin/lex
1306
1307 ${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
1308 .endif
1309
1310 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1311 _awk=           usr.bin/awk
1312 .endif
1313
1314 .if ${MK_BSNMP} != "no"
1315 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
1316 .endif
1317
1318 .if ${MK_CLANG} != "no"
1319 _clang_tblgen= \
1320         lib/clang/libllvmsupport \
1321         lib/clang/libllvmtablegen \
1322         usr.bin/clang/tblgen \
1323         usr.bin/clang/clang-tblgen
1324
1325 ${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1326 ${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport
1327 .endif
1328
1329 # dtrace tools are required for older bootstrap env and cross-build
1330 .if ${MK_CDDL} != "no" && \
1331     ((${BOOTSTRAPPING} < 1000034 && \
1332           !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \
1333       || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH}))
1334 _dtrace_tools= cddl/lib/libctf lib/libelf \
1335     lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1336
1337 ${_bt}-cddl/usr.bin/ctfconvert: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1338 ${_bt}-cddl/usr.bin/ctfmerge: ${_bt}-lib/libelf ${_bt}-lib/libdwarf ${_bt}-cddl/lib/libctf
1339 .endif
1340
1341 # Default to building the GPL DTC, but build the BSDL one if users explicitly
1342 # request it.
1343 _dtc= usr.bin/dtc
1344 .if ${MK_GPL_DTC} != "no"
1345 _dtc= gnu/usr.bin/dtc
1346 .endif
1347
1348 .if ${MK_KERBEROS} != "no"
1349 _kerberos5_bootstrap_tools= \
1350         kerberos5/tools/make-roken \
1351         kerberos5/lib/libroken \
1352         kerberos5/lib/libvers \
1353         kerberos5/tools/asn1_compile \
1354         kerberos5/tools/slc \
1355         usr.bin/compile_et
1356
1357 .ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g}
1358 .endif
1359
1360 .if ${_BOOTSTRAP_MAKEINFO} != "no"
1361 _texinfo=       gnu/usr.bin/texinfo/libtxi \
1362                 gnu/usr.bin/texinfo/makeinfo \
1363                 gnu/usr.bin/texinfo/install-info
1364
1365 ${_bt}-gnu/usr.bin/texinfo/install-info: ${_bt}-gnu/usr.bin/texinfo/libtxi
1366 ${_bt}-gnu/usr.bin/texinfo/makeinfo: ${_bt}-gnu/usr.bin/texinfo/libtxi
1367 .endif
1368 bootstrap-tools: .PHONY
1369
1370 #       Please document (add comment) why something is in 'bootstrap-tools'.
1371 #       Try to bound the building of the bootstrap-tool to just the
1372 #       FreeBSD versions that need the tool built at this stage of the build.
1373 .for _tool in \
1374     ${_clang_tblgen} \
1375     ${_kerberos5_bootstrap_tools} \
1376     ${_dtrace_tools} \
1377     ${_strfile} \
1378     ${_gperf} \
1379     ${_groff} \
1380     ${_ar} \
1381     ${_dtc} \
1382     ${_awk} \
1383     ${_cat} \
1384     usr.bin/lorder \
1385     usr.bin/makewhatis \
1386     ${_mklocale} \
1387     usr.bin/rpcgen \
1388     ${_sed} \
1389     ${_yacc} \
1390     ${_m4} \
1391     ${_lex} \
1392     usr.bin/xinstall \
1393     ${_gensnmptree} \
1394     usr.sbin/config \
1395     ${_crunch} \
1396     ${_nmtree} \
1397     ${_texinfo} \
1398     ${_vtfontcvt}
1399 ${_bt}-${_tool}: .PHONY .MAKE
1400         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1401                 cd ${.CURDIR}/${_tool}; \
1402                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1403                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1404                 ${MAKE} DIRPRFX=${_tool}/ all; \
1405                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1406
1407 bootstrap-tools: ${_bt}-${_tool}
1408 .endfor
1409
1410 #
1411 # build-tools: Build special purpose build tools
1412 #
1413 .if !defined(NO_SHARE)
1414 _share= share/syscons/scrnmaps
1415 .endif
1416
1417 .if ${MK_GCC} != "no"
1418 _gcc_tools= gnu/usr.bin/cc/cc_tools
1419 .endif
1420
1421 .if ${MK_RESCUE} != "no"
1422 _rescue= rescue/rescue
1423 .endif
1424
1425 build-tools: .MAKE
1426 .for _tool in \
1427     bin/csh \
1428     bin/sh \
1429     ${_rescue} \
1430     ${LOCAL_TOOL_DIRS} \
1431     lib/ncurses/ncurses \
1432     lib/ncurses/ncursesw \
1433     ${_share} \
1434     usr.bin/awk \
1435     lib/libmagic \
1436     usr.bin/mkesdb_static \
1437     usr.bin/mkcsmapper_static \
1438     usr.bin/vi/catalog
1439         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1440                 cd ${.CURDIR}/${_tool}; \
1441                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1442                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1443 .endfor
1444 .for _tool in \
1445     ${_gcc_tools}
1446         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1447                 cd ${.CURDIR}/${_tool}; \
1448                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1449                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1450                 ${MAKE} DIRPRFX=${_tool}/ all
1451 .endfor
1452
1453
1454 #
1455 # kernel-tools: Build kernel-building tools
1456 #
1457 kernel-tools:
1458         mkdir -p ${MAKEOBJDIRPREFIX}/usr
1459         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1460             -p ${MAKEOBJDIRPREFIX}/usr >/dev/null
1461
1462 #
1463 # cross-tools: Build cross-building tools
1464 #
1465 .if !defined(TARGET_ARCH) && defined(XDEV_ARCH)
1466 TARGET_ARCH=    ${XDEV_ARCH}
1467 .endif
1468 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1469 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1470 _btxld=         usr.sbin/btxld
1471 .endif
1472 .endif
1473 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1474 .if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1475 _crunchide=     usr.sbin/crunch/crunchide
1476 .endif
1477 .if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1478 _kgzip=         usr.sbin/kgzip
1479 .endif
1480 .endif
1481
1482 .if ${XAS:M/*} == "" && ${MK_BINUTILS} != "no"
1483 _binutils=      gnu/usr.bin/binutils
1484 .endif
1485
1486 # If an full path to an external cross compiler is given, don't build
1487 # a cross compiler.
1488 .if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no"
1489 .if ${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang"
1490 _clang=         usr.bin/clang
1491 _clang_libs=    lib/clang
1492 .else
1493 _cc=            gnu/usr.bin/cc
1494 .endif
1495
1496 # The boot2 for pc98 requires gcc.
1497 .if ${TARGET} == "pc98"
1498 _cc=            gnu/usr.bin/cc
1499 .endif
1500 .endif
1501
1502 cross-tools: .MAKE .PHONY
1503 .for _tool in \
1504     ${_clang_libs} \
1505     ${_clang} \
1506     ${_binutils} \
1507     ${_cc} \
1508     usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1509     ${_btxld} \
1510     ${_crunchide} \
1511     ${_kgzip}
1512         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1513                 cd ${.CURDIR}/${_tool}; \
1514                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1515                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1516                 ${MAKE} DIRPRFX=${_tool}/ all; \
1517                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1518 .endfor
1519
1520 NXBENV=         MAKEOBJDIRPREFIX=${OBJTREE}/nxb \
1521                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
1522                 VERSION="${VERSION}"
1523 NXBMAKE=        ${NXBENV} ${MAKE} \
1524                 TBLGEN=${OBJTREE}/nxb-bin/usr/bin/tblgen \
1525                 CLANG_TBLGEN=${OBJTREE}/nxb-bin/usr/bin/clang-tblgen \
1526                 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \
1527                 -DWITHOUT_GDB -DNO_TESTS \
1528                 SSP_CFLAGS= \
1529                 -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \
1530                 -DNO_PIC -DNO_PROFILE -DNO_SHARED \
1531                 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \
1532                 -DWITHOUT_CLANG_FULL -DWITHOUT_LLDB
1533
1534 native-xtools: .PHONY
1535         mkdir -p ${OBJTREE}/nxb-bin/bin
1536         mkdir -p ${OBJTREE}/nxb-bin/sbin
1537         mkdir -p ${OBJTREE}/nxb-bin/usr
1538         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1539             -p ${OBJTREE}/nxb-bin/usr >/dev/null
1540         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1541             -p ${OBJTREE}/nxb-bin/usr/include >/dev/null
1542 .for _tool in \
1543     bin/cat \
1544     bin/chmod \
1545     bin/cp \
1546     bin/csh \
1547     bin/echo \
1548     bin/expr \
1549     bin/hostname \
1550     bin/ln \
1551     bin/ls \
1552     bin/mkdir \
1553     bin/mv \
1554     bin/ps \
1555     bin/realpath \
1556     bin/rm \
1557     bin/rmdir \
1558     bin/sh \
1559     bin/sleep \
1560     ${_clang_tblgen} \
1561     usr.bin/ar \
1562     ${_binutils} \
1563     ${_cc} \
1564     ${_gcc_tools} \
1565     ${_clang_libs} \
1566     ${_clang} \
1567     sbin/md5 \
1568     sbin/sysctl \
1569     gnu/usr.bin/diff \
1570     usr.bin/awk \
1571     usr.bin/basename \
1572     usr.bin/bmake \
1573     usr.bin/bzip2 \
1574     usr.bin/cmp \
1575     usr.bin/dirname \
1576     usr.bin/env \
1577     usr.bin/fetch \
1578     usr.bin/find \
1579     usr.bin/grep \
1580     usr.bin/gzip \
1581     usr.bin/id \
1582     usr.bin/lex \
1583     usr.bin/lorder \
1584     usr.bin/mktemp \
1585     usr.bin/mt \
1586     usr.bin/patch \
1587     usr.bin/sed \
1588     usr.bin/sort \
1589     usr.bin/tar \
1590     usr.bin/touch \
1591     usr.bin/tr \
1592     usr.bin/true \
1593     usr.bin/uniq \
1594     usr.bin/unzip \
1595     usr.bin/xargs \
1596     usr.bin/xinstall \
1597     usr.bin/xz \
1598     usr.bin/yacc \
1599     usr.sbin/chown
1600         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1601                 cd ${.CURDIR}/${_tool}; \
1602                 ${NXBMAKE} DIRPRFX=${_tool}/ obj; \
1603                 ${NXBMAKE} DIRPRFX=${_tool}/ depend; \
1604                 ${NXBMAKE} DIRPRFX=${_tool}/ all; \
1605                 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${OBJTREE}/nxb-bin install
1606 .endfor
1607
1608 #
1609 # hierarchy - ensure that all the needed directories are present
1610 #
1611 hierarchy hier: .MAKE .PHONY
1612         ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs
1613
1614 #
1615 # libraries - build all libraries, and install them under ${DESTDIR}.
1616 #
1617 # The list of libraries with dependents (${_prebuild_libs}) and their
1618 # interdependencies (__L) are built automatically by the
1619 # ${.CURDIR}/tools/make_libdeps.sh script.
1620 #
1621 libraries: .MAKE .PHONY
1622         ${_+_}cd ${.CURDIR}; \
1623             ${MAKE} -f Makefile.inc1 _prereq_libs; \
1624             ${MAKE} -f Makefile.inc1 _startup_libs; \
1625             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1626             ${MAKE} -f Makefile.inc1 _generic_libs
1627
1628 #
1629 # static libgcc.a prerequisite for shared libc
1630 #
1631 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1632
1633 # These dependencies are not automatically generated:
1634 #
1635 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1636 # all shared libraries for ELF.
1637 #
1638 _startup_libs=  gnu/lib/csu
1639 _startup_libs+= lib/csu
1640 _startup_libs+= gnu/lib/libgcc
1641 _startup_libs+= lib/libcompiler_rt
1642 _startup_libs+= lib/libc
1643 _startup_libs+= lib/libc_nonshared
1644 .if ${MK_LIBCPLUSPLUS} != "no"
1645 _startup_libs+= lib/libcxxrt
1646 .endif
1647
1648 gnu/lib/libgcc__L: lib/libc__L
1649 gnu/lib/libgcc__L: lib/libc_nonshared__L
1650 .if ${MK_LIBCPLUSPLUS} != "no"
1651 lib/libcxxrt__L: gnu/lib/libgcc__L
1652 .endif
1653
1654 _prebuild_libs= ${_kerberos5_lib_libasn1} \
1655                 ${_kerberos5_lib_libhdb} \
1656                 ${_kerberos5_lib_libheimbase} \
1657                 ${_kerberos5_lib_libheimntlm} \
1658                 ${_kerberos5_lib_libheimsqlite} \
1659                 ${_kerberos5_lib_libheimipcc} \
1660                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1661                 ${_kerberos5_lib_libroken} \
1662                 ${_kerberos5_lib_libwind} \
1663                 ${_lib_atf} \
1664                 lib/libbz2 ${_libcom_err} lib/libcrypt \
1665                 lib/libelf lib/libexpat \
1666                 lib/libfigpar \
1667                 ${_lib_libgssapi} ${_lib_libipx} \
1668                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1669                 lib/ncurses/ncurses lib/ncurses/ncursesw \
1670                 lib/libopie lib/libpam ${_lib_libthr} \
1671                 ${_lib_libradius} lib/libsbuf lib/libtacplus \
1672                 lib/libgeom \
1673                 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \
1674                 ${_cddl_lib_libuutil} \
1675                 ${_cddl_lib_libavl} \
1676                 ${_cddl_lib_libzfs_core} \
1677                 lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1678                 ${_secure_lib_libcrypto} ${_lib_libldns} \
1679                 ${_secure_lib_libssh} ${_secure_lib_libssl} \
1680                 gnu/lib/libdialog
1681 .if ${MK_GNUCXX} != no
1682 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
1683 gnu/lib/libstdc++__L: lib/msun__L
1684 .endif
1685
1686 .if ${MK_LIBCPLUSPLUS} != "no"
1687 _prebuild_libs+= lib/libc++
1688 .endif
1689
1690 lib/libgeom__L: lib/libexpat__L
1691
1692 .if defined(WITH_ATF) || ${MK_TESTS} != "no"
1693 .if !defined(WITH_ATF)
1694 # Ensure that the ATF libraries will be built during make libraries, even
1695 # though they will have -DNO_TESTS
1696 MAKE+=          -DWITH_ATF
1697 .endif
1698 _lib_atf=       lib/atf
1699 .if ${MK_GNUCXX} != no
1700 lib/atf__L: gnu/lib/libstdc++__L
1701 .endif
1702 .if ${MK_LIBCPLUSPLUS} != "no"
1703 lib/atf__L: lib/libc++__L lib/msun__L
1704 .endif
1705 .endif
1706
1707 .if ${MK_LIBTHR} != "no"
1708 _lib_libthr=    lib/libthr
1709 .endif
1710
1711 .if ${MK_RADIUS_SUPPORT} != "no"
1712 _lib_libradius= lib/libradius
1713 .endif
1714
1715 .if ${MK_OFED} != "no"
1716 _ofed_lib=      contrib/ofed/usr.lib/
1717 .endif
1718
1719 lib/liblzma__L: lib/libthr__L
1720
1721 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1722 .for _DIR in ${LOCAL_LIB_DIRS}
1723 .if exists(${.CURDIR}/${_DIR}/Makefile)
1724 _generic_libs+= ${_DIR}
1725 .endif
1726 .endfor
1727
1728 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1729
1730 .if ${MK_CDDL} != "no"
1731 _cddl_lib_libumem= cddl/lib/libumem
1732 _cddl_lib_libnvpair= cddl/lib/libnvpair
1733 _cddl_lib_libavl= cddl/lib/libavl
1734 _cddl_lib_libuutil= cddl/lib/libuutil
1735 _cddl_lib_libzfs_core= cddl/lib/libzfs_core
1736 _cddl_lib= cddl/lib
1737 cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L
1738 cddl/lib/libzfs__L: lib/libgeom__L
1739 .endif
1740
1741 .if ${MK_CRYPT} != "no"
1742 .if ${MK_OPENSSL} != "no"
1743 _secure_lib_libcrypto= secure/lib/libcrypto
1744 _secure_lib_libssl= secure/lib/libssl
1745 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1746 .if ${MK_LDNS} != "no"
1747 _lib_libldns= lib/libldns
1748 lib/libldns__L: secure/lib/libcrypto__L
1749 .endif
1750 .if ${MK_OPENSSH} != "no"
1751 _secure_lib_libssh= secure/lib/libssh
1752 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1753 .if ${MK_LDNS} != "no"
1754 secure/lib/libssh__L: lib/libldns__L
1755 .endif
1756 .if ${MK_KERBEROS_SUPPORT} != "no"
1757 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1758     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1759     lib/libmd__L kerberos5/lib/libroken__L
1760 .endif
1761 .endif
1762 .endif
1763 _secure_lib=    secure/lib
1764 .endif
1765
1766 .if ${MK_KERBEROS} != "no"
1767 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1768 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1769     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \
1770     kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L 
1771 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \
1772     kerberos5/lib/libroken__L lib/libcom_err__L
1773 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1774     secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L
1775 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1776     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1777     kerberos5/lib/libroken__L kerberos5/lib/libwind__L \
1778     kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L
1779 kerberos5/lib/libroken__L: lib/libcrypt__L
1780 kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L
1781 kerberos5/lib/libheimbase__L: lib/libthr__L
1782 kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L
1783 kerberos5/lib/libheimsqlite__L: lib/libthr__L
1784 .endif
1785
1786 .if ${MK_GSSAPI} != "no"
1787 _lib_libgssapi= lib/libgssapi
1788 .endif
1789
1790 .if ${MK_IPX} != "no"
1791 _lib_libipx=    lib/libipx
1792 .endif
1793
1794 .if ${MK_KERBEROS} != "no"
1795 _kerberos5_lib= kerberos5/lib
1796 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1797 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1798 _kerberos5_lib_libheimbase= kerberos5/lib/libheimbase
1799 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1800 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1801 _kerberos5_lib_libroken= kerberos5/lib/libroken
1802 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1803 _kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite
1804 _kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc
1805 _kerberos5_lib_libwind= kerberos5/lib/libwind
1806 _libcom_err= lib/libcom_err
1807 .endif
1808
1809 .if ${MK_NIS} != "no"
1810 _lib_libypclnt= lib/libypclnt
1811 .endif
1812
1813 .if ${MK_OPENSSL} == "no"
1814 lib/libradius__L: lib/libmd__L
1815 .endif
1816
1817 gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L
1818
1819 .for _lib in ${_prereq_libs}
1820 ${_lib}__PL: .PHONY .MAKE
1821 .if exists(${.CURDIR}/${_lib})
1822         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1823                 cd ${.CURDIR}/${_lib}; \
1824                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj; \
1825                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend; \
1826                 ${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1827                     DIRPRFX=${_lib}/ all; \
1828                 ${MAKE} -DNO_TESTS -DNO_PROFILE -DNO_PIC \
1829                     DIRPRFX=${_lib}/ install
1830 .endif
1831 .endfor
1832
1833 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1834 ${_lib}__L: .PHONY .MAKE
1835 .if exists(${.CURDIR}/${_lib})
1836         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1837                 cd ${.CURDIR}/${_lib}; \
1838                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ obj; \
1839                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ depend; \
1840                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ all; \
1841                 ${MAKE} -DNO_TESTS DIRPRFX=${_lib}/ install
1842 .endif
1843 .endfor
1844
1845 # libpam is special: we need to build static PAM modules before
1846 # static PAM library, and dynamic PAM library before dynamic PAM
1847 # modules.
1848 lib/libpam__L: .PHONY .MAKE
1849         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1850                 cd ${.CURDIR}/lib/libpam; \
1851                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ obj; \
1852                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ depend; \
1853                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1854                     -D_NO_LIBPAM_SO_YET all; \
1855                 ${MAKE} -DNO_TESTS DIRPRFX=lib/libpam/ \
1856                     -D_NO_LIBPAM_SO_YET install
1857
1858 _prereq_libs: ${_prereq_libs:S/$/__PL/}
1859 _startup_libs: ${_startup_libs:S/$/__L/}
1860 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1861 _generic_libs: ${_generic_libs:S/$/__L/}
1862
1863 .for __target in all clean cleandepend cleandir depend includes obj
1864 .for entry in ${SUBDIR}
1865 ${entry}.${__target}__D: .PHONY .MAKE
1866         ${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1867                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1868                 edir=${entry}.${MACHINE_ARCH}; \
1869                 cd ${.CURDIR}/$${edir}; \
1870         else \
1871                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1872                 edir=${entry}; \
1873                 cd ${.CURDIR}/$${edir}; \
1874         fi; \
1875         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1876 .endfor
1877 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1878 .endfor
1879
1880 .include <bsd.subdir.mk>
1881
1882 .if make(check-old) || make(check-old-dirs) || \
1883     make(check-old-files) || make(check-old-libs) || \
1884     make(delete-old) || make(delete-old-dirs) || \
1885     make(delete-old-files) || make(delete-old-libs)
1886
1887 #
1888 # check for / delete old files section
1889 #
1890
1891 .include "ObsoleteFiles.inc"
1892
1893 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1894 else you can not start such an application. Consult UPDATING for more \
1895 information regarding how to cope with the removal/revision bump of a \
1896 specific library."
1897
1898 .if !defined(BATCH_DELETE_OLD_FILES)
1899 RM_I=-i
1900 .else
1901 RM_I=-v
1902 .endif
1903
1904 delete-old-files:
1905         @echo ">>> Removing old files (only deletes safe to delete libs)"
1906 # Ask for every old file if the user really wants to remove it.
1907 # It's annoying, but better safe than sorry.
1908 # NB: We cannot pass the list of OLD_FILES as a parameter because the
1909 # argument list will get too long. Using .for/.endfor make "loops" will make
1910 # the Makefile parser segfault.
1911         @exec 3<&0; \
1912         cd ${.CURDIR}; \
1913         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1914             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1915         while read file; do \
1916                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1917                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1918                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1919                 fi; \
1920                 for ext in debug symbols; do \
1921                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1922                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1923                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1924                               <&3; \
1925                   fi; \
1926                 done; \
1927         done
1928 # Remove catpages without corresponding manpages.
1929         @exec 3<&0; \
1930         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1931         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1932         while read catpage; do \
1933                 read manpage; \
1934                 if [ ! -e "$${manpage}" ]; then \
1935                         rm ${RM_I} $${catpage} <&3; \
1936                 fi; \
1937         done
1938         @echo ">>> Old files removed"
1939
1940 check-old-files:
1941         @echo ">>> Checking for old files"
1942         @cd ${.CURDIR}; \
1943         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1944             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1945         while read file; do \
1946                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1947                         echo "${DESTDIR}/$${file}"; \
1948                 fi; \
1949                 for ext in debug symbols; do \
1950                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1951                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
1952                   fi; \
1953                 done; \
1954         done
1955 # Check for catpages without corresponding manpages.
1956         @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1957         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1958         while read catpage; do \
1959                 read manpage; \
1960                 if [ ! -e "$${manpage}" ]; then \
1961                         echo $${catpage}; \
1962                 fi; \
1963         done
1964
1965 delete-old-libs:
1966         @echo ">>> Removing old libraries"
1967         @echo "${OLD_LIBS_MESSAGE}" | fmt
1968         @exec 3<&0; \
1969         cd ${.CURDIR}; \
1970         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1971             -V OLD_LIBS | xargs -n1 | \
1972         while read file; do \
1973                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1974                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1975                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1976                 fi; \
1977                 for ext in debug symbols; do \
1978                   if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \
1979                       "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1980                           rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \
1981                               <&3; \
1982                   fi; \
1983                 done; \
1984         done
1985         @echo ">>> Old libraries removed"
1986
1987 check-old-libs:
1988         @echo ">>> Checking for old libraries"
1989         @cd ${.CURDIR}; \
1990         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1991             -V OLD_LIBS | xargs -n1 | \
1992         while read file; do \
1993                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1994                         echo "${DESTDIR}/$${file}"; \
1995                 fi; \
1996                 for ext in debug symbols; do \
1997                   if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \
1998                           echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \
1999                   fi; \
2000                 done; \
2001         done
2002
2003 delete-old-dirs:
2004         @echo ">>> Removing old directories"
2005         @cd ${.CURDIR}; \
2006         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2007             -V OLD_DIRS | xargs -n1 | sort -r | \
2008         while read dir; do \
2009                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2010                         rmdir -v "${DESTDIR}/$${dir}" || true; \
2011                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2012                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2013                 fi; \
2014         done
2015         @echo ">>> Old directories removed"
2016
2017 check-old-dirs:
2018         @echo ">>> Checking for old directories"
2019         @cd ${.CURDIR}; \
2020         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
2021             -V OLD_DIRS | xargs -n1 | \
2022         while read dir; do \
2023                 if [ -d "${DESTDIR}/$${dir}" ]; then \
2024                         echo "${DESTDIR}/$${dir}"; \
2025                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
2026                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
2027                 fi; \
2028         done
2029
2030 delete-old: delete-old-files delete-old-dirs
2031         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2032
2033 check-old: check-old-files check-old-libs check-old-dirs
2034         @echo "To remove old files and directories run '${MAKE} delete-old'."
2035         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
2036
2037 .endif
2038
2039 #
2040 # showconfig - show build configuration.
2041 #
2042 showconfig:
2043         @${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort
2044
2045 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
2046 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
2047
2048 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
2049 .if exists(${KERNCONFDIR}/${KERNCONF})
2050 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
2051         '${KERNCONFDIR}/${KERNCONF}' ; echo
2052 .endif
2053 .endif
2054
2055 .endif
2056
2057 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
2058 DTBOUTPUTPATH= ${.CURDIR}
2059 .endif
2060
2061 #
2062 # Build 'standalone' Device Tree Blob
2063 #
2064 builddtb:
2065         @PATH=${TMPPATH} MACHINE=${TARGET} \
2066         ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \
2067             "${FDT_DTS_FILE}" ${DTBOUTPUTPATH}
2068
2069 ###############
2070
2071 .if defined(XDEV) && defined(XDEV_ARCH)
2072
2073 .if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
2074 XDEV_CPUTYPE?=${CPUTYPE}
2075 .else
2076 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
2077 .endif
2078
2079 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
2080         -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
2081         -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_TESTS -DNO_WARNS \
2082         TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
2083         CPUTYPE=${XDEV_CPUTYPE}
2084
2085 XDDIR=${XDEV_ARCH}-freebsd
2086 XDTP?=/usr/${XDDIR}
2087 .if ${XDTP:N/*}
2088 .error XDTP variable should be an absolute path
2089 .endif
2090
2091 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
2092         INSTALL="sh ${.CURDIR}/tools/install.sh"
2093 CDENV= ${CDBENV} \
2094         _SHLIBDIRPREFIX=${XDDESTDIR} \
2095         TOOLS_PREFIX=${XDTP}
2096 CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
2097         --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
2098         -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
2099 CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
2100         CPP="${CPP} ${CD2CFLAGS}" \
2101         MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
2102
2103 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp
2104 CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2105 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN}
2106 XDDESTDIR=${DESTDIR}/${XDTP}
2107 .if !defined(OSREL)
2108 OSREL!= uname -r | sed -e 's/[-(].*//'
2109 .endif
2110
2111 .ORDER: xdev-build xdev-install
2112 xdev: xdev-build xdev-install
2113
2114 .ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2115 xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools
2116
2117 _xb-worldtmp: .PHONY
2118         mkdir -p ${CDTMP}/usr
2119         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2120             -p ${CDTMP}/usr >/dev/null
2121
2122 _xb-bootstrap-tools: .PHONY
2123 .for _tool in \
2124     ${_clang_tblgen}
2125         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
2126         cd ${.CURDIR}/${_tool}; \
2127         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2128         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2129         ${CDMAKE} DIRPRFX=${_tool}/ all; \
2130         ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install
2131 .endfor
2132
2133 _xb-build-tools: .PHONY
2134         ${_+_}@cd ${.CURDIR}; \
2135         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
2136
2137 _xb-cross-tools: .PHONY
2138 .for _tool in \
2139     ${_binutils} \
2140     usr.bin/ar \
2141     ${_clang_libs} \
2142     ${_clang} \
2143     ${_cc}
2144         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
2145         cd ${.CURDIR}/${_tool}; \
2146         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
2147         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
2148         ${CDMAKE} DIRPRFX=${_tool}/ all
2149 .endfor
2150
2151 _xi-mtree: .PHONY
2152         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
2153         mkdir -p ${XDDESTDIR}
2154         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
2155             -p ${XDDESTDIR} >/dev/null
2156         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
2157             -p ${XDDESTDIR}/usr >/dev/null
2158         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
2159             -p ${XDDESTDIR}/usr/include >/dev/null
2160 .if ${MK_TESTS} != "no"
2161         mkdir -p ${XDDESTDIR}${TESTSBASE}
2162         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \
2163             -p ${XDDESTDIR}${TESTSBASE} >/dev/null
2164 .endif
2165
2166 .ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
2167 xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
2168
2169 _xi-cross-tools: .PHONY
2170         @echo "_xi-cross-tools"
2171 .for _tool in \
2172     ${_binutils} \
2173     usr.bin/ar \
2174     ${_clang_libs} \
2175     ${_clang} \
2176     ${_cc}
2177         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
2178         cd ${.CURDIR}/${_tool}; \
2179         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
2180 .endfor
2181
2182 _xi-includes: .PHONY
2183         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
2184                 DESTDIR=${XDDESTDIR}
2185
2186 _xi-libraries: .PHONY
2187         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
2188                 DESTDIR=${XDDESTDIR}
2189
2190 _xi-links: .PHONY
2191         ${_+_}cd ${XDDESTDIR}/usr/bin; \
2192        mkdir -p ../../../../usr/bin; \
2193                 for i in *; do \
2194                         ln -sf ../../${XDTP}/usr/bin/$$i \
2195                             ../../../../usr/bin/${XDDIR}-$$i; \
2196                         ln -sf ../../${XDTP}/usr/bin/$$i \
2197                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
2198                 done
2199 .else
2200 xdev xdev-build xdev-install:
2201         @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
2202 .endif