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