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