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