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