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