Makefile.inc1 revision 184860
1#
2# $FreeBSD: head/Makefile.inc1 184860 2008-11-12 04:43:55Z obrien $
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.if ${MK_KERBEROS} != "no"
510	cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//}
511.endif
512	cd ${.CURDIR}/libexec/rtld-elf; \
513	    PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}
514	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}
515.endif
516
517WMAKE_TGTS=
518.if !defined(SUBDIR_OVERRIDE)
519WMAKE_TGTS+=	_worldtmp _legacy _bootstrap-tools
520.endif
521WMAKE_TGTS+=	_cleanobj _obj _build-tools
522.if !defined(SUBDIR_OVERRIDE)
523WMAKE_TGTS+=	_cross-tools
524.endif
525WMAKE_TGTS+=	_includes _libraries _depend everything
526.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no"
527WMAKE_TGTS+=	build32
528.endif
529
530buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
531.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue
532
533buildworld_prologue:
534	@echo "--------------------------------------------------------------"
535	@echo ">>> World build started on `LC_ALL=C date`"
536	@echo "--------------------------------------------------------------"
537
538buildworld_epilogue:
539	@echo
540	@echo "--------------------------------------------------------------"
541	@echo ">>> World build completed on `LC_ALL=C date`"
542	@echo "--------------------------------------------------------------"
543
544#
545# We need to have this as a target because the indirection between Makefile
546# and Makefile.inc1 causes the correct PATH to be used, rather than a
547# modification of the current environment's PATH.  In addition, we need
548# to quote multiword values.
549#
550buildenvvars:
551	@echo ${WMAKEENV:Q}
552
553buildenv:
554	@echo Entering world for ${TARGET_ARCH}:${TARGET}
555	@cd ${.CURDIR} && env ${WMAKEENV} sh || true
556
557TOOLCHAIN_TGTS=	${WMAKE_TGTS:N_depend:Neverything:Nbuild32}
558toolchain: ${TOOLCHAIN_TGTS}
559kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
560
561#
562# installcheck
563#
564# Checks to be sure system is ready for installworld/installkernel.
565#
566installcheck:
567
568#
569# Require DESTDIR to be set if installing for a different architecture.
570#
571.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE}
572.if !make(distributeworld)
573installcheck: installcheck_DESTDIR
574installcheck_DESTDIR:
575.if !defined(DESTDIR) || empty(DESTDIR)
576	@echo "ERROR: Please set DESTDIR!"; \
577	false
578.endif
579.endif
580.endif
581
582#
583# Check for missing UIDs/GIDs.
584#
585CHECK_UIDS=
586CHECK_GIDS=	audit
587.if ${MK_SENDMAIL} != "no"
588CHECK_UIDS+=	smmsp
589CHECK_GIDS+=	smmsp
590.endif
591.if ${MK_PF} != "no"
592CHECK_UIDS+=	proxy
593CHECK_GIDS+=	proxy authpf
594.endif
595installcheck: installcheck_UGID
596installcheck_UGID:
597.for uid in ${CHECK_UIDS}
598	@if ! `id -u ${uid} >/dev/null 2>&1`; then \
599		echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
600		false; \
601	fi
602.endfor
603.for gid in ${CHECK_GIDS}
604	@if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
605		echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
606		false; \
607	fi
608.endfor
609
610#
611# Required install tools to be saved in a scratch dir for safety.
612#
613ITOOLS=	[ awk cap_mkdb cat chflags chmod chown \
614	date echo egrep find grep install-info \
615	ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
616	test true uname wc zic
617
618#
619# distributeworld
620#
621# Distributes everything compiled by a `buildworld'.
622#
623# installworld
624#
625# Installs everything compiled by a 'buildworld'.
626#
627distributeworld installworld: installcheck
628	mkdir -p ${INSTALLTMP}
629	progs=$$(for prog in ${ITOOLS}; do \
630		if progpath=`which $$prog`; then \
631			echo $$progpath; \
632		else \
633			echo "Required tool $$prog not found in PATH." >&2; \
634			exit 1; \
635		fi; \
636	    done); \
637	libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \
638	    while read line; do \
639		set -- $$line; \
640		if [ "$$2 $$3" != "not found" ]; then \
641			echo $$2; \
642		else \
643			echo "Required library $$1 not found." >&2; \
644			exit 1; \
645		fi; \
646	    done); \
647	cp $$libs $$progs ${INSTALLTMP}
648	cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale
649	${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \
650	    ${IMAKEENV} rm -rf ${INSTALLTMP}
651
652#
653# reinstall
654#
655# If you have a build server, you can NFS mount the source and obj directories
656# and do a 'make reinstall' on the *client* to install new binaries from the
657# most recent server build.
658#
659reinstall:
660	@echo "--------------------------------------------------------------"
661	@echo ">>> Making hierarchy"
662	@echo "--------------------------------------------------------------"
663	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
664	@echo
665	@echo "--------------------------------------------------------------"
666	@echo ">>> Installing everything"
667	@echo "--------------------------------------------------------------"
668	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
669.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no"
670	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
671.endif
672
673redistribute:
674	@echo "--------------------------------------------------------------"
675	@echo ">>> Distributing everything"
676	@echo "--------------------------------------------------------------"
677	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
678.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no"
679	${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \
680	    DISTRIBUTION=lib32
681.endif
682
683distrib-dirs distribution:
684	cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET}
685
686#
687# buildkernel and installkernel
688#
689# Which kernels to build and/or install is specified by setting
690# KERNCONF. If not defined a GENERIC kernel is built/installed.
691# Only the existing (depending TARGET) config files are used
692# for building kernels and only the first of these is designated
693# as the one being installed.
694#
695# Note that we have to use TARGET instead of TARGET_ARCH when
696# we're in kernel-land. Since only TARGET_ARCH is (expected) to
697# be set to cross-build, we have to make sure TARGET is set
698# properly.
699
700.if !defined(KERNCONF) && defined(KERNEL)
701KERNCONF=	${KERNEL}
702KERNWARN=
703.else
704KERNCONF?=	GENERIC
705.endif
706INSTKERNNAME?=	kernel
707
708KERNSRCDIR?=	${.CURDIR}/sys
709KRNLCONFDIR=	${KERNSRCDIR}/${TARGET}/conf
710KRNLOBJDIR=	${OBJTREE}${KERNSRCDIR}
711KERNCONFDIR?=	${KRNLCONFDIR}
712
713BUILDKERNELS=
714INSTALLKERNEL=
715.for _kernel in ${KERNCONF}
716.if exists(${KERNCONFDIR}/${_kernel})
717BUILDKERNELS+=	${_kernel}
718.if empty(INSTALLKERNEL)
719INSTALLKERNEL= ${_kernel}
720.endif
721.endif
722.endfor
723
724#
725# buildkernel
726#
727# Builds all kernels defined by BUILDKERNELS.
728#
729buildkernel:
730.if empty(BUILDKERNELS)
731	@echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \
732	false
733.endif
734.if defined(KERNWARN)
735	@echo "--------------------------------------------------------------"
736	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
737	@echo "--------------------------------------------------------------"
738	@sleep 3
739.endif
740	@echo
741.for _kernel in ${BUILDKERNELS}
742	@echo "--------------------------------------------------------------"
743	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
744	@echo "--------------------------------------------------------------"
745	@echo "===> ${_kernel}"
746	mkdir -p ${KRNLOBJDIR}
747.if !defined(NO_KERNELCONFIG)
748	@echo
749	@echo "--------------------------------------------------------------"
750	@echo ">>> stage 1: configuring the kernel"
751	@echo "--------------------------------------------------------------"
752	cd ${KRNLCONFDIR}; \
753		PATH=${TMPPATH} \
754		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
755			${KERNCONFDIR}/${_kernel}
756.endif
757.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN)
758	@echo
759	@echo "--------------------------------------------------------------"
760	@echo ">>> stage 2.1: cleaning up the object tree"
761	@echo "--------------------------------------------------------------"
762	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR}
763.endif
764	@echo
765	@echo "--------------------------------------------------------------"
766	@echo ">>> stage 2.2: rebuilding the object tree"
767	@echo "--------------------------------------------------------------"
768	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj
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.if !defined(NO_KERNELDEPEND)
786	@echo
787	@echo "--------------------------------------------------------------"
788	@echo ">>> stage 3.1: making dependencies"
789	@echo "--------------------------------------------------------------"
790	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ
791.endif
792	@echo
793	@echo "--------------------------------------------------------------"
794	@echo ">>> stage 3.2: building everything"
795	@echo "--------------------------------------------------------------"
796	cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ
797	@echo "--------------------------------------------------------------"
798	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
799	@echo "--------------------------------------------------------------"
800.endfor
801
802#
803# installkernel, etc.
804#
805# Install the kernel defined by INSTALLKERNEL
806#
807installkernel installkernel.debug \
808reinstallkernel reinstallkernel.debug: installcheck
809.if empty(INSTALLKERNEL)
810	@echo "ERROR: No kernel \"${KERNCONF}\" to install."; \
811	false
812.endif
813	@echo "--------------------------------------------------------------"
814	@echo ">>> Installing kernel"
815	@echo "--------------------------------------------------------------"
816	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
817	    ${CROSSENV} PATH=${TMPPATH} \
818	    ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
819
820#
821# doxygen
822#
823# Build the API documentation with doxygen
824#
825doxygen:
826	@if [ ! -x `/usr/bin/which doxygen` ]; then \
827		echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \
828		exit 1; \
829	fi
830	cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all
831
832#
833# update
834#
835# Update the source tree, by running cvsup and/or running cvs to update to the
836# latest copy.
837#
838update:
839.if defined(SUP_UPDATE)
840	@echo "--------------------------------------------------------------"
841	@echo ">>> Running ${SUP}"
842	@echo "--------------------------------------------------------------"
843.if defined(SUPFILE)
844	@${SUP} ${SUPFLAGS} ${SUPFILE}
845.endif
846.if defined(SUPFILE1)
847	@${SUP} ${SUPFLAGS} ${SUPFILE1}
848.endif
849.if defined(SUPFILE2)
850	@${SUP} ${SUPFLAGS} ${SUPFILE2}
851.endif
852.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
853	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
854.endif
855.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
856	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
857.endif
858.endif
859.if defined(CVS_UPDATE)
860	@echo "--------------------------------------------------------------"
861	@echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT}
862	@echo "--------------------------------------------------------------"
863	cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS}
864.endif
865
866#
867# ------------------------------------------------------------------------
868#
869# From here onwards are utility targets used by the 'make world' and
870# related targets.  If your 'world' breaks, you may like to try to fix
871# the problem and manually run the following targets to attempt to
872# complete the build.  Beware, this is *not* guaranteed to work, you
873# need to have a pretty good grip on the current state of the system
874# to attempt to manually finish it.  If in doubt, 'make world' again.
875#
876
877#
878# legacy: Build compatibility shims for the next three targets
879#
880legacy:
881.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0
882	@echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \
883	false
884.endif
885.for _tool in tools/build
886	${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \
887	    cd ${.CURDIR}/${_tool}; \
888	    ${MAKE} DIRPRFX=${_tool}/ obj; \
889	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
890	    ${MAKE} DIRPRFX=${_tool}/ depend; \
891	    ${MAKE} DIRPRFX=${_tool}/ all; \
892	    ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
893.endfor
894
895#
896# bootstrap-tools: Build tools needed for compatibility
897#
898.if ${MK_GAMES} != "no"
899_strfile=	games/fortune/strfile
900.endif
901
902.if ${MK_CXX} != "no"
903_gperf=		gnu/usr.bin/gperf
904.if ${BOOTSTRAPPING} < 700004
905_groff=		gnu/usr.bin/groff
906.else
907_groff=		gnu/usr.bin/groff/tmac
908.endif
909.endif
910
911.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022
912_ar=		usr.bin/ar
913.endif
914
915.if ${BOOTSTRAPPING} < 800013
916_mklocale=	usr.bin/mklocale
917.endif
918
919.if ${BOOTSTRAPPING} < 700018
920_gensnmptree=	usr.sbin/bsnmpd/gensnmptree
921.endif
922
923.if ${MK_RESCUE} != "no" && \
924    ${BOOTSTRAPPING} < 700026
925_crunchgen=	usr.sbin/crunch/crunchgen
926.endif
927
928.if ${MK_CDDL} != "no"
929_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \
930    lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge
931.endif
932
933bootstrap-tools:
934.for _tool in \
935    ${_dtrace_tools} \
936    ${_strfile} \
937    ${_gperf} \
938    ${_groff} \
939    ${_ar} \
940    usr.bin/lorder \
941    usr.bin/makewhatis \
942    ${_mklocale} \
943    usr.bin/rpcgen \
944    usr.bin/xinstall \
945    ${_gensnmptree} \
946    usr.sbin/config \
947    ${_crunchgen}
948	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
949		cd ${.CURDIR}/${_tool}; \
950		${MAKE} DIRPRFX=${_tool}/ obj; \
951		${MAKE} DIRPRFX=${_tool}/ depend; \
952		${MAKE} DIRPRFX=${_tool}/ all; \
953		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
954.endfor
955
956#
957# build-tools: Build special purpose build tools
958#
959.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
960_aicasm= sys/modules/aic7xxx/aicasm
961.endif
962
963.if !defined(NO_SHARE)
964_share=	share/syscons/scrnmaps
965.endif
966
967.if ${MK_KERBEROS} != "no"
968_kerberos5_tools= kerberos5/tools
969.endif
970
971.if ${MK_RESCUE} != "no"
972_rescue= rescue/rescue
973.endif
974
975build-tools:
976.for _tool in \
977    bin/csh \
978    bin/sh \
979    ${_rescue} \
980    lib/ncurses/ncurses \
981    lib/ncurses/ncursesw \
982    ${_share} \
983    ${_aicasm} \
984    usr.bin/awk \
985    lib/libmagic \
986    usr.sbin/sysinstall
987	${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \
988		cd ${.CURDIR}/${_tool}; \
989		${MAKE} DIRPRFX=${_tool}/ obj; \
990		${MAKE} DIRPRFX=${_tool}/ build-tools
991.endfor
992.for _tool in \
993    gnu/usr.bin/cc/cc_tools \
994    ${_kerberos5_tools}
995	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \
996		cd ${.CURDIR}/${_tool}; \
997		${MAKE} DIRPRFX=${_tool}/ obj; \
998		${MAKE} DIRPRFX=${_tool}/ depend; \
999		${MAKE} DIRPRFX=${_tool}/ all
1000.endfor
1001
1002#
1003# cross-tools: Build cross-building tools
1004#
1005.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035
1006.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386"
1007_btxld=		usr.sbin/btxld
1008.endif
1009.endif
1010.if ${TARGET_ARCH} != ${MACHINE_ARCH}
1011.if ${MK_RESCUE} != "no" || defined(RELEASEDIR)
1012_crunchide=	usr.sbin/crunch/crunchide
1013.endif
1014.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR)
1015_kgzip=		usr.sbin/kgzip
1016.endif
1017.endif
1018
1019cross-tools:
1020.for _tool in \
1021    gnu/usr.bin/binutils \
1022    gnu/usr.bin/cc \
1023    usr.bin/sed \
1024    usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
1025    ${_btxld} \
1026    ${_crunchide} \
1027    ${_kgzip}
1028	${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \
1029		cd ${.CURDIR}/${_tool}; \
1030		${MAKE} DIRPRFX=${_tool}/ obj; \
1031		${MAKE} DIRPRFX=${_tool}/ depend; \
1032		${MAKE} DIRPRFX=${_tool}/ all; \
1033		${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
1034.endfor
1035
1036#
1037# hierarchy - ensure that all the needed directories are present
1038#
1039hierarchy:
1040	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
1041
1042#
1043# libraries - build all libraries, and install them under ${DESTDIR}.
1044#
1045# The list of libraries with dependents (${_prebuild_libs}) and their
1046# interdependencies (__L) are built automatically by the
1047# ${.CURDIR}/tools/make_libdeps.sh script.
1048#
1049libraries:
1050	cd ${.CURDIR}; \
1051	    ${MAKE} -f Makefile.inc1 _prereq_libs; \
1052	    ${MAKE} -f Makefile.inc1 _startup_libs; \
1053	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
1054	    ${MAKE} -f Makefile.inc1 _generic_libs;
1055
1056#
1057# static libgcc.a prerequisite for shared libc
1058#
1059_prereq_libs= gnu/lib/libgcc
1060
1061# These dependencies are not automatically generated:
1062#
1063# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before
1064# all shared libraries for ELF.
1065#
1066_startup_libs=	gnu/lib/csu
1067.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
1068_startup_libs+=	lib/csu/${MACHINE_ARCH}-elf
1069.else
1070_startup_libs+=	lib/csu/${MACHINE_ARCH}
1071.endif
1072_startup_libs+=	gnu/lib/libgcc
1073_startup_libs+=	lib/libc
1074
1075gnu/lib/libgcc__L: lib/libc__L
1076
1077_prebuild_libs=	${_kerberos5_lib_libasn1} ${_kerberos5_lib_libkrb5} \
1078		${_kerberos5_lib_libhx509} ${_kerberos5_lib_libroken} \
1079		${_kerberos5_lib_libheimntlm} ${_kerberos5_lib_libgssapi_krb5} \
1080		lib/libbz2 lib/libcom_err lib/libcrypt lib/libelf \
1081		lib/libexpat \
1082		${_lib_cddl} ${_lib_libgssapi} ${_lib_libipx} \
1083		lib/libkiconv lib/libkvm lib/libmd \
1084		lib/ncurses/ncurses lib/ncurses/ncursesw \
1085		lib/libopie lib/libpam ${_lib_libthr} \
1086		lib/libradius lib/libsbuf lib/libtacplus lib/libutil \
1087		${_lib_libypclnt} lib/libz lib/msun \
1088		${_secure_lib_libcrypto} ${_secure_lib_libssh} \
1089		${_secure_lib_libssl} lib/libdwarf lib/libproc
1090
1091.if ${MK_LIBTHR} != "no"
1092_lib_libthr=	lib/libthr
1093.endif
1094
1095_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib
1096
1097lib/libopie__L lib/libtacplus__L: lib/libmd__L
1098
1099.if ${MK_CDDL} != "no"
1100_cddl_lib= cddl/lib
1101.endif
1102
1103.if ${MK_CRYPT} != "no"
1104.if ${MK_OPENSSL} != "no"
1105_secure_lib_libcrypto= secure/lib/libcrypto
1106_secure_lib_libssl= secure/lib/libssl
1107lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L
1108.if ${MK_OPENSSH} != "no"
1109_secure_lib_libssh= secure/lib/libssh
1110secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L
1111.if ${MK_KERBEROS} != "no"
1112kerberos5/lib/libgssapi_krb5__L: kerberos5/lib/libkrb5__L \
1113    kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \
1114    lib/libmd__L kerberos5/lib/libroken__L secure/lib/libcrypto__L \
1115    lib/libcrypt__L
1116secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libgssapi_krb5__L
1117.endif
1118.endif
1119.endif
1120_secure_lib=	secure/lib
1121.endif
1122
1123.if ${MK_IPX} != "no"
1124_lib_libipx=	lib/libipx
1125.endif
1126
1127.if ${MK_KERBEROS} != "no"
1128_kerberos5_lib=	kerberos5/lib
1129_kerberos5_lib_libasn1= kerberos5/lib/libasn1
1130_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5
1131_kerberos5_lib_libhx509= kerberos5/lib/libhx509
1132_kerberos5_lib_libroken= kerberos5/lib/libroken
1133_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm
1134_kerberos5_lib_libgssapi_krb5= kerberos5/lib/libgssapi_krb5
1135_lib_libgssapi=	lib/libgssapi
1136.endif
1137
1138.if ${MK_NIS} != "no"
1139_lib_libypclnt=	lib/libypclnt
1140.endif
1141
1142.if ${MK_OPENSSL} == "no"
1143lib/libradius__L: lib/libmd__L
1144.endif
1145
1146.for _lib in ${_prereq_libs}
1147${_lib}__PL: .PHONY
1148.if exists(${.CURDIR}/${_lib})
1149	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1150		cd ${.CURDIR}/${_lib}; \
1151		${MAKE} DIRPRFX=${_lib}/ obj; \
1152		${MAKE} DIRPRFX=${_lib}/ depend; \
1153		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \
1154		${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install
1155.endif
1156.endfor
1157
1158.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
1159${_lib}__L: .PHONY
1160.if exists(${.CURDIR}/${_lib})
1161	${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \
1162		cd ${.CURDIR}/${_lib}; \
1163		${MAKE} DIRPRFX=${_lib}/ obj; \
1164		${MAKE} DIRPRFX=${_lib}/ depend; \
1165		${MAKE} DIRPRFX=${_lib}/ all; \
1166		${MAKE} DIRPRFX=${_lib}/ install
1167.endif
1168.endfor
1169
1170# libpam is special: we need to build static PAM modules before
1171# static PAM library, and dynamic PAM library before dynamic PAM
1172# modules.
1173lib/libpam__L: .PHONY
1174	${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \
1175		cd ${.CURDIR}/lib/libpam; \
1176		${MAKE} DIRPRFX=lib/libpam/ obj; \
1177		${MAKE} DIRPRFX=lib/libpam/ depend; \
1178		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
1179		${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
1180
1181_prereq_libs: ${_prereq_libs:S/$/__PL/}
1182_startup_libs: ${_startup_libs:S/$/__L/}
1183_prebuild_libs: ${_prebuild_libs:S/$/__L/}
1184_generic_libs: ${_generic_libs:S/$/__L/}
1185
1186.for __target in all clean cleandepend cleandir depend includes obj
1187.for entry in ${SUBDIR}
1188${entry}.${__target}__D: .PHONY
1189	${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1190		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \
1191		edir=${entry}.${MACHINE_ARCH}; \
1192		cd ${.CURDIR}/$${edir}; \
1193	else \
1194		${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \
1195		edir=${entry}; \
1196		cd ${.CURDIR}/$${edir}; \
1197	fi; \
1198	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1199.endfor
1200par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1201.endfor
1202
1203.include <bsd.subdir.mk>
1204
1205.if make(check-old) || make(check-old-dirs) || \
1206    make(check-old-files) || make(check-old-libs) || \
1207    make(delete-old) || make(delete-old-dirs) || \
1208    make(delete-old-files) || make(delete-old-libs)
1209
1210#
1211# check for / delete old files section
1212#
1213
1214.include "ObsoleteFiles.inc"
1215
1216OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \
1217else you can not start such an application. Consult UPDATING for more \
1218information regarding how to cope with the removal/revision bump of a \
1219specific library."
1220
1221.if !defined(BATCH_DELETE_OLD_FILES)
1222RM_I=-i
1223.else
1224RM_I=-v
1225.endif
1226
1227delete-old-files:
1228	@echo ">>> Removing old files (only deletes safe to delete libs)"
1229# Ask for every old file if the user really wants to remove it.
1230# It's annoying, but better safe than sorry.
1231	@for file in ${OLD_FILES}; do \
1232		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1233			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1234			rm ${RM_I} "${DESTDIR}/$${file}"; \
1235		fi; \
1236	done
1237# Remove catpages without corresponding manpages.
1238	@3<&0; \
1239	find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1240	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1241	while read catpage; do \
1242		read manpage; \
1243		if [ ! -e "$${manpage}" ]; then \
1244			rm ${RM_I} $${catpage} <&3 ; \
1245	        fi; \
1246	done
1247	@echo ">>> Old files removed"
1248
1249check-old-files:
1250	@echo ">>> Checking for old files"
1251	@for file in ${OLD_FILES}; do \
1252		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1253		 	echo "${DESTDIR}/$${file}"; \
1254		fi; \
1255	done
1256# Check for catpages without corresponding manpages.
1257	@find ${DESTDIR}/usr/share/man/cat* ! -type d | \
1258	sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \
1259	while read catpage; do \
1260		read manpage; \
1261		if [ ! -e "$${manpage}" ]; then \
1262			echo $${catpage} ; \
1263	        fi; \
1264	done
1265
1266delete-old-libs:
1267	@echo ">>> Removing old libraries"
1268	@echo "${OLD_LIBS_MESSAGE}" | fmt
1269	@for file in ${OLD_LIBS}; do \
1270		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1271			chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \
1272			rm ${RM_I} "${DESTDIR}/$${file}"; \
1273		fi; \
1274	done
1275	@echo ">>> Old libraries removed"
1276
1277check-old-libs:
1278	@echo ">>> Checking for old libraries"
1279	@for file in ${OLD_LIBS}; do \
1280		if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \
1281			echo "${DESTDIR}/$${file}"; \
1282		fi; \
1283	done
1284
1285delete-old-dirs:
1286	@echo ">>> Removing old directories"
1287	@for dir in ${OLD_DIRS}; do \
1288		if [ -d "${DESTDIR}/$${dir}" ]; then \
1289			rmdir -v "${DESTDIR}/$${dir}" || true; \
1290		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1291			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1292		fi; \
1293	done
1294	@echo ">>> Old directories removed"
1295
1296check-old-dirs:
1297	@echo ">>> Checking for old directories"
1298	@for dir in ${OLD_DIRS}; do \
1299		if [ -d "${DESTDIR}/$${dir}" ]; then \
1300			echo "${DESTDIR}/$${dir}"; \
1301		elif [ -L "${DESTDIR}/$${dir}" ]; then \
1302			echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \
1303		fi; \
1304	done
1305
1306delete-old: delete-old-files delete-old-dirs
1307	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1308
1309check-old: check-old-files check-old-libs check-old-dirs
1310	@echo "To remove old files and directories run '${MAKE} delete-old'."
1311	@echo "To remove old libraries run '${MAKE} delete-old-libs'."
1312
1313.endif
1314
1315#
1316# showconfig - show build configuration.
1317#
1318showconfig:
1319	@${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort
1320