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