]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
Fix typo and bump the document date which I also forgot.
[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 .if ${MK_KERBEROS} != "no"
472 .for _t in obj depend all
473         cd ${.CURDIR}/kerberos5/tools; \
474             MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
475             DIRPRFX=kerberos5/tools/ ${_t}
476 .endfor
477 .endif
478 .for _t in obj includes
479         cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t}
480         cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t}
481 .if ${MK_CDDL} != "no"
482         cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t}
483 .endif
484         cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t}
485 .if ${MK_CRYPT} != "no"
486         cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t}
487 .endif
488 .if ${MK_KERBEROS} != "no"
489         cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t}
490 .endif
491 .endfor
492 .for _dir in usr.bin/lex/lib
493         cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj
494 .endfor
495 .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic
496         cd ${.CURDIR}/${_dir}; \
497             MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \
498             DIRPRFX=${_dir}/ build-tools
499 .endfor
500         cd ${.CURDIR}; \
501             ${LIB32WMAKE} -f Makefile.inc1 libraries
502 .for _t in obj depend all
503         cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \
504             DIRPRFX=libexec/rtld-elf/ ${_t}
505         cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \
506             DIRPRFX=usr.bin/ldd ${_t}
507 .endfor
508
509 distribute32 install32:
510         cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
511 .if ${MK_CDDL} != "no"
512         cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
513 .endif
514         cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
515 .if ${MK_CRYPT} != "no"
516         cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
517 .endif
518 .if ${MK_KERBEROS} != "no"
519         cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
520 .endif
521         cd ${.CURDIR}/libexec/rtld-elf; \
522             PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
523         cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
524 .endif
525
526 WMAKE_TGTS=
527 .if !defined(SUBDIR_OVERRIDE)
528 WMAKE_TGTS+=    _worldtmp _legacy _bootstrap-tools
529 .endif
530 WMAKE_TGTS+=    _cleanobj _obj _build-tools
531 .if !defined(SUBDIR_OVERRIDE)
532 WMAKE_TGTS+=    _cross-tools
533 .endif
534 WMAKE_TGTS+=    _includes _libraries _depend everything
535 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
536 WMAKE_TGTS+=    build32
537 .endif
538
539 buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
540 .ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
541
542 buildworld_prologue:
543         @echo "--------------------------------------------------------------"
544         @echo ">>> World build started on `LC_ALL=C date`"
545         @echo "--------------------------------------------------------------"
546
547 buildworld_epilogue:
548         @echo
549         @echo "--------------------------------------------------------------"
550         @echo ">>> World build completed on `LC_ALL=C date`"
551         @echo "--------------------------------------------------------------"
552
553 #
554 # We need to have this as a target because the indirection between Makefile
555 # and Makefile.inc1 causes the correct PATH to be used, rather than a
556 # modification of the current environment's PATH.  In addition, we need
557 # to quote multiword values.
558 #
559 buildenvvars:
560         @echo ${WMAKEENV:Q}
561
562 buildenv:
563         @echo Entering world for ${TARGET_ARCH}:${TARGET}
564         @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true
565
566 TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
567 toolchain: ${TOOLCHAIN_TGTS}
568 kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
569
570 #
571 # installcheck
572 #
573 # Checks to be sure system is ready for installworld/installkernel.
574 #
575 installcheck:
576
577 #
578 # Require DESTDIR to be set if installing for a different architecture.
579 #
580 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
581 .if !make(distributeworld)
582 installcheck: installcheck_DESTDIR
583 installcheck_DESTDIR:
584 .if !defined(DESTDIR) || empty(DESTDIR)
585         @echo "ERROR: Please set DESTDIR!"; \
586         false
587 .endif
588 .endif
589 .endif
590
591 #
592 # Check for missing UIDs/GIDs.
593 #
594 CHECK_UIDS=
595 CHECK_GIDS=     audit
596 .if ${MK_SENDMAIL} != "no"
597 CHECK_UIDS+=    smmsp
598 CHECK_GIDS+=    smmsp
599 .endif
600 .if ${MK_PF} != "no"
601 CHECK_UIDS+=    proxy
602 CHECK_GIDS+=    proxy authpf
603 .endif
604 installcheck: installcheck_UGID
605 installcheck_UGID:
606 .for uid in ${CHECK_UIDS}
607         @if ! `id -u ${uid} >/dev/null 2>&1`; then \
608                 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
609                 false; \
610         fi
611 .endfor
612 .for gid in ${CHECK_GIDS}
613         @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
614                 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
615                 false; \
616         fi
617 .endfor
618
619 #
620 # Required install tools to be saved in a scratch dir for safety.
621 #
622 .if ${MK_INFO} != "no"
623 _install-info=  install-info
624 .endif
625 .if ${MK_ZONEINFO} != "no"
626 _zoneinfo=      zic tzsetup
627 .endif
628
629 ITOOLS= [ awk cap_mkdb cat chflags chmod chown \
630         date echo egrep find grep ${_install-info} \
631         ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
632         test true uname wc ${_zoneinfo}
633
634 #
635 # distributeworld
636 #
637 # Distributes everything compiled by a `buildworld'.
638 #
639 # installworld
640 #
641 # Installs everything compiled by a 'buildworld'.
642 #
643
644 # Non-base distributions produced by the base system
645 EXTRA_DISTRIBUTIONS=    doc games
646 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
647 EXTRA_DISTRIBUTIONS+=   lib32
648 .endif
649
650 distributeworld installworld: installcheck
651         mkdir -p ${INSTALLTMP}
652         progs=$$(for prog in ${ITOOLS}; do \
653                 if progpath=`which $$prog`; then \
654                         echo $$progpath; \
655                 else \
656                         echo "Required tool $$prog not found in PATH." >&2; \
657                         exit 1; \
658                 fi; \
659             done); \
660         libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
661             while read line; do \
662                 set -- $$line; \
663                 if [ "$$2 $$3" != "not found" ]; then \
664                         echo $$2; \
665                 else \
666                         echo "Required library $$1 not found." >&2; \
667                         exit 1; \
668                 fi; \
669             done); \
670         cp $$libs $$progs ${INSTALLTMP}
671         cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
672 .if make(distributeworld)
673 .for dist in ${EXTRA_DISTRIBUTIONS}
674         -mkdir ${DESTDIR}/${DISTDIR}/${dist}
675         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
676             -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null
677         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
678             -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null
679         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
680             -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null
681 .endfor
682         -mkdir ${DESTDIR}/${DISTDIR}/base
683         ${_+_}cd ${.CURDIR}; ${IMAKE} distrib-dirs \
684             DESTDIR=${DESTDIR}/${DISTDIR}/base
685 .endif
686         ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
687             ${IMAKEENV} rm -rf ${INSTALLTMP}
688 .if make(distributeworld)
689 .for dist in ${EXTRA_DISTRIBUTIONS}
690         find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete
691 .endfor
692 .endif
693
694 packageworld:
695 .for dist in base ${EXTRA_DISTRIBUTIONS}
696         ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \
697             tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz .
698 .endfor
699
700 #
701 # reinstall
702 #
703 # If you have a build server, you can NFS mount the source and obj directories
704 # and do a 'make reinstall' on the *client* to install new binaries from the
705 # most recent server build.
706 #
707 reinstall:
708         @echo "--------------------------------------------------------------"
709         @echo ">>> Making hierarchy"
710         @echo "--------------------------------------------------------------"
711         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
712         @echo
713         @echo "--------------------------------------------------------------"
714         @echo ">>> Installing everything"
715         @echo "--------------------------------------------------------------"
716         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
717 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
718         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
719 .endif
720
721 redistribute:
722         @echo "--------------------------------------------------------------"
723         @echo ">>> Distributing everything"
724         @echo "--------------------------------------------------------------"
725         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
726 .if defined(LIB32TMP) && ${MK_LIB32} != "no"
727         ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
728             DISTRIBUTION=lib32
729 .endif
730
731 distrib-dirs distribution:
732         cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET}
733
734 #
735 # buildkernel and installkernel
736 #
737 # Which kernels to build and/or install is specified by setting
738 # KERNCONF. If not defined a GENERIC kernel is built/installed.
739 # Only the existing (depending TARGET) config files are used
740 # for building kernels and only the first of these is designated
741 # as the one being installed.
742 #
743 # Note that we have to use TARGET instead of TARGET_ARCH when
744 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
745 # be set to cross-build, we have to make sure TARGET is set
746 # properly.
747
748 .if defined(KERNFAST)
749 NO_KERNELCLEAN= t
750 NO_KERNELCONFIG=        t
751 NO_KERNELDEPEND=        t
752 NO_KERNELOBJ=           t
753 # Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah
754 .if !defined(KERNCONF) && ${KERNFAST} != "1"
755 KERNCONF=${KERNFAST}
756 .endif
757 .endif
758 .if !defined(KERNCONF) && defined(KERNEL)
759 KERNCONF=       ${KERNEL}
760 KERNWARN=
761 .else
762 .if ${TARGET_ARCH} == "powerpc64"
763 KERNCONF?=      GENERIC64
764 .else
765 KERNCONF?=      GENERIC
766 .endif
767 .endif
768 INSTKERNNAME?=  kernel
769
770 KERNSRCDIR?=    ${.CURDIR}/sys
771 KRNLCONFDIR=    ${KERNSRCDIR}/${TARGET}/conf
772 KRNLOBJDIR=     ${OBJTREE}${KERNSRCDIR}
773 KERNCONFDIR?=   ${KRNLCONFDIR}
774
775 BUILDKERNELS=
776 INSTALLKERNEL=
777 .for _kernel in ${KERNCONF}
778 .if exists(${KERNCONFDIR}/${_kernel})
779 BUILDKERNELS+=  ${_kernel}
780 .if empty(INSTALLKERNEL)
781 INSTALLKERNEL= ${_kernel}
782 .endif
783 .endif
784 .endfor
785
786 #
787 # buildkernel
788 #
789 # Builds all kernels defined by BUILDKERNELS.
790 #
791 buildkernel:
792 .if empty(BUILDKERNELS)
793         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
794         false
795 .endif
796 .if defined(KERNWARN)
797         @echo "--------------------------------------------------------------"
798         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
799         @echo "--------------------------------------------------------------"
800         @sleep 3
801 .endif
802         @echo
803 .for _kernel in ${BUILDKERNELS}
804         @echo "--------------------------------------------------------------"
805         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
806         @echo "--------------------------------------------------------------"
807         @echo "===> ${_kernel}"
808         mkdir -p ${KRNLOBJDIR}
809 .if !defined(NO_KERNELCONFIG)
810         @echo
811         @echo "--------------------------------------------------------------"
812         @echo ">>> stage 1: configuring the kernel"
813         @echo "--------------------------------------------------------------"
814         cd ${KRNLCONFDIR}; \
815                 PATH=${TMPPATH} \
816                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
817                         ${KERNCONFDIR}/${_kernel}
818 .endif
819 .if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
820         @echo
821         @echo "--------------------------------------------------------------"
822         @echo ">>> stage 2.1: cleaning up the object tree"
823         @echo "--------------------------------------------------------------"
824         cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
825 .endif
826 .if !defined(NO_KERNELOBJ)
827         @echo
828         @echo "--------------------------------------------------------------"
829         @echo ">>> stage 2.2: rebuilding the object tree"
830         @echo "--------------------------------------------------------------"
831         cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
832 .endif
833         @echo
834         @echo "--------------------------------------------------------------"
835         @echo ">>> stage 2.3: build tools"
836         @echo "--------------------------------------------------------------"
837         cd ${KRNLOBJDIR}/${_kernel}; \
838             PATH=${BPATH}:${PATH} \
839             MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
840             ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \
841             -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
842 # XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
843 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
844 .for target in obj depend all
845         cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
846             PATH=${BPATH}:${PATH} \
847             MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
848             ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target}
849 .endfor
850 .endif
851 .if !defined(NO_KERNELDEPEND)
852         @echo
853         @echo "--------------------------------------------------------------"
854         @echo ">>> stage 3.1: making dependencies"
855         @echo "--------------------------------------------------------------"
856         cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
857 .endif
858         @echo
859         @echo "--------------------------------------------------------------"
860         @echo ">>> stage 3.2: building everything"
861         @echo "--------------------------------------------------------------"
862         cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
863         @echo "--------------------------------------------------------------"
864         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
865         @echo "--------------------------------------------------------------"
866 .endfor
867
868 #
869 # installkernel, etc.
870 #
871 # Install the kernel defined by INSTALLKERNEL
872 #
873 installkernel installkernel.debug \
874 reinstallkernel reinstallkernel.debug: installcheck
875 .if empty(INSTALLKERNEL)
876         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
877         false
878 .endif
879         @echo "--------------------------------------------------------------"
880         @echo ">>> Installing kernel ${INSTALLKERNEL}"
881         @echo "--------------------------------------------------------------"
882         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
883             ${CROSSENV} PATH=${TMPPATH} \
884             ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
885
886 distributekernel distributekernel.debug:
887 .if empty(INSTALLKERNEL)
888         @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
889         false
890 .endif
891         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
892             ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \
893             DESTDIR=${DESTDIR}/${DISTDIR}/kernel \
894             ${.TARGET:S/distributekernel/install/}
895 .for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
896         cd ${KRNLOBJDIR}/${_kernel}; \
897             ${CROSSENV} PATH=${TMPPATH} ${MAKE} \
898             KERNEL=${INSTKERNNAME}.${_kernel} \
899             DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \
900             ${.TARGET:S/distributekernel/install/}
901 .endfor
902
903 packagekernel:
904         cd ${DESTDIR}/${DISTDIR}/kernel; \
905             tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz .
906 .for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//}
907         cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \
908             tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz .
909 .endfor
910
911 #
912 # doxygen
913 #
914 # Build the API documentation with doxygen
915 #
916 doxygen:
917         @if [ ! -x `/usr/bin/which doxygen` ]; then \
918                 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
919                 exit 1; \
920         fi
921         cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
922
923 #
924 # update
925 #
926 # Update the source tree(s), by running cvsup/cvs/svn to update to the
927 # latest copy.
928 #
929 update:
930 .if defined(SUP_UPDATE)
931         @echo "--------------------------------------------------------------"
932         @echo ">>> Running ${SUP}"
933         @echo "--------------------------------------------------------------"
934 .if defined(SUPFILE)
935         @${SUP} ${SUPFLAGS} ${SUPFILE}
936 .endif
937 .if defined(SUPFILE1)
938         @${SUP} ${SUPFLAGS} ${SUPFILE1}
939 .endif
940 .if defined(SUPFILE2)
941         @${SUP} ${SUPFLAGS} ${SUPFILE2}
942 .endif
943 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
944         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
945 .endif
946 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
947         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
948 .endif
949 .if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE)
950         @${SUP} ${SUPFLAGS} ${WWWSUPFILE}
951 .endif
952 .endif
953 .if defined(CVS_UPDATE)
954         @cd ${.CURDIR} ; \
955         if [ -d CVS ] ; then \
956                 echo "--------------------------------------------------------------" ; \
957                 echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \
958                 echo "--------------------------------------------------------------" ; \
959                 echo ${CVS} -R -q update ${CVSFLAGS} ; \
960                 ${CVS} -R -q update ${CVSFLAGS} ; \
961         fi
962 .endif
963 .if defined(SVN_UPDATE)
964         @cd ${.CURDIR} ; \
965         if [ -d .svn ] ; then \
966                 echo "--------------------------------------------------------------" ; \
967                 echo ">>> Updating ${.CURDIR} using Subversion" ; \
968                 echo "--------------------------------------------------------------" ; \
969                 echo ${SVN} update ${SVNFLAGS} ; \
970                 ${SVN} update ${SVNFLAGS} ; \
971         fi
972 .endif
973
974 #
975 # ------------------------------------------------------------------------
976 #
977 # From here onwards are utility targets used by the 'make world' and
978 # related targets.  If your 'world' breaks, you may like to try to fix
979 # the problem and manually run the following targets to attempt to
980 # complete the build.  Beware, this is *not* guaranteed to work, you
981 # need to have a pretty good grip on the current state of the system
982 # to attempt to manually finish it.  If in doubt, 'make world' again.
983 #
984
985 #
986 # legacy: Build compatibility shims for the next three targets
987 #
988 legacy:
989 .if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
990         @echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
991         false
992 .endif
993 .for _tool in tools/build
994         ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
995             cd ${.CURDIR}/${_tool}; \
996             ${MAKE} DIRPRFX=${_tool}/ obj; \
997             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
998             ${MAKE} DIRPRFX=${_tool}/ depend; \
999             ${MAKE} DIRPRFX=${_tool}/ all; \
1000             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1001 .endfor
1002
1003 #
1004 # bootstrap-tools: Build tools needed for compatibility
1005 #
1006 .if ${MK_GAMES} != "no"
1007 _strfile=       games/fortune/strfile
1008 .endif
1009
1010 .if ${MK_CXX} != "no"
1011 _gperf=         gnu/usr.bin/gperf
1012 .endif
1013
1014 .if ${MK_GROFF} != "no"
1015 _groff=         gnu/usr.bin/groff
1016 .endif
1017
1018 .if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
1019 _ar=            usr.bin/ar
1020 .endif
1021
1022 .if ${BOOTSTRAPPING} < 800013
1023 _mklocale=      usr.bin/mklocale
1024 .endif
1025
1026 .if ${BOOTSTRAPPING} < 900002
1027 _sed=           usr.bin/sed
1028 .endif
1029
1030 .if ${BOOTSTRAPPING} < 900006
1031 _lex=           usr.bin/lex
1032 _yacc=          usr.bin/yacc
1033 .endif
1034
1035 .if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041
1036 _awk=           usr.bin/awk
1037 .endif
1038
1039 .if ${MK_BSNMP} != "no" && \
1040     (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree))
1041 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
1042 .endif
1043
1044 .if ${MK_RESCUE} != "no" && \
1045     ${BOOTSTRAPPING} < 700026
1046 _crunchgen=     usr.sbin/crunch/crunchgen
1047 .endif
1048
1049 .if ${MK_CLANG} != "no"
1050 _clang_tblgen= \
1051         lib/clang/libllvmsupport \
1052         lib/clang/libllvmtablegen \
1053         usr.bin/clang/tblgen \
1054         usr.bin/clang/clang-tblgen
1055 .endif
1056
1057 .if ${MK_CDDL} != "no" && \
1058     ${BOOTSTRAPPING} < 800038 && \
1059     !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)
1060 _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
1061     lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
1062 .endif
1063
1064 .if ${MK_FDT} != "no"
1065 _dtc= gnu/usr.bin/dtc
1066 .endif
1067
1068 #       Please document (add comment) why something is in 'bootstrap-tools'.
1069 #       Try to bound the building of the bootstrap-tool to just the
1070 #       FreeBSD versions that need the tool built at this stage of the build.
1071 bootstrap-tools:
1072 .for _tool in \
1073     ${_clang_tblgen} \
1074     ${_dtrace_tools} \
1075     ${_strfile} \
1076     ${_gperf} \
1077     ${_groff} \
1078     ${_ar} \
1079     ${_dtc} \
1080     ${_awk} \
1081     usr.bin/lorder \
1082     usr.bin/makewhatis \
1083     ${_mklocale} \
1084     usr.bin/rpcgen \
1085     ${_sed} \
1086     ${_lex} \
1087     ${_yacc} \
1088     usr.bin/xinstall \
1089     ${_gensnmptree} \
1090     usr.sbin/config \
1091     ${_crunchgen}
1092         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1093                 cd ${.CURDIR}/${_tool}; \
1094                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1095                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1096                 ${MAKE} DIRPRFX=${_tool}/ all; \
1097                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
1098 .endfor
1099
1100 #
1101 # build-tools: Build special purpose build tools
1102 #
1103 .if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
1104 _aicasm= sys/modules/aic7xxx/aicasm
1105 .endif
1106
1107 .if !defined(NO_SHARE)
1108 _share= share/syscons/scrnmaps
1109 .endif
1110
1111 .if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no"
1112 _gcc_tools= gnu/usr.bin/cc/cc_tools
1113 .endif
1114
1115 .if ${MK_KERBEROS} != "no"
1116 _kerberos5_tools= kerberos5/tools
1117 .endif
1118
1119 .if ${MK_RESCUE} != "no"
1120 _rescue= rescue/rescue
1121 .endif
1122
1123 build-tools:
1124 .for _tool in \
1125     bin/csh \
1126     bin/sh \
1127     ${_rescue} \
1128     ${LOCAL_TOOL_DIRS} \
1129     lib/ncurses/ncurses \
1130     lib/ncurses/ncursesw \
1131     ${_share} \
1132     ${_aicasm} \
1133     usr.bin/awk \
1134     lib/libmagic \
1135     usr.bin/mkesdb_static \
1136     usr.bin/mkcsmapper_static
1137         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1138                 cd ${.CURDIR}/${_tool}; \
1139                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1140                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1141 .endfor
1142 .for _tool in \
1143     ${_gcc_tools} \
1144     ${_kerberos5_tools}
1145         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1146                 cd ${.CURDIR}/${_tool}; \
1147                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1148                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1149                 ${MAKE} DIRPRFX=${_tool}/ all
1150 .endfor
1151
1152 #
1153 # cross-tools: Build cross-building tools
1154 #
1155 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1156 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1157 _btxld=         usr.sbin/btxld
1158 .endif
1159 .endif
1160 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1161 .if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1162 _crunchide=     usr.sbin/crunch/crunchide
1163 .endif
1164 .if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1165 _kgzip=         usr.sbin/kgzip
1166 .endif
1167 .endif
1168
1169 .if ${MK_BINUTILS} != "no"
1170 _binutils=      gnu/usr.bin/binutils
1171 .endif
1172
1173 .if ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang")
1174 _clang=         usr.bin/clang
1175 _clang_libs=    lib/clang
1176 .endif
1177
1178 .if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no"
1179 _cc=            gnu/usr.bin/cc
1180 .endif
1181
1182 cross-tools:
1183 .for _tool in \
1184     ${_clang_libs} \
1185     ${_clang} \
1186     ${_binutils} \
1187     ${_cc} \
1188     usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1189     ${_btxld} \
1190     ${_crunchide} \
1191     ${_kgzip}
1192         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1193                 cd ${.CURDIR}/${_tool}; \
1194                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1195                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1196                 ${MAKE} DIRPRFX=${_tool}/ all; \
1197                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1198 .endfor
1199
1200 #
1201 # hierarchy - ensure that all the needed directories are present
1202 #
1203 hierarchy:
1204         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
1205
1206 #
1207 # libraries - build all libraries, and install them under ${DESTDIR}.
1208 #
1209 # The list of libraries with dependents (${_prebuild_libs}) and their
1210 # interdependencies (__L) are built automatically by the
1211 # ${.CURDIR}/tools/make_libdeps.sh script.
1212 #
1213 libraries:
1214         cd ${.CURDIR}; \
1215             ${MAKE} -f Makefile.inc1 _prereq_libs; \
1216             ${MAKE} -f Makefile.inc1 _startup_libs; \
1217             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1218             ${MAKE} -f Makefile.inc1 _generic_libs;
1219
1220 #
1221 # static libgcc.a prerequisite for shared libc
1222 #
1223 _prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt
1224
1225 # These dependencies are not automatically generated:
1226 #
1227 # gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1228 # all shared libraries for ELF.
1229 #
1230 _startup_libs=  gnu/lib/csu
1231 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1232 _startup_libs+= lib/csu/${MACHINE_ARCH}-elf
1233 .elif exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
1234 _startup_libs+= lib/csu/${MACHINE_ARCH}
1235 .else
1236 _startup_libs+= lib/csu/${MACHINE_CPUARCH}
1237 .endif
1238 _startup_libs+= gnu/lib/libgcc
1239 _startup_libs+= lib/libcompiler_rt
1240 _startup_libs+= lib/libc
1241 .if ${MK_LIBCPLUSPLUS} != "no"
1242 _startup_libs+= lib/libcxxrt
1243 .endif
1244
1245 gnu/lib/libgcc__L: lib/libc__L
1246
1247 _prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \
1248                 ${_kerberos5_lib_libheimntlm} \
1249                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1250                 ${_kerberos5_lib_libroken} \
1251                 lib/libbz2 lib/libcom_err lib/libcrypt \
1252                 lib/libexpat \
1253                 ${_lib_libgssapi} ${_lib_libipx} \
1254                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1255                 lib/ncurses/ncurses lib/ncurses/ncursesw \
1256                 lib/libopie lib/libpam ${_lib_libthr} \
1257                 lib/libradius lib/libsbuf lib/libtacplus \
1258                 ${_cddl_lib_libumem} \
1259                 lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1260                 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1261                 ${_secure_lib_libssl}
1262
1263 .if ${MK_LIBTHR} != "no"
1264 _lib_libthr=    lib/libthr
1265 .endif
1266
1267 .if ${MK_OFED} != "no"
1268 _ofed_lib=      contrib/ofed/usr.lib/
1269 .endif
1270
1271 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1272
1273 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1274
1275 .if ${MK_CDDL} != "no"
1276 _cddl_lib_libumem= cddl/lib/libumem
1277 _cddl_lib= cddl/lib
1278 .endif
1279
1280 .if ${MK_CRYPT} != "no"
1281 .if ${MK_OPENSSL} != "no"
1282 _secure_lib_libcrypto= secure/lib/libcrypto
1283 _secure_lib_libssl= secure/lib/libssl
1284 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1285 .if ${MK_OPENSSH} != "no"
1286 _secure_lib_libssh= secure/lib/libssh
1287 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1288 .if ${MK_KERBEROS_SUPPORT} != "no"
1289 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1290     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1291     lib/libmd__L kerberos5/lib/libroken__L
1292 .endif
1293 .endif
1294 .endif
1295 _secure_lib=    secure/lib
1296 .endif
1297
1298 .if ${MK_KERBEROS} != "no"
1299 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1300 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1301     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L
1302 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L
1303 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1304     secure/lib/libcrypto__L kerberos5/lib/libroken__L
1305 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1306     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1307     kerberos5/lib/libroken__L
1308 kerberos5/lib/libroken__L: lib/libcrypt__L
1309 .endif
1310
1311 .if ${MK_GSSAPI} != "no"
1312 _lib_libgssapi= lib/libgssapi
1313 .endif
1314
1315 .if ${MK_IPX} != "no"
1316 _lib_libipx=    lib/libipx
1317 .endif
1318
1319 .if ${MK_KERBEROS} != "no"
1320 _kerberos5_lib= kerberos5/lib
1321 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1322 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1323 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1324 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1325 _kerberos5_lib_libroken= kerberos5/lib/libroken
1326 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1327 .endif
1328
1329 .if ${MK_NIS} != "no"
1330 _lib_libypclnt= lib/libypclnt
1331 .endif
1332
1333 .if ${MK_OPENSSL} == "no"
1334 lib/libradius__L: lib/libmd__L
1335 .endif
1336
1337 .for _lib in ${_prereq_libs}
1338 ${_lib}__PL: .PHONY
1339 .if exists(${.CURDIR}/${_lib})
1340         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1341                 cd ${.CURDIR}/${_lib}; \
1342                 ${MAKE} DIRPRFX=${_lib}/ obj; \
1343                 ${MAKE} DIRPRFX=${_lib}/ depend; \
1344                 ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1345                 ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1346 .endif
1347 .endfor
1348
1349 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1350 ${_lib}__L: .PHONY
1351 .if exists(${.CURDIR}/${_lib})
1352         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1353                 cd ${.CURDIR}/${_lib}; \
1354                 ${MAKE} DIRPRFX=${_lib}/ obj; \
1355                 ${MAKE} DIRPRFX=${_lib}/ depend; \
1356                 ${MAKE} DIRPRFX=${_lib}/ all; \
1357                 ${MAKE} DIRPRFX=${_lib}/ install
1358 .endif
1359 .endfor
1360
1361 # libpam is special: we need to build static PAM modules before
1362 # static PAM library, and dynamic PAM library before dynamic PAM
1363 # modules.
1364 lib/libpam__L: .PHONY
1365         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1366                 cd ${.CURDIR}/lib/libpam; \
1367                 ${MAKE} DIRPRFX=lib/libpam/ obj; \
1368                 ${MAKE} DIRPRFX=lib/libpam/ depend; \
1369                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1370                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1371
1372 _prereq_libs: ${_prereq_libs:S/$/__PL/}
1373 _startup_libs: ${_startup_libs:S/$/__L/}
1374 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1375 _generic_libs: ${_generic_libs:S/$/__L/}
1376
1377 .for __target in all clean cleandepend cleandir depend includes obj
1378 .for entry in ${SUBDIR}
1379 ${entry}.${__target}__D: .PHONY
1380         ${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1381                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1382                 edir=${entry}.${MACHINE_ARCH}; \
1383                 cd ${.CURDIR}/$${edir}; \
1384         else \
1385                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1386                 edir=${entry}; \
1387                 cd ${.CURDIR}/$${edir}; \
1388         fi; \
1389         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1390 .endfor
1391 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1392 .endfor
1393
1394 .include <bsd.subdir.mk>
1395
1396 .if make(check-old) || make(check-old-dirs) || \
1397     make(check-old-files) || make(check-old-libs) || \
1398     make(delete-old) || make(delete-old-dirs) || \
1399     make(delete-old-files) || make(delete-old-libs)
1400
1401 #
1402 # check for / delete old files section
1403 #
1404
1405 .include "ObsoleteFiles.inc"
1406
1407 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1408 else you can not start such an application. Consult UPDATING for more \
1409 information regarding how to cope with the removal/revision bump of a \
1410 specific library."
1411
1412 .if !defined(BATCH_DELETE_OLD_FILES)
1413 RM_I=-i
1414 .else
1415 RM_I=-v
1416 .endif
1417
1418 delete-old-files:
1419         @echo ">>> Removing old files (only deletes safe to delete libs)"
1420 # Ask for every old file if the user really wants to remove it.
1421 # It's annoying, but better safe than sorry.
1422 # NB: We cannot pass the list of OLD_FILES as a parameter because the
1423 # argument list will get too long. Using .for/.endfor make "loops" will make
1424 # the Makefile parser segfault.
1425         @exec 3<&0; \
1426         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1427             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1428         while read file; do \
1429                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1430                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1431                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1432                 fi; \
1433         done
1434 # Remove catpages without corresponding manpages.
1435         @exec 3<&0; \
1436         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1437         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1438         while read catpage; do \
1439                 read manpage; \
1440                 if [ ! -e "$${manpage}" ]; then \
1441                         rm ${RM_I} $${catpage} <&3; \
1442                 fi; \
1443         done
1444         @echo ">>> Old files removed"
1445
1446 check-old-files:
1447         @echo ">>> Checking for old files"
1448         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1449             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1450         while read file; do \
1451                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1452                         echo "${DESTDIR}/$${file}"; \
1453                 fi; \
1454         done
1455 # Check for catpages without corresponding manpages.
1456         @find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1457         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1458         while read catpage; do \
1459                 read manpage; \
1460                 if [ ! -e "$${manpage}" ]; then \
1461                         echo $${catpage}; \
1462                 fi; \
1463         done
1464
1465 delete-old-libs:
1466         @echo ">>> Removing old libraries"
1467         @echo "${OLD_LIBS_MESSAGE}" | fmt
1468         @exec 3<&0; \
1469         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1470             -V OLD_LIBS | xargs -n1 | \
1471         while read file; do \
1472                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1473                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1474                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1475                 fi; \
1476         done
1477         @echo ">>> Old libraries removed"
1478
1479 check-old-libs:
1480         @echo ">>> Checking for old libraries"
1481         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1482             -V OLD_LIBS | xargs -n1 | \
1483         while read file; do \
1484                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1485                         echo "${DESTDIR}/$${file}"; \
1486                 fi; \
1487         done
1488
1489 delete-old-dirs:
1490         @echo ">>> Removing old directories"
1491         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1492             -V OLD_DIRS | xargs -n1 | \
1493         while read dir; do \
1494                 if [ -d "${DESTDIR}/$${dir}" ]; then \
1495                         rmdir -v "${DESTDIR}/$${dir}" || true; \
1496                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
1497                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1498                 fi; \
1499         done
1500         @echo ">>> Old directories removed"
1501
1502 check-old-dirs:
1503         @echo ">>> Checking for old directories"
1504         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1505             -V OLD_DIRS | xargs -n1 | \
1506         while read dir; do \
1507                 if [ -d "${DESTDIR}/$${dir}" ]; then \
1508                         echo "${DESTDIR}/$${dir}"; \
1509                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
1510                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1511                 fi; \
1512         done
1513
1514 delete-old: delete-old-files delete-old-dirs
1515         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
1516
1517 check-old: check-old-files check-old-libs check-old-dirs
1518         @echo "To remove old files and directories run '${MAKE} delete-old'."
1519         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
1520
1521 .endif
1522
1523 #
1524 # showconfig - show build configuration.
1525 #
1526 showconfig:
1527         @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1528
1529 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1530 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1531
1532 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1533 .if exists(${KERNCONFDIR}/${KERNCONF})
1534 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1535         ${KERNCONFDIR}/${KERNCONF}
1536 .endif
1537 .endif
1538
1539 .endif
1540
1541 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1542 DTBOUTPUTPATH= ${.CURDIR}
1543 .endif
1544
1545 #
1546 # Build 'standalone' Device Tree Blob
1547 #
1548 builddtb:
1549         @if [ "${FDT_DTS_FILE}" = "" ]; then \
1550                 echo "ERROR: FDT_DTS_FILE must be specified!"; \
1551                 exit 1; \
1552         fi;     \
1553         if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1554                 echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1555                         exist!"; \
1556                 exit 1; \
1557         fi;     \
1558         if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then  \
1559                 echo "WARNING: DTB will be placed in the current working \
1560                         directory"; \
1561         fi
1562         @PATH=${TMPPATH} \
1563         dtc -O dtb -o \
1564             ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1565             -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1566
1567 ###############
1568
1569 .if defined(XDEV) && defined(XDEV_ARCH)
1570
1571 .if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1572 XDEV_CPUTYPE?=${CPUTYPE}
1573 .else
1574 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1575 .endif
1576
1577 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1578         -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1579         -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1580         TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1581         CPUTYPE=${XDEV_CPUTYPE}
1582
1583 XDDIR=${XDEV_ARCH}-freebsd
1584 XDTP=/usr/${XDDIR}
1585 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1586 CDENV= ${CDBENV} \
1587         _SHLIBDIRPREFIX=${XDTP} \
1588         TOOLS_PREFIX=${XDTP}
1589 CD2ENV=${CDENV} \
1590         MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1591
1592 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1593 CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1594 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1595 XDDESTDIR=${DESTDIR}${XDTP}
1596 .if !defined(OSREL)
1597 OSREL!= uname -r | sed -e 's/[-(].*//'
1598 .endif
1599
1600 .ORDER: xdev-build xdev-install
1601 xdev: xdev-build xdev-install
1602
1603 .ORDER: _xb-build-tools _xb-cross-tools
1604 xdev-build: _xb-build-tools _xb-cross-tools
1605
1606 _xb-build-tools:
1607         ${_+_}@cd ${.CURDIR}; \
1608         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1609
1610 _xb-cross-tools:
1611 .for _tool in \
1612     gnu/usr.bin/binutils \
1613     gnu/usr.bin/cc \
1614     usr.bin/ar
1615         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1616         cd ${.CURDIR}/${_tool}; \
1617         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
1618         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
1619         ${CDMAKE} DIRPRFX=${_tool}/ all
1620 .endfor
1621
1622 _xi-mtree:
1623         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1624         mkdir -p ${XDDESTDIR}
1625         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1626             -p ${XDDESTDIR} >/dev/null
1627         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1628             -p ${XDDESTDIR}/usr >/dev/null
1629         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1630             -p ${XDDESTDIR}/usr/include >/dev/null
1631
1632 .ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1633 xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1634
1635 _xi-cross-tools:
1636         @echo "_xi-cross-tools"
1637 .for _tool in \
1638     gnu/usr.bin/binutils \
1639     gnu/usr.bin/cc \
1640     usr.bin/ar
1641         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1642         cd ${.CURDIR}/${_tool}; \
1643         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1644 .endfor
1645
1646 _xi-includes:
1647         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1648                 DESTDIR=${XDDESTDIR}
1649
1650 _xi-libraries:
1651         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1652                 DESTDIR=${XDDESTDIR}
1653
1654 _xi-links:
1655         ${_+_}cd ${XDDESTDIR}/usr/bin; \
1656                 for i in *; do \
1657                         ln -sf ../../${XDTP}/usr/bin/$$i \
1658                             ../../../../usr/bin/${XDDIR}-$$i; \
1659                         ln -sf ../../${XDTP}/usr/bin/$$i \
1660                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1661                 done
1662 .else
1663 xdev xdev-buil xdev-install:
1664         @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
1665 .endif