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