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