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