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