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