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