]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
Use correct Config registers for RTL8139 family. Unlike RTL8168 and
[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_KERBEROS} != "no"
1112 _kerberos5_tools= kerberos5/tools
1113 .endif
1114
1115 .if ${MK_RESCUE} != "no"
1116 _rescue= rescue/rescue
1117 .endif
1118
1119 build-tools:
1120 .for _tool in \
1121     bin/csh \
1122     bin/sh \
1123     ${_rescue} \
1124     ${LOCAL_TOOL_DIRS} \
1125     lib/ncurses/ncurses \
1126     lib/ncurses/ncursesw \
1127     ${_share} \
1128     ${_aicasm} \
1129     usr.bin/awk \
1130     lib/libmagic \
1131     usr.bin/mkesdb_static \
1132     usr.bin/mkcsmapper_static
1133         ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
1134                 cd ${.CURDIR}/${_tool}; \
1135                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1136                 ${MAKE} DIRPRFX=${_tool}/ build-tools
1137 .endfor
1138 .for _tool in \
1139     gnu/usr.bin/cc/cc_tools \
1140     ${_kerberos5_tools}
1141         ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
1142                 cd ${.CURDIR}/${_tool}; \
1143                 ${MAKE} DIRPRFX=${_tool}/ obj; \
1144                 ${MAKE} DIRPRFX=${_tool}/ depend; \
1145                 ${MAKE} DIRPRFX=${_tool}/ all
1146 .endfor
1147
1148 #
1149 # cross-tools: Build cross-building tools
1150 #
1151 .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1152 .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1153 _btxld=         usr.sbin/btxld
1154 .endif
1155 .endif
1156 .if ${TARGET_ARCH} != ${MACHINE_ARCH}
1157 .if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1158 _crunchide=     usr.sbin/crunch/crunchide
1159 .endif
1160 .if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1161 _kgzip=         usr.sbin/kgzip
1162 .endif
1163 .endif
1164
1165 .if ${MK_BINUTILS} != "no"
1166 _binutils=      gnu/usr.bin/binutils
1167 .endif
1168
1169 .if ${MK_CLANG} != "no"
1170 .if ${CC:T:Mclang} == "clang"
1171 _clang=         usr.bin/clang
1172 _clang_libs=    lib/clang
1173 .endif
1174 .endif
1175
1176 .if ${MK_GCC} != "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
1245 _prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \
1246                 ${_kerberos5_lib_libheimntlm} \
1247                 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \
1248                 ${_kerberos5_lib_libroken} \
1249                 lib/libbz2 lib/libcom_err lib/libcrypt \
1250                 lib/libexpat \
1251                 ${_lib_libgssapi} ${_lib_libipx} \
1252                 lib/libkiconv lib/libkvm lib/liblzma lib/libmd \
1253                 lib/ncurses/ncurses lib/ncurses/ncursesw \
1254                 lib/libopie lib/libpam ${_lib_libthr} \
1255                 lib/libradius lib/libsbuf lib/libtacplus \
1256                 ${_cddl_lib_libumem} \
1257                 lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
1258                 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1259                 ${_secure_lib_libssl}
1260
1261 .if ${MK_LIBTHR} != "no"
1262 _lib_libthr=    lib/libthr
1263 .endif
1264
1265 .if ${MK_OFED} != "no"
1266 _ofed_lib=      contrib/ofed/usr.lib/
1267 .endif
1268
1269 _generic_libs=  ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib}
1270
1271 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1272
1273 .if ${MK_CDDL} != "no"
1274 _cddl_lib_libumem= cddl/lib/libumem
1275 _cddl_lib= cddl/lib
1276 .endif
1277
1278 .if ${MK_CRYPT} != "no"
1279 .if ${MK_OPENSSL} != "no"
1280 _secure_lib_libcrypto= secure/lib/libcrypto
1281 _secure_lib_libssl= secure/lib/libssl
1282 lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1283 .if ${MK_OPENSSH} != "no"
1284 _secure_lib_libssh= secure/lib/libssh
1285 secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1286 .if ${MK_KERBEROS_SUPPORT} != "no"
1287 secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \
1288     kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1289     lib/libmd__L kerberos5/lib/libroken__L
1290 .endif
1291 .endif
1292 .endif
1293 _secure_lib=    secure/lib
1294 .endif
1295
1296 .if ${MK_KERBEROS} != "no"
1297 kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L
1298 kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1299     kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L
1300 kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L
1301 kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1302     secure/lib/libcrypto__L kerberos5/lib/libroken__L
1303 kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \
1304     lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \
1305     kerberos5/lib/libroken__L
1306 kerberos5/lib/libroken__L: lib/libcrypt__L
1307 .endif
1308
1309 .if ${MK_GSSAPI} != "no"
1310 _lib_libgssapi= lib/libgssapi
1311 .endif
1312
1313 .if ${MK_IPX} != "no"
1314 _lib_libipx=    lib/libipx
1315 .endif
1316
1317 .if ${MK_KERBEROS} != "no"
1318 _kerberos5_lib= kerberos5/lib
1319 _kerberos5_lib_libasn1= kerberos5/lib/libasn1
1320 _kerberos5_lib_libhdb= kerberos5/lib/libhdb
1321 _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1322 _kerberos5_lib_libhx509= kerberos5/lib/libhx509
1323 _kerberos5_lib_libroken= kerberos5/lib/libroken
1324 _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1325 .endif
1326
1327 .if ${MK_NIS} != "no"
1328 _lib_libypclnt= lib/libypclnt
1329 .endif
1330
1331 .if ${MK_OPENSSL} == "no"
1332 lib/libradius__L: lib/libmd__L
1333 .endif
1334
1335 .for _lib in ${_prereq_libs}
1336 ${_lib}__PL: .PHONY
1337 .if exists(${.CURDIR}/${_lib})
1338         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1339                 cd ${.CURDIR}/${_lib}; \
1340                 ${MAKE} DIRPRFX=${_lib}/ obj; \
1341                 ${MAKE} DIRPRFX=${_lib}/ depend; \
1342                 ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1343                 ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1344 .endif
1345 .endfor
1346
1347 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1348 ${_lib}__L: .PHONY
1349 .if exists(${.CURDIR}/${_lib})
1350         ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1351                 cd ${.CURDIR}/${_lib}; \
1352                 ${MAKE} DIRPRFX=${_lib}/ obj; \
1353                 ${MAKE} DIRPRFX=${_lib}/ depend; \
1354                 ${MAKE} DIRPRFX=${_lib}/ all; \
1355                 ${MAKE} DIRPRFX=${_lib}/ install
1356 .endif
1357 .endfor
1358
1359 # libpam is special: we need to build static PAM modules before
1360 # static PAM library, and dynamic PAM library before dynamic PAM
1361 # modules.
1362 lib/libpam__L: .PHONY
1363         ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1364                 cd ${.CURDIR}/lib/libpam; \
1365                 ${MAKE} DIRPRFX=lib/libpam/ obj; \
1366                 ${MAKE} DIRPRFX=lib/libpam/ depend; \
1367                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1368                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1369
1370 _prereq_libs: ${_prereq_libs:S/$/__PL/}
1371 _startup_libs: ${_startup_libs:S/$/__L/}
1372 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1373 _generic_libs: ${_generic_libs:S/$/__L/}
1374
1375 .for __target in all clean cleandepend cleandir depend includes obj
1376 .for entry in ${SUBDIR}
1377 ${entry}.${__target}__D: .PHONY
1378         ${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1379                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1380                 edir=${entry}.${MACHINE_ARCH}; \
1381                 cd ${.CURDIR}/$${edir}; \
1382         else \
1383                 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1384                 edir=${entry}; \
1385                 cd ${.CURDIR}/$${edir}; \
1386         fi; \
1387         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1388 .endfor
1389 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1390 .endfor
1391
1392 .include <bsd.subdir.mk>
1393
1394 .if make(check-old) || make(check-old-dirs) || \
1395     make(check-old-files) || make(check-old-libs) || \
1396     make(delete-old) || make(delete-old-dirs) || \
1397     make(delete-old-files) || make(delete-old-libs)
1398
1399 #
1400 # check for / delete old files section
1401 #
1402
1403 .include "ObsoleteFiles.inc"
1404
1405 OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1406 else you can not start such an application. Consult UPDATING for more \
1407 information regarding how to cope with the removal/revision bump of a \
1408 specific library."
1409
1410 .if !defined(BATCH_DELETE_OLD_FILES)
1411 RM_I=-i
1412 .else
1413 RM_I=-v
1414 .endif
1415
1416 delete-old-files:
1417         @echo ">>> Removing old files (only deletes safe to delete libs)"
1418 # Ask for every old file if the user really wants to remove it.
1419 # It's annoying, but better safe than sorry.
1420 # NB: We cannot pass the list of OLD_FILES as a parameter because the
1421 # argument list will get too long. Using .for/.endfor make "loops" will make
1422 # the Makefile parser segfault.
1423         @exec 3<&0; \
1424         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1425             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1426         while read file; do \
1427                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1428                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1429                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1430                 fi; \
1431         done
1432 # Remove catpages without corresponding manpages.
1433         @exec 3<&0; \
1434         find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1435         sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1436         while read catpage; do \
1437                 read manpage; \
1438                 if [ ! -e "$${manpage}" ]; then \
1439                         rm ${RM_I} $${catpage} <&3; \
1440                 fi; \
1441         done
1442         @echo ">>> Old files removed"
1443
1444 check-old-files:
1445         @echo ">>> Checking for old files"
1446         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1447             -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \
1448         while read file; do \
1449                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1450                         echo "${DESTDIR}/$${file}"; \
1451                 fi; \
1452         done
1453 # Check for catpages without corresponding manpages.
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                         echo $${catpage}; \
1460                 fi; \
1461         done
1462
1463 delete-old-libs:
1464         @echo ">>> Removing old libraries"
1465         @echo "${OLD_LIBS_MESSAGE}" | fmt
1466         @exec 3<&0; \
1467         ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1468             -V OLD_LIBS | xargs -n1 | \
1469         while read file; do \
1470                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1471                         chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1472                         rm ${RM_I} "${DESTDIR}/$${file}" <&3; \
1473                 fi; \
1474         done
1475         @echo ">>> Old libraries removed"
1476
1477 check-old-libs:
1478         @echo ">>> Checking for old libraries"
1479         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1480             -V OLD_LIBS | xargs -n1 | \
1481         while read file; do \
1482                 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1483                         echo "${DESTDIR}/$${file}"; \
1484                 fi; \
1485         done
1486
1487 delete-old-dirs:
1488         @echo ">>> Removing old directories"
1489         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1490             -V OLD_DIRS | xargs -n1 | \
1491         while read dir; do \
1492                 if [ -d "${DESTDIR}/$${dir}" ]; then \
1493                         rmdir -v "${DESTDIR}/$${dir}" || true; \
1494                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
1495                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1496                 fi; \
1497         done
1498         @echo ">>> Old directories removed"
1499
1500 check-old-dirs:
1501         @echo ">>> Checking for old directories"
1502         @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \
1503             -V OLD_DIRS | xargs -n1 | \
1504         while read dir; do \
1505                 if [ -d "${DESTDIR}/$${dir}" ]; then \
1506                         echo "${DESTDIR}/$${dir}"; \
1507                 elif [ -L "${DESTDIR}/$${dir}" ]; then \
1508                         echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1509                 fi; \
1510         done
1511
1512 delete-old: delete-old-files delete-old-dirs
1513         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
1514
1515 check-old: check-old-files check-old-libs check-old-dirs
1516         @echo "To remove old files and directories run '${MAKE} delete-old'."
1517         @echo "To remove old libraries run '${MAKE} delete-old-libs'."
1518
1519 .endif
1520
1521 #
1522 # showconfig - show build configuration.
1523 #
1524 showconfig:
1525         @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1526
1527 .if !empty(KRNLOBJDIR) && !empty(KERNCONF)
1528 DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/
1529
1530 .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE)
1531 .if exists(${KERNCONFDIR}/${KERNCONF})
1532 FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \
1533         ${KERNCONFDIR}/${KERNCONF}
1534 .endif
1535 .endif
1536
1537 .endif
1538
1539 .if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH})
1540 DTBOUTPUTPATH= ${.CURDIR}
1541 .endif
1542
1543 #
1544 # Build 'standalone' Device Tree Blob
1545 #
1546 builddtb:
1547         @if [ "${FDT_DTS_FILE}" = "" ]; then \
1548                 echo "ERROR: FDT_DTS_FILE must be specified!"; \
1549                 exit 1; \
1550         fi;     \
1551         if [ ! -f ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE} ]; then \
1552                 echo "ERROR: Specified DTS file (${FDT_DTS_FILE}) does not \
1553                         exist!"; \
1554                 exit 1; \
1555         fi;     \
1556         if [ "${DTBOUTPUTPATH}" = "${.CURDIR}" ]; then  \
1557                 echo "WARNING: DTB will be placed in the current working \
1558                         directory"; \
1559         fi
1560         @PATH=${TMPPATH} \
1561         dtc -O dtb -o \
1562             ${DTBOUTPUTPATH}/`echo ${FDT_DTS_FILE} | cut -d. -f1`.dtb -b 0 \
1563             -p 1024 ${.CURDIR}/sys/boot/fdt/dts/${FDT_DTS_FILE}
1564
1565 ###############
1566
1567 .if defined(XDEV) && defined(XDEV_ARCH)
1568
1569 .if ${XDEV} == ${MACHINE} && ${XDEV_ARCH} == ${MACHINE_ARCH}
1570 XDEV_CPUTYPE?=${CPUTYPE}
1571 .else
1572 XDEV_CPUTYPE?=${TARGET_CPUTYPE}
1573 .endif
1574
1575 NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \
1576         -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \
1577         -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \
1578         TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \
1579         CPUTYPE=${XDEV_CPUTYPE}
1580
1581 XDDIR=${XDEV_ARCH}-freebsd
1582 XDTP=/usr/${XDDIR}
1583 CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR}
1584 CDENV= ${CDBENV} \
1585         _SHLIBDIRPREFIX=${XDTP} \
1586         TOOLS_PREFIX=${XDTP}
1587 CD2ENV=${CDENV} \
1588         MACHINE=${XDEV} MACHINE_ARCH=${XDEV_ARCH}
1589
1590 CDTMP=  ${MAKEOBJDIRPREFIX}/${XDEV}/${.CURDIR}/tmp
1591 CDMAKE=${CDENV} ${MAKE} ${NOFUN}
1592 CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDTP}/usr/bin:${PATH} ${MAKE} ${NOFUN}
1593 XDDESTDIR=${DESTDIR}${XDTP}
1594 .if !defined(OSREL)
1595 OSREL!= uname -r | sed -e 's/[-(].*//'
1596 .endif
1597
1598 .ORDER: xdev-build xdev-install
1599 xdev: xdev-build xdev-install
1600
1601 .ORDER: _xb-build-tools _xb-cross-tools
1602 xdev-build: _xb-build-tools _xb-cross-tools
1603
1604 _xb-build-tools:
1605         ${_+_}@cd ${.CURDIR}; \
1606         ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools
1607
1608 _xb-cross-tools:
1609 .for _tool in \
1610     gnu/usr.bin/binutils \
1611     gnu/usr.bin/cc \
1612     usr.bin/ar
1613         ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \
1614         cd ${.CURDIR}/${_tool}; \
1615         ${CDMAKE} DIRPRFX=${_tool}/ obj; \
1616         ${CDMAKE} DIRPRFX=${_tool}/ depend; \
1617         ${CDMAKE} DIRPRFX=${_tool}/ all
1618 .endfor
1619
1620 _xi-mtree:
1621         ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}"
1622         mkdir -p ${XDDESTDIR}
1623         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
1624             -p ${XDDESTDIR} >/dev/null
1625         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
1626             -p ${XDDESTDIR}/usr >/dev/null
1627         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
1628             -p ${XDDESTDIR}/usr/include >/dev/null
1629
1630 .ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1631 xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links
1632
1633 _xi-cross-tools:
1634         @echo "_xi-cross-tools"
1635 .for _tool in \
1636     gnu/usr.bin/binutils \
1637     gnu/usr.bin/cc \
1638     usr.bin/ar
1639         ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \
1640         cd ${.CURDIR}/${_tool}; \
1641         ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR}
1642 .endfor
1643
1644 _xi-includes:
1645         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 par-includes \
1646                 DESTDIR=${XDDESTDIR}
1647
1648 _xi-libraries:
1649         ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \
1650                 DESTDIR=${XDDESTDIR}
1651
1652 _xi-links:
1653         ${_+_}cd ${XDDESTDIR}/usr/bin; \
1654                 for i in *; do \
1655                         ln -sf ../../${XDTP}/usr/bin/$$i \
1656                             ../../../../usr/bin/${XDDIR}-$$i; \
1657                         ln -sf ../../${XDTP}/usr/bin/$$i \
1658                             ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \
1659                 done
1660 .else
1661 xdev xdev-buil xdev-install:
1662         @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target"
1663 .endif