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