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