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