Makefile.inc1 revision 184205
1#
2# $FreeBSD: head/Makefile.inc1 184205 2008-10-23 15:53:51Z des $
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"
31MK_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#
43SUBDIR=	share/info lib libexec
44SUBDIR+=bin
45.if ${MK_GAMES} != "no"
46SUBDIR+=games
47.endif
48.if ${MK_CDDL} != "no"
49SUBDIR+=cddl
50.else
51NO_CTF=1
52.endif
53SUBDIR+=gnu include
54.if ${MK_KERBEROS} != "no"
55SUBDIR+=kerberos5
56.endif
57.if ${MK_RESCUE} != "no"
58SUBDIR+=rescue
59.endif
60SUBDIR+=sbin
61.if ${MK_CRYPT} != "no"
62SUBDIR+=secure
63.endif
64.if !defined(NO_SHARE)
65SUBDIR+=share
66.endif
67SUBDIR+=sys usr.bin usr.sbin
68#
69# We must do etc/ last for install/distribute to work.
70#
71SUBDIR+=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)
77SUBDIR+= ${_DIR}
78.endif
79.endfor
80
81.if defined(SUBDIR_OVERRIDE)
82SUBDIR=		${SUBDIR_OVERRIDE}
83.endif
84
85.if defined(NOCLEAN)
86NO_CLEAN=	${NOCLEAN}
87.endif
88.if defined(NO_CLEANDIR)
89CLEANDIR=	clean cleandepend
90.else
91CLEANDIR=	cleandir
92.endif
93
94CVS?=		cvs
95CVSFLAGS?=	-A -P -d -I!
96SUP?=		/usr/bin/csup
97SUPFLAGS?=	-g -L 2
98.if defined(SUPHOST)
99SUPFLAGS+=	-h ${SUPHOST}
100.endif
101
102MAKEOBJDIRPREFIX?=	/usr/obj
103.if !defined(OSRELDATE)
104.if exists(/usr/include/osreldate.h)
105OSRELDATE!=	awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
106		/usr/include/osreldate.h
107.else
108OSRELDATE=	0
109.endif
110.endif
111
112.if !defined(VERSION)
113VERSION!=	uname -srp
114VERSION+=	${OSRELDATE}
115.endif
116
117# Guess machine architecture from machine type, and vice versa.
118.if !defined(TARGET_ARCH) && defined(TARGET)
119TARGET_ARCH=	${TARGET:S/pc98/i386/:S/sun4v/sparc64/}
120.elif !defined(TARGET) && defined(TARGET_ARCH) && \
121    ${TARGET_ARCH} != ${MACHINE_ARCH}
122TARGET=		${TARGET_ARCH}
123.endif
124# Otherwise, default to current machine type and architecture.
125TARGET?=	${MACHINE}
126TARGET_ARCH?=	${MACHINE_ARCH}
127
128KNOWN_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}
141TARGET_CPUTYPE?=${CPUTYPE}
142.else
143TARGET_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)
157BUILD_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)
163OBJTREE=	${MAKEOBJDIRPREFIX}
164.else
165OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}
166.endif
167WORLDTMP=	${OBJTREE}${.CURDIR}/tmp
168# /usr/games added for fortune which depend on strfile
169BPATH=		${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
170XPATH=		${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
171STRICTTMPPATH=	${BPATH}:${XPATH}
172TMPPATH=	${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)
180INSTALLTMP!=	/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
208BOOTSTRAPPING?=	0
209
210# Common environment for world related stages
211CROSSENV=	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
219CROSSENV+=	AR=gnu-ar RANLIB=gnu-ranlib
220.endif
221
222# bootstrap-tools stage
223BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
224		PATH=${BPATH}:${PATH} \
225		WORLDTMP=${WORLDTMP} \
226		VERSION="${VERSION}" \
227		MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
228BMAKE=		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
238TMAKE=		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
246XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \
247		TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \
248		-DWITHOUT_GDB
249
250# world stage
251WMAKEENV=	${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)
257WMAKEENV+=	NO_CTF=1
258.endif
259WMAKE=		${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP}
260
261.if ${TARGET_ARCH} == "amd64"
262# 32 bit world
263LIB32TMP=	${OBJTREE}${.CURDIR}/lib32
264
265.if empty(TARGET_CPUTYPE)
266LIB32CPUFLAGS=	-march=i686 -mmmx -msse -msse2
267.else
268LIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
269.endif
270LIB32FLAGS=	-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.
276LIB32WMAKEENV=	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
291LIB32WMAKE=	${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \
292		-DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_INFO \
293		-DWITHOUT_HTML -DNO_CTF DESTDIR=${LIB32TMP}
294LIB32IMAKE=	${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS
295.endif
296
297# install stage
298IMAKEENV=	${CROSSENV}
299IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1
300.if empty(.MAKEFLAGS:M-n)
301IMAKEENV+=	PATH=${STRICTTMPPATH}:${INSTALLTMP} \
302		LD_LIBRARY_PATH=${INSTALLTMP} \
303		PATH_LOCALE=${INSTALLTMP}/locale
304IMAKE+=		__MAKE_SHELL=${INSTALLTMP}/sh
305.else
306IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
307.endif
308
309# kernel stage
310KMAKEENV=	${WMAKEENV}
311KMAKE=		${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
437everything:
438	@echo
439	@echo "--------------------------------------------------------------"
440	@echo ">>> stage 4.4: building everything"
441	@echo "--------------------------------------------------------------"
442	${_+_}cd ${.CURDIR}; ${WMAKE} par-all
443.if ${TARGET_ARCH} == "amd64"
444build32:
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
493distribute32 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
514WMAKE_TGTS=
515.if !defined(SUBDIR_OVERRIDE)
516WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
517.endif
518WMAKE_TGTS+=	_cleanobj _obj _build-tools
519.if !defined(SUBDIR_OVERRIDE)
520WMAKE_TGTS+=	_cross-tools
521.endif
522WMAKE_TGTS+=	_includes _libraries _depend everything
523.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no"
524WMAKE_TGTS+=	build32
525.endif
526
527buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
528.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
529
530buildworld_prologue:
531	@echo "--------------------------------------------------------------"
532	@echo ">>> World build started on `LC_ALL=C date`"
533	@echo "--------------------------------------------------------------"
534
535buildworld_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#
547buildenvvars:
548	@echo ${WMAKEENV:Q}
549
550buildenv:
551	@echo Entering world for ${TARGET_ARCH}:${TARGET}
552	@cd ${.CURDIR} && env ${WMAKEENV} sh || true
553
554TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
555toolchain: ${TOOLCHAIN_TGTS}
556kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
557
558#
559# installcheck
560#
561# Checks to be sure system is ready for installworld/installkernel.
562#
563installcheck:
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)
570installcheck: installcheck_DESTDIR
571installcheck_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#
582CHECK_UIDS=
583CHECK_GIDS=	audit
584.if ${MK_SENDMAIL} != "no"
585CHECK_UIDS+=	smmsp
586CHECK_GIDS+=	smmsp
587.endif
588.if ${MK_PF} != "no"
589CHECK_UIDS+=	proxy
590CHECK_GIDS+=	proxy authpf
591.endif
592installcheck: installcheck_UGID
593installcheck_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#
610ITOOLS=	[ 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#
624distributeworld 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#
656reinstall:
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
670redistribute:
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
680distrib-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)
698KERNCONF=	${KERNEL}
699KERNWARN=
700.else
701KERNCONF?=	GENERIC
702.endif
703INSTKERNNAME?=	kernel
704
705KERNSRCDIR?=	${.CURDIR}/sys
706KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
707KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
708KERNCONFDIR?=	${KRNLCONFDIR}
709
710BUILDKERNELS=
711INSTALLKERNEL=
712.for _kernel in ${KERNCONF}
713.if exists(${KERNCONFDIR}/${_kernel})
714BUILDKERNELS+=	${_kernel}
715.if empty(INSTALLKERNEL)
716INSTALLKERNEL= ${_kernel}
717.endif
718.endif
719.endfor
720
721#
722# buildkernel
723#
724# Builds all kernels defined by BUILDKERNELS.
725#
726buildkernel:
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.if !defined(NO_KERNELOBJ)
762	@echo
763	@echo "--------------------------------------------------------------"
764	@echo ">>> stage 2.2: rebuilding the object tree"
765	@echo "--------------------------------------------------------------"
766	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
767.endif
768.if !defined(NO_KERNELTOOLS)
769	@echo
770	@echo "--------------------------------------------------------------"
771	@echo ">>> stage 2.3: build tools"
772	@echo "--------------------------------------------------------------"
773	cd ${KRNLOBJDIR}/${_kernel}; \
774	    MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
775	    ${MAKE} -DWITHOUT_SSP -DNO_CPU_CFLAGS -DNO_CTF \
776	    -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
777# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
778.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
779.for target in obj depend all
780	cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \
781	    MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
782	    ${MAKE} -DWITHOUT_SSP -DNO_CPU_CFLAGS -DNO_CTF ${target}
783.endfor
784.endif
785.endif
786.if !defined(NO_KERNELDEPEND)
787	@echo
788	@echo "--------------------------------------------------------------"
789	@echo ">>> stage 3.1: making dependencies"
790	@echo "--------------------------------------------------------------"
791	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
792.endif
793	@echo
794	@echo "--------------------------------------------------------------"
795	@echo ">>> stage 3.2: building everything"
796	@echo "--------------------------------------------------------------"
797	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
798	@echo "--------------------------------------------------------------"
799	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
800	@echo "--------------------------------------------------------------"
801.endfor
802
803#
804# installkernel, etc.
805#
806# Install the kernel defined by INSTALLKERNEL
807#
808installkernel installkernel.debug \
809reinstallkernel reinstallkernel.debug: installcheck
810.if empty(INSTALLKERNEL)
811	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
812	false
813.endif
814	@echo "--------------------------------------------------------------"
815	@echo ">>> Installing kernel"
816	@echo "--------------------------------------------------------------"
817	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
818	    ${CROSSENV} PATH=${TMPPATH} \
819	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
820
821#
822# doxygen
823#
824# Build the API documentation with doxygen
825#
826doxygen:
827	@if [ ! -x `/usr/bin/which doxygen` ]; then \
828		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
829		exit 1; \
830	fi
831	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
832
833#
834# update
835#
836# Update the source tree, by running cvsup and/or running cvs to update to the
837# latest copy.
838#
839update:
840.if defined(SUP_UPDATE)
841	@echo "--------------------------------------------------------------"
842	@echo ">>> Running ${SUP}"
843	@echo "--------------------------------------------------------------"
844.if defined(SUPFILE)
845	@${SUP} ${SUPFLAGS} ${SUPFILE}
846.endif
847.if defined(SUPFILE1)
848	@${SUP} ${SUPFLAGS} ${SUPFILE1}
849.endif
850.if defined(SUPFILE2)
851	@${SUP} ${SUPFLAGS} ${SUPFILE2}
852.endif
853.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
854	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
855.endif
856.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
857	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
858.endif
859.endif
860.if defined(CVS_UPDATE)
861	@echo "--------------------------------------------------------------"
862	@echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
863	@echo "--------------------------------------------------------------"
864	cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS}
865.endif
866
867#
868# ------------------------------------------------------------------------
869#
870# From here onwards are utility targets used by the 'make world' and
871# related targets.  If your 'world' breaks, you may like to try to fix
872# the problem and manually run the following targets to attempt to
873# complete the build.  Beware, this is *not* guaranteed to work, you
874# need to have a pretty good grip on the current state of the system
875# to attempt to manually finish it.  If in doubt, 'make world' again.
876#
877
878#
879# legacy: Build compatibility shims for the next three targets
880#
881legacy:
882.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
883	@echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
884	false
885.endif
886.for _tool in tools/build
887	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
888	    cd ${.CURDIR}/${_tool}; \
889	    ${MAKE} DIRPRFX=${_tool}/ obj; \
890	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
891	    ${MAKE} DIRPRFX=${_tool}/ depend; \
892	    ${MAKE} DIRPRFX=${_tool}/ all; \
893	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
894.endfor
895
896#
897# bootstrap-tools: Build tools needed for compatibility
898#
899.if ${MK_GAMES} != "no"
900_strfile=	games/fortune/strfile
901.endif
902
903.if ${MK_CXX} != "no"
904_gperf=		gnu/usr.bin/gperf
905.if ${BOOTSTRAPPING} < 700004
906_groff=		gnu/usr.bin/groff
907.else
908_groff=		gnu/usr.bin/groff/tmac
909.endif
910.endif
911
912.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
913_ar=		usr.bin/ar
914.endif
915
916.if ${BOOTSTRAPPING} < 800013
917_mklocale=	usr.bin/mklocale
918.endif
919
920.if ${BOOTSTRAPPING} < 700018
921_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
922.endif
923
924.if ${MK_RESCUE} != "no" && \
925    ${BOOTSTRAPPING} < 700026
926_crunchgen=	usr.sbin/crunch/crunchgen
927.endif
928
929.if ${MK_CDDL} != "no"
930_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
931    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
932.endif
933
934bootstrap-tools:
935.for _tool in \
936    ${_dtrace_tools} \
937    ${_strfile} \
938    ${_gperf} \
939    ${_groff} \
940    ${_ar} \
941    usr.bin/lorder \
942    usr.bin/makewhatis \
943    ${_mklocale} \
944    usr.bin/rpcgen \
945    usr.bin/xinstall \
946    ${_gensnmptree} \
947    usr.sbin/config \
948    ${_crunchgen}
949	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
950		cd ${.CURDIR}/${_tool}; \
951		${MAKE} DIRPRFX=${_tool}/ obj; \
952		${MAKE} DIRPRFX=${_tool}/ depend; \
953		${MAKE} DIRPRFX=${_tool}/ all; \
954		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
955.endfor
956
957#
958# build-tools: Build special purpose build tools
959#
960.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
961_aicasm= sys/modules/aic7xxx/aicasm
962.endif
963
964.if !defined(NO_SHARE)
965_share=	share/syscons/scrnmaps
966.endif
967
968.if ${MK_KERBEROS} != "no"
969_kerberos5_tools= kerberos5/tools
970.endif
971
972.if ${MK_RESCUE} != "no"
973_rescue= rescue/rescue
974.endif
975
976build-tools:
977.for _tool in \
978    bin/csh \
979    bin/sh \
980    ${_rescue} \
981    lib/ncurses/ncurses \
982    lib/ncurses/ncursesw \
983    ${_share} \
984    ${_aicasm} \
985    usr.bin/awk \
986    lib/libmagic \
987    usr.sbin/sysinstall
988	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
989		cd ${.CURDIR}/${_tool}; \
990		${MAKE} DIRPRFX=${_tool}/ obj; \
991		${MAKE} DIRPRFX=${_tool}/ build-tools
992.endfor
993.for _tool in \
994    gnu/usr.bin/cc/cc_tools \
995    ${_kerberos5_tools}
996	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
997		cd ${.CURDIR}/${_tool}; \
998		${MAKE} DIRPRFX=${_tool}/ obj; \
999		${MAKE} DIRPRFX=${_tool}/ depend; \
1000		${MAKE} DIRPRFX=${_tool}/ all
1001.endfor
1002
1003#
1004# cross-tools: Build cross-building tools
1005#
1006.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1007.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1008_btxld=		usr.sbin/btxld
1009.endif
1010.endif
1011.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1012.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1013_crunchide=	usr.sbin/crunch/crunchide
1014.endif
1015.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1016_kgzip=		usr.sbin/kgzip
1017.endif
1018.endif
1019
1020cross-tools:
1021.for _tool in \
1022    gnu/usr.bin/binutils \
1023    gnu/usr.bin/cc \
1024    usr.bin/sed \
1025    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1026    ${_btxld} \
1027    ${_crunchide} \
1028    ${_kgzip}
1029	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1030		cd ${.CURDIR}/${_tool}; \
1031		${MAKE} DIRPRFX=${_tool}/ obj; \
1032		${MAKE} DIRPRFX=${_tool}/ depend; \
1033		${MAKE} DIRPRFX=${_tool}/ all; \
1034		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1035.endfor
1036
1037#
1038# hierarchy - ensure that all the needed directories are present
1039#
1040hierarchy:
1041	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
1042
1043#
1044# libraries - build all libraries, and install them under ${DESTDIR}.
1045#
1046# The list of libraries with dependents (${_prebuild_libs}) and their
1047# interdependencies (__L) are built automatically by the
1048# ${.CURDIR}/tools/make_libdeps.sh script.
1049#
1050libraries:
1051	cd ${.CURDIR}; \
1052	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1053	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1054	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1055	    ${MAKE} -f Makefile.inc1 _generic_libs;
1056
1057#
1058# static libgcc.a prerequisite for shared libc
1059#
1060_prereq_libs= gnu/lib/libgcc
1061
1062# These dependencies are not automatically generated:
1063#
1064# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1065# all shared libraries for ELF.
1066#
1067_startup_libs=	gnu/lib/csu
1068.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1069_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1070.else
1071_startup_libs+=	lib/csu/${MACHINE_ARCH}
1072.endif
1073_startup_libs+=	gnu/lib/libgcc
1074_startup_libs+=	lib/libc
1075
1076gnu/lib/libgcc__L: lib/libc__L
1077
1078_prebuild_libs=	${_kerberos5_lib_libasn1} ${_kerberos5_lib_libkrb5} \
1079		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libroken} \
1080		${_kerberos5_lib_libheimntlm} ${_kerberos5_lib_libgssapi_krb5} \
1081		lib/libbz2 lib/libcom_err lib/libcrypt lib/libelf \
1082		lib/libexpat \
1083		${_lib_cddl} ${_lib_libgssapi} ${_lib_libipx} \
1084		lib/libkiconv lib/libkvm lib/libmd \
1085		lib/ncurses/ncurses lib/ncurses/ncursesw \
1086		lib/libopie lib/libpam ${_lib_libthr} \
1087		lib/libradius lib/libsbuf lib/libtacplus lib/libutil \
1088		${_lib_libypclnt} lib/libz lib/msun \
1089		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1090		${_secure_lib_libssl} lib/libdwarf lib/libproc
1091
1092.if ${MK_LIBTHR} != "no"
1093_lib_libthr=	lib/libthr
1094.endif
1095
1096_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib
1097
1098lib/libopie__L lib/libtacplus__L: lib/libmd__L
1099
1100.if ${MK_CDDL} != "no"
1101_cddl_lib= cddl/lib
1102.endif
1103
1104.if ${MK_CRYPT} != "no"
1105.if ${MK_OPENSSL} != "no"
1106_secure_lib_libcrypto= secure/lib/libcrypto
1107_secure_lib_libssl= secure/lib/libssl
1108lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1109.if ${MK_OPENSSH} != "no"
1110_secure_lib_libssh= secure/lib/libssh
1111secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1112.if ${MK_KERBEROS} != "no"
1113kerberos5/lib/libgssapi_krb5__L: kerberos5/lib/libkrb5__L \
1114    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1115    lib/libmd__L kerberos5/lib/libroken__L secure/lib/libcrypto__L \
1116    lib/libcrypt__L
1117secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libgssapi_krb5__L
1118.endif
1119.endif
1120.endif
1121_secure_lib=	secure/lib
1122.endif
1123
1124.if ${MK_IPX} != "no"
1125_lib_libipx=	lib/libipx
1126.endif
1127
1128.if ${MK_KERBEROS} != "no"
1129_kerberos5_lib=	kerberos5/lib
1130_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1131_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1132_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1133_kerberos5_lib_libroken= kerberos5/lib/libroken
1134_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1135_kerberos5_lib_libgssapi_krb5= kerberos5/lib/libgssapi_krb5
1136_lib_libgssapi=	lib/libgssapi
1137.endif
1138
1139.if ${MK_NIS} != "no"
1140_lib_libypclnt=	lib/libypclnt
1141.endif
1142
1143.if ${MK_OPENSSL} == "no"
1144lib/libradius__L: lib/libmd__L
1145.endif
1146
1147.for _lib in ${_prereq_libs}
1148${_lib}__PL: .PHONY
1149.if exists(${.CURDIR}/${_lib})
1150	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1151		cd ${.CURDIR}/${_lib}; \
1152		${MAKE} DIRPRFX=${_lib}/ obj; \
1153		${MAKE} DIRPRFX=${_lib}/ depend; \
1154		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1155		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1156.endif
1157.endfor
1158
1159.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1160${_lib}__L: .PHONY
1161.if exists(${.CURDIR}/${_lib})
1162	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1163		cd ${.CURDIR}/${_lib}; \
1164		${MAKE} DIRPRFX=${_lib}/ obj; \
1165		${MAKE} DIRPRFX=${_lib}/ depend; \
1166		${MAKE} DIRPRFX=${_lib}/ all; \
1167		${MAKE} DIRPRFX=${_lib}/ install
1168.endif
1169.endfor
1170
1171# libpam is special: we need to build static PAM modules before
1172# static PAM library, and dynamic PAM library before dynamic PAM
1173# modules.
1174lib/libpam__L: .PHONY
1175	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1176		cd ${.CURDIR}/lib/libpam; \
1177		${MAKE} DIRPRFX=lib/libpam/ obj; \
1178		${MAKE} DIRPRFX=lib/libpam/ depend; \
1179		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1180		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1181
1182_prereq_libs: ${_prereq_libs:S/$/__PL/}
1183_startup_libs: ${_startup_libs:S/$/__L/}
1184_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1185_generic_libs: ${_generic_libs:S/$/__L/}
1186
1187.for __target in all clean cleandepend cleandir depend includes obj
1188.for entry in ${SUBDIR}
1189${entry}.${__target}__D: .PHONY
1190	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1191		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1192		edir=${entry}.${MACHINE_ARCH}; \
1193		cd ${.CURDIR}/$${edir}; \
1194	else \
1195		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1196		edir=${entry}; \
1197		cd ${.CURDIR}/$${edir}; \
1198	fi; \
1199	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1200.endfor
1201par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1202.endfor
1203
1204.include <bsd.subdir.mk>
1205
1206.if make(check-old) || make(check-old-dirs) || \
1207    make(check-old-files) || make(check-old-libs) || \
1208    make(delete-old) || make(delete-old-dirs) || \
1209    make(delete-old-files) || make(delete-old-libs)
1210
1211#
1212# check for / delete old files section
1213#
1214
1215.include "ObsoleteFiles.inc"
1216
1217OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1218else you can not start such an application. Consult UPDATING for more \
1219information regarding how to cope with the removal/revision bump of a \
1220specific library."
1221
1222.if !defined(BATCH_DELETE_OLD_FILES)
1223RM_I=-i
1224.else
1225RM_I=-v
1226.endif
1227
1228delete-old-files:
1229	@echo ">>> Removing old files (only deletes safe to delete libs)"
1230# Ask for every old file if the user really wants to remove it.
1231# It's annoying, but better safe than sorry.
1232	@for file in ${OLD_FILES}; do \
1233		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1234			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1235			rm ${RM_I} "${DESTDIR}/$${file}"; \
1236		fi; \
1237	done
1238# Remove catpages without corresponding manpages.
1239	@3<&0; \
1240	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1241	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1242	while read catpage; do \
1243		read manpage; \
1244		if [ ! -e "$${manpage}" ]; then \
1245			rm ${RM_I} $${catpage} <&3 ; \
1246	        fi; \
1247	done
1248	@echo ">>> Old files removed"
1249
1250check-old-files:
1251	@echo ">>> Checking for old files"
1252	@for file in ${OLD_FILES}; do \
1253		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1254		 	echo "${DESTDIR}/$${file}"; \
1255		fi; \
1256	done
1257# Check for catpages without corresponding manpages.
1258	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1259	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1260	while read catpage; do \
1261		read manpage; \
1262		if [ ! -e "$${manpage}" ]; then \
1263			echo $${catpage} ; \
1264	        fi; \
1265	done
1266
1267delete-old-libs:
1268	@echo ">>> Removing old libraries"
1269	@echo "${OLD_LIBS_MESSAGE}" | fmt
1270	@for file in ${OLD_LIBS}; do \
1271		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1272			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1273			rm ${RM_I} "${DESTDIR}/$${file}"; \
1274		fi; \
1275	done
1276	@echo ">>> Old libraries removed"
1277
1278check-old-libs:
1279	@echo ">>> Checking for old libraries"
1280	@for file in ${OLD_LIBS}; do \
1281		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1282			echo "${DESTDIR}/$${file}"; \
1283		fi; \
1284	done
1285
1286delete-old-dirs:
1287	@echo ">>> Removing old directories"
1288	@for dir in ${OLD_DIRS}; do \
1289		if [ -d "${DESTDIR}/$${dir}" ]; then \
1290			rmdir -v "${DESTDIR}/$${dir}" || true; \
1291		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1292			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1293		fi; \
1294	done
1295	@echo ">>> Old directories removed"
1296
1297check-old-dirs:
1298	@echo ">>> Checking for old directories"
1299	@for dir in ${OLD_DIRS}; do \
1300		if [ -d "${DESTDIR}/$${dir}" ]; then \
1301			echo "${DESTDIR}/$${dir}"; \
1302		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1303			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1304		fi; \
1305	done
1306
1307delete-old: delete-old-files delete-old-dirs
1308	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1309
1310check-old: check-old-files check-old-libs check-old-dirs
1311	@echo "To remove old files and directories run '${MAKE} delete-old'."
1312	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1313
1314.endif
1315
1316#
1317# showconfig - show build configuration.
1318#
1319showconfig:
1320	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1321