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