Makefile.inc1 revision 95792
1#
2# $FreeBSD: head/Makefile.inc1 95792 2002-04-30 11:46:49Z ru $
3#
4# Make command line options:
5#	-DMAKE_KERBEROS4 to build KerberosIV
6#	-DMAKE_KERBEROS5 to build Kerberos5
7#	-DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
8#	-DNOCLEAN do not clean at all
9#	-DNOCRYPT will prevent building of crypt versions
10#	-DNOPROFILE do not build profiled libraries
11#	-DNOSECURE do not go into secure subdir
12#	-DNOGAMES do not go into games subdir
13#	-DNOSHARE do not go into share subdir
14#	-DNOINFO do not make or install info files
15#	-DNOLIBC_R do not build libc_r.
16#	-DNO_FORTRAN do not build g77 and related libraries.
17#	-DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
18#	-DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
19#	-DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
20#	-DNO_PERL do not build perl5 and related libraries
21#	-DNO_PORTSUPDATE do not update ports in ${MAKE} update
22#	-DNO_DOCUPDATE do not update doc in ${MAKE} update
23#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
24#	TARGET_ARCH="arch" to crossbuild world to a different arch
25
26#
27# The intended user-driven targets are:
28# buildworld  - rebuild *everything*, including glue to help do upgrades
29# installworld- install everything built by "buildworld"
30# update      - convenient way to update your source tree (eg: sup/cvs)
31# most        - build user commands, no libraries or include files
32# installmost - install user commands, no libraries or include files
33#
34# Standard targets (not defined here) are documented in the makefiles in
35# /usr/share/mk.  These include:
36#		obj depend all install clean cleandepend cleanobj
37
38# Put initial settings here.
39SUBDIR=
40
41# We must do share/info early so that installation of info `dir'
42# entries works correctly.  Do it first since it is less likely to
43# grow dependencies on include and lib than vice versa.
44.if exists(${.CURDIR}/share/info)
45SUBDIR+= share/info
46.endif
47
48# We must do include and lib early so that the perl *.ph generation
49# works correctly as it uses the header files installed by this.
50.if exists(${.CURDIR}/include)
51SUBDIR+= include
52.endif
53.if exists(${.CURDIR}/lib)
54SUBDIR+= lib
55.endif
56
57.if exists(${.CURDIR}/bin)
58SUBDIR+= bin
59.endif
60.if exists(${.CURDIR}/games) && !defined(NOGAMES)
61SUBDIR+= games
62.endif
63.if exists(${.CURDIR}/gnu)
64SUBDIR+= gnu
65.endif
66.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
67    !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS4)
68SUBDIR+= kerberosIV
69.endif
70.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
71    !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS5)
72SUBDIR+= kerberos5
73.endif
74.if exists(${.CURDIR}/libexec)
75SUBDIR+= libexec
76.endif
77.if exists(${.CURDIR}/sbin)
78SUBDIR+= sbin
79.endif
80.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
81SUBDIR+= secure
82.endif
83.if exists(${.CURDIR}/share) && !defined(NOSHARE)
84SUBDIR+= share
85.endif
86.if exists(${.CURDIR}/sys)
87SUBDIR+= sys
88.endif
89.if exists(${.CURDIR}/usr.bin)
90SUBDIR+= usr.bin
91.endif
92.if exists(${.CURDIR}/usr.sbin)
93SUBDIR+= usr.sbin
94.endif
95
96# etc must be last for "distribute" to work
97.if exists(${.CURDIR}/etc)
98SUBDIR+= etc
99.endif
100
101# These are last, since it is nice to at least get the base system
102# rebuilt before you do them.
103.if defined(LOCAL_DIRS)
104.for _DIR in ${LOCAL_DIRS}
105.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
106SUBDIR+= ${_DIR}
107.endif
108.endfor
109.endif
110
111.if defined(SUBDIR_OVERRIDE)
112SUBDIR=		${SUBDIR_OVERRIDE}
113.endif
114
115.if defined(NOCLEANDIR)
116CLEANDIR=	clean cleandepend
117.else
118CLEANDIR=	cleandir
119.endif
120
121CVS?=		cvs
122SUP?=		/usr/local/bin/cvsup
123SUPFLAGS?=	-g -L 2 -P -
124.if defined(SUPHOST)
125SUPFLAGS+=	-h ${SUPHOST}
126.endif
127
128MAKEOBJDIRPREFIX?=	/usr/obj
129TARGET_ARCH?=	${MACHINE_ARCH}
130.if ${TARGET_ARCH} == ${MACHINE_ARCH}
131TARGET?=	${MACHINE}
132.else
133TARGET?=	${TARGET_ARCH}
134.endif
135.if make(buildworld)
136BUILD_ARCH!=	sysctl -n hw.machine_arch
137.if ${MACHINE_ARCH} != ${BUILD_ARCH}
138.error To cross-build, set TARGET_ARCH.
139.endif
140.endif
141.if ${MACHINE} == ${TARGET}
142OBJTREE=	${MAKEOBJDIRPREFIX}
143.else
144OBJTREE=	${MAKEOBJDIRPREFIX}/${TARGET}
145.endif
146WORLDTMP=	${OBJTREE}${.CURDIR}/${MACHINE_ARCH}
147# /usr/games added for fortune which depend on strfile
148STRICTTMPPATH=	${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
149TMPPATH=	${STRICTTMPPATH}:${PATH}
150OBJFORMAT_PATH?=	/usr/libexec
151
152INSTALLTMP!=	/usr/bin/mktemp -d -u -t install
153
154#
155# Building a world goes through the following stages
156#
157# 1. bootstrap-tool stage [BMAKE]
158#	This stage is responsible for creating programs that
159#	are needed for backward compatibility reasons. They
160#	are not built as cross-tools.
161# 2. build-tool stage [TMAKE]
162#	This stage is responsible for creating the object
163#	tree and building any tools that are needed during
164#	the build process.
165# 3. cross-tool stage [XMAKE]
166#	This stage is responsible for creating any tools that
167#	are needed for cross-builds. A cross-compiler is one
168#	of them.
169# 4. world stage [WMAKE]
170#	This stage actually builds the world.
171# 5. install stage (optional) [IMAKE]
172#	This stage installs a previously built world.
173#
174
175# Common environment for world related stages
176CROSSENV=	MAKEOBJDIRPREFIX=${OBJTREE} \
177		MACHINE_ARCH=${TARGET_ARCH} \
178		MACHINE=${TARGET} \
179		OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \
180		PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.6.1 \
181		GROFF_BIN_PATH=${WORLDTMP}/usr/bin \
182		GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \
183		GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac
184
185# bootstrap-tool stage
186BMAKEENV=	MAKEOBJDIRPREFIX=${WORLDTMP} \
187		DESTDIR= \
188		INSTALL="sh ${.CURDIR}/tools/install.sh"
189BMAKE=		${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
190		-DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
191		-DNO_WERROR
192
193# build-tool stage
194TMAKEENV=	MAKEOBJDIRPREFIX=${OBJTREE} \
195		DESTDIR= \
196		INSTALL="sh ${.CURDIR}/tools/install.sh"
197TMAKE=		${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING
198
199# cross-tool stage
200XMAKE=		TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
201
202# world stage
203WMAKEENV=	${CROSSENV} \
204		DESTDIR=${WORLDTMP} \
205		INSTALL="sh ${.CURDIR}/tools/install.sh" \
206		PATH=${TMPPATH}
207WMAKE=		${WMAKEENV} ${MAKE} -f Makefile.inc1
208
209# install stage
210IMAKEENV=	${CROSSENV} \
211		PATH=${STRICTTMPPATH}:${INSTALLTMP}
212IMAKE=		${IMAKEENV} ${MAKE} -f Makefile.inc1
213
214# kernel stage
215KMAKEENV=	${WMAKEENV} \
216		OBJFORMAT_PATH=${WORLDTMP}/usr/libexec:${OBJFORMAT_PATH}
217
218USRDIRS=	usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \
219		usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc \
220		usr/share/dict \
221		usr/share/groff_font/devX100 \
222		usr/share/groff_font/devX100-12 \
223		usr/share/groff_font/devX75 \
224		usr/share/groff_font/devX75-12 \
225		usr/share/groff_font/devascii \
226		usr/share/groff_font/devcp1047 \
227		usr/share/groff_font/devdvi \
228		usr/share/groff_font/devhtml \
229		usr/share/groff_font/devkoi8-r \
230		usr/share/groff_font/devlatin1 \
231		usr/share/groff_font/devlbp \
232		usr/share/groff_font/devlj4 \
233		usr/share/groff_font/devps \
234		usr/share/groff_font/devutf8 \
235		usr/share/tmac/mdoc usr/share/tmac/mm
236
237INCDIRS=	arpa dev fs g++/std isc isofs objc protocols \
238		readline rpc rpcsvc openssl security ufs
239
240#
241# buildworld
242#
243# Attempt to rebuild the entire system, with reasonable chance of
244# success, regardless of how old your existing system is.
245#
246_worldtmp:
247	@echo
248	@echo "--------------------------------------------------------------"
249	@echo ">>> Rebuilding the temporary build tree"
250	@echo "--------------------------------------------------------------"
251.if !defined(NOCLEAN)
252	rm -rf ${WORLDTMP}
253.else
254	# XXX - These two can depend on any header file.
255	rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
256	rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
257.endif
258.for _dir in ${USRDIRS}
259	mkdir -p ${WORLDTMP}/${_dir}
260.endfor
261.for _dir in ${INCDIRS}
262	mkdir -p ${WORLDTMP}/usr/include/${_dir}
263.endfor
264	ln -sf ${.CURDIR}/sys ${WORLDTMP}
265_bootstrap-tools:
266	@echo
267	@echo "--------------------------------------------------------------"
268	@echo ">>> stage 1: bootstrap tools"
269	@echo "--------------------------------------------------------------"
270	cd ${.CURDIR}; ${BMAKE} bootstrap-tools
271_cleanobj:
272.if !defined(NOCLEAN)
273	@echo
274	@echo "--------------------------------------------------------------"
275	@echo ">>> stage 2: cleaning up the object tree"
276	@echo "--------------------------------------------------------------"
277	cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
278.endif
279_obj:
280	@echo
281	@echo "--------------------------------------------------------------"
282	@echo ">>> stage 2: rebuilding the object tree"
283	@echo "--------------------------------------------------------------"
284	cd ${.CURDIR}; ${WMAKE} par-obj
285_build-tools:
286	@echo
287	@echo "--------------------------------------------------------------"
288	@echo ">>> stage 2: build tools"
289	@echo "--------------------------------------------------------------"
290	cd ${.CURDIR}; ${TMAKE} build-tools
291_cross-tools:
292	@echo
293	@echo "--------------------------------------------------------------"
294	@echo ">>> stage 3: cross tools"
295	@echo "--------------------------------------------------------------"
296	cd ${.CURDIR}; ${XMAKE} cross-tools
297_includes:
298	@echo
299	@echo "--------------------------------------------------------------"
300	@echo ">>> stage 4: populating ${WORLDTMP}/usr/include"
301	@echo "--------------------------------------------------------------"
302	cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes
303_libraries:
304	@echo
305	@echo "--------------------------------------------------------------"
306	@echo ">>> stage 4: building libraries"
307	@echo "--------------------------------------------------------------"
308	cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
309_depend:
310	@echo
311	@echo "--------------------------------------------------------------"
312	@echo ">>> stage 4: make dependencies"
313	@echo "--------------------------------------------------------------"
314	cd ${.CURDIR}; ${WMAKE} par-depend
315everything:
316	@echo
317	@echo "--------------------------------------------------------------"
318	@echo ">>> stage 4: building everything.."
319	@echo "--------------------------------------------------------------"
320	cd ${.CURDIR}; ${WMAKE} all
321
322
323WMAKE_TGTS=
324.if !defined(SUBDIR_OVERRIDE)
325WMAKE_TGTS+=	_worldtmp _bootstrap-tools
326.endif
327WMAKE_TGTS+=	_cleanobj _obj _build-tools
328.if !defined(SUBDIR_OVERRIDE)
329WMAKE_TGTS+=	_cross-tools
330.endif
331WMAKE_TGTS+=	_includes _libraries _depend everything
332
333buildworld: ${WMAKE_TGTS}
334.ORDER: ${WMAKE_TGTS}
335
336#
337# installcheck
338#
339# Checks to be sure system is ready for installworld
340#
341installcheck:
342.if !defined(NO_SENDMAIL)
343	@if ! `grep -q '^smmsp:' /etc/passwd`; then \
344		echo "ERROR: Required smmsp user is missing, see /usr/src/UPDATING."; \
345		false; \
346	fi
347	@if ! `grep -q '^smmsp:' /etc/group`; then \
348		echo "ERROR: Required smmsp group is missing, see /usr/src/UPDATING."; \
349		false; \
350	fi
351.endif
352
353#
354# installworld
355#
356# Installs everything compiled by a 'buildworld'.
357#
358installworld: installcheck
359	mkdir -p ${INSTALLTMP}
360	for prog in [ awk cat chflags chmod chown date echo egrep find grep \
361	    ln make makewhatis mkdir mtree mv perl rm sed sh sysctl \
362	    test true uname wc zic; do \
363		cp `which $$prog` ${INSTALLTMP}; \
364	done
365	cd ${.CURDIR}; ${IMAKE} reinstall
366	rm -rf ${INSTALLTMP}
367
368#
369# reinstall
370#
371# If you have a build server, you can NFS mount the source and obj directories
372# and do a 'make reinstall' on the *client* to install new binaries from the
373# most recent server build.
374#
375reinstall:
376	@echo "--------------------------------------------------------------"
377	@echo ">>> Making hierarchy"
378	@echo "--------------------------------------------------------------"
379	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
380	@echo
381	@echo "--------------------------------------------------------------"
382	@echo ">>> Installing everything.."
383	@echo "--------------------------------------------------------------"
384	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
385.if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
386	@echo
387	@echo "--------------------------------------------------------------"
388	@echo ">>> Rebuilding man page indices"
389	@echo "--------------------------------------------------------------"
390	cd ${.CURDIR}/share/man; ${MAKE} makedb
391.endif
392
393#
394# distribworld
395#
396# Front-end to distribute to make sure the search path contains
397# the object directory. Needed for miniperl.
398#
399distribworld:
400	cd ${.CURDIR}; PATH=${TMPPATH} ${MAKE} -f Makefile.inc1 distribute
401
402#
403# buildkernel and installkernel
404#
405# Which kernels to build and/or install is specified by setting
406# KERNCONF. If not defined a GENERIC kernel is built/installed.
407# Only the existing (depending TARGET) config files are used
408# for building kernels and only the first of these is designated
409# as the one being installed.
410#
411# Note that we have to use TARGET instead of TARGET_ARCH when
412# we're in kernel-land. Since only TARGET_ARCH is (expected) to
413# be set to cross-build, we have to make sure TARGET is set
414# properly.
415
416.if !defined(KERNCONF) && defined(KERNEL)
417KERNCONF=	${KERNEL}
418KERNWARN=	yes
419.else
420KERNCONF?=	GENERIC
421.endif
422INSTKERNNAME?=	kernel
423
424KRNLSRCDIR=	${.CURDIR}/sys
425KRNLCONFDIR=	${KRNLSRCDIR}/${TARGET}/conf
426KRNLOBJDIR=	${OBJTREE}${KRNLSRCDIR}
427KERNCONFDIR?=	${KRNLCONFDIR}
428
429BUILDKERNELS=
430INSTALLKERNEL=
431.for _kernel in ${KERNCONF}
432.if exists(${KERNCONFDIR}/${_kernel})
433BUILDKERNELS+=	${_kernel}
434.if empty(INSTALLKERNEL)
435INSTALLKERNEL= ${_kernel}
436.endif
437.endif
438.endfor
439
440#
441# buildkernel
442#
443# Builds all kernels defined by BUILDKERNELS.
444#
445buildkernel:
446.if empty(BUILDKERNELS)
447	@echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
448	@false
449.endif
450.if defined(KERNWARN)
451	@echo "--------------------------------------------------------------"
452	@echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
453	@echo "--------------------------------------------------------------"
454	@sleep 3
455.endif
456	@echo
457.for _kernel in ${BUILDKERNELS}
458	@echo "--------------------------------------------------------------"
459	@echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
460	@echo "--------------------------------------------------------------"
461	@echo "===> ${_kernel}"
462	mkdir -p ${KRNLOBJDIR}
463.if !defined(NO_KERNELCONFIG)
464	cd ${KRNLCONFDIR}; \
465		PATH=${TMPPATH} \
466		    config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
467			${KERNCONFDIR}/${_kernel}
468.endif
469.if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
470	cd ${KRNLOBJDIR}/${_kernel}; \
471	    ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} -DNO_MODULES clean
472.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KRNLSRCDIR}/modules)
473	cd ${KRNLOBJDIR}/${_kernel}; \
474	    ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} cleandir
475.endif
476.endif
477	cd ${KRNLOBJDIR}/${_kernel}; \
478		MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx/aicasm \
479		    ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/aicasm/Makefile
480.if !defined(NO_KERNELDEPEND)
481	cd ${KRNLOBJDIR}/${_kernel}; \
482	    ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
483.endif
484	cd ${KRNLOBJDIR}/${_kernel}; \
485	    ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
486	@echo "--------------------------------------------------------------"
487	@echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
488	@echo "--------------------------------------------------------------"
489.endfor
490
491#
492# installkernel
493#
494# Install the kernel defined by INSTALLKERNEL
495#
496installkernel reinstallkernel:
497	cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
498	    ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
499
500#
501# update
502#
503# Update the source tree, by running sup and/or running cvs to update to the
504# latest copy.
505#
506update:
507.if defined(SUP_UPDATE)
508	@echo "--------------------------------------------------------------"
509	@echo ">>> Running ${SUP}"
510	@echo "--------------------------------------------------------------"
511.if defined(SUPFILE)
512	@${SUP} ${SUPFLAGS} ${SUPFILE}
513.endif
514.if defined(SUPFILE1)
515	@${SUP} ${SUPFLAGS} ${SUPFILE1}
516.endif
517.if defined(SUPFILE2)
518	@${SUP} ${SUPFLAGS} ${SUPFILE2}
519.endif
520.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
521	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
522.endif
523.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
524	@${SUP} ${SUPFLAGS} ${DOCSUPFILE}
525.endif
526.endif
527.if defined(CVS_UPDATE)
528	@echo "--------------------------------------------------------------"
529	@echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
530	@echo "--------------------------------------------------------------"
531	cd ${.CURDIR}; ${CVS} -q update -A -P -d
532.endif
533
534#
535# most
536#
537# Build most of the user binaries on the existing system libs and includes.
538#
539most:
540	@echo "--------------------------------------------------------------"
541	@echo ">>> Building programs only"
542	@echo "--------------------------------------------------------------"
543	cd ${.CURDIR}/bin;		${MAKE} all
544	cd ${.CURDIR}/sbin;		${MAKE} all
545	cd ${.CURDIR}/libexec;		${MAKE} all
546	cd ${.CURDIR}/usr.bin;		${MAKE} all
547	cd ${.CURDIR}/usr.sbin;		${MAKE} all
548	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} all
549	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} all
550
551#
552# installmost
553#
554# Install the binaries built by the 'most' target.  This does not include
555# libraries or include files.
556#
557installmost:
558	@echo "--------------------------------------------------------------"
559	@echo ">>> Installing programs only"
560	@echo "--------------------------------------------------------------"
561	cd ${.CURDIR}/bin;		${MAKE} install
562	cd ${.CURDIR}/sbin;		${MAKE} install
563	cd ${.CURDIR}/libexec;		${MAKE} install
564	cd ${.CURDIR}/usr.bin;		${MAKE} install
565	cd ${.CURDIR}/usr.sbin;		${MAKE} install
566	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} install
567	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} install
568
569#
570# ------------------------------------------------------------------------
571#
572# From here onwards are utility targets used by the 'make world' and
573# related targets.  If your 'world' breaks, you may like to try to fix
574# the problem and manually run the following targets to attempt to
575# complete the build.  Beware, this is *not* guaranteed to work, you
576# need to have a pretty good grip on the current state of the system
577# to attempt to manually finish it.  If in doubt, 'make world' again.
578#
579
580#
581# bootstrap-tools: Build tools needed for compatibility
582#
583.if exists(${.CURDIR}/games) && !defined(NOGAMES)
584_strfile=	games/fortune/strfile
585.endif
586
587bootstrap-tools:
588.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef \
589    usr.bin/xargs usr.bin/xinstall \
590    usr.sbin/config usr.sbin/kbdcontrol \
591    gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
592	cd ${.CURDIR}/${_tool}; \
593		${MAKE} obj; \
594		${MAKE} depend; \
595		${MAKE} all; \
596		${MAKE} DESTDIR=${MAKEOBJDIRPREFIX} install
597.endfor
598
599#
600# build-tools: Build special purpose build tools
601#
602.if exists(${.CURDIR}/games) && !defined(NOGAMES)
603_games=	games/adventure games/hack games/phantasia
604.endif
605
606.if exists(${.CURDIR}/share) && !defined(NOSHARE)
607_share=	share/syscons/scrnmaps
608.endif
609
610.if !defined(NO_FORTRAN)
611_fortran= gnu/usr.bin/cc/f771
612.endif
613
614.if !defined(NOPERL) && !defined(NO_PERL)
615_perl=	gnu/usr.bin/perl/miniperl
616.endif
617
618.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
619    !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
620_libroken4= kerberosIV/lib/libroken
621.endif
622
623.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
624    !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
625_libkrb5= kerberos5/lib/libroken kerberos5/lib/libvers \
626    kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
627.endif
628
629build-tools:
630.for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \
631    ${_perl} ${_libroken4} ${_libkrb5} lib/libncurses ${_share} \
632    usr.bin/awk usr.bin/file usr.sbin/sysinstall
633	cd ${.CURDIR}/${_tool}; ${MAKE} build-tools
634.endfor
635
636#
637# cross-tools: Build cross-building tools
638#
639.if ${TARGET_ARCH} == "alpha" && ${MACHINE_ARCH} != "alpha"
640_elf2exe=	usr.sbin/elf2exe
641.endif
642
643.if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
644_btxld=	usr.sbin/btxld
645.endif
646
647_xlint=	usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint
648
649cross-tools:
650.for _tool in ${_btxld} ${_elf2exe} \
651    gnu/usr.bin/binutils usr.bin/objformat usr.sbin/crunch/crunchide \
652    gnu/usr.bin/cc ${_xlint}
653	cd ${.CURDIR}/${_tool}; \
654		${MAKE} obj; \
655		${MAKE} depend; \
656		${MAKE} all; \
657		${MAKE} DESTDIR=${MAKEOBJDIRPREFIX} install
658.endfor
659
660#
661# hierarchy - ensure that all the needed directories are present
662#
663hierarchy:
664	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
665
666#
667# includes - possibly generate and install the include files.
668#
669includes:
670	cd ${.CURDIR}/include;			${MAKE} -B all install
671	cd ${.CURDIR}/gnu/include;		${MAKE} install
672	cd ${.CURDIR}/gnu/lib/libobjc;		${MAKE} beforeinstall
673	cd ${.CURDIR}/gnu/lib/libreadline/readline;	${MAKE} beforeinstall
674	cd ${.CURDIR}/gnu/lib/libregex;		${MAKE} beforeinstall
675	cd ${.CURDIR}/gnu/lib/libstdc++;	${MAKE} beforeinstall
676	cd ${.CURDIR}/gnu/lib/libdialog;	${MAKE} beforeinstall
677	cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus;	${MAKE} beforeinstall
678.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
679.if exists(${.CURDIR}/secure/lib/libcrypto)
680	cd ${.CURDIR}/secure/lib/libcrypto;	${MAKE} beforeinstall
681.endif
682.if exists(${.CURDIR}/secure/lib/libssl)
683	cd ${.CURDIR}/secure/lib/libssl;	${MAKE} beforeinstall
684.endif
685.endif
686.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \
687    defined(MAKE_KERBEROS4)
688	cd ${.CURDIR}/kerberosIV/lib/libacl;	${MAKE} beforeinstall
689	cd ${.CURDIR}/kerberosIV/lib/libkadm;	${MAKE} beforeinstall
690	cd ${.CURDIR}/kerberosIV/lib/libkafs;	${MAKE} beforeinstall
691	cd ${.CURDIR}/kerberosIV/lib/libkdb;	${MAKE} beforeinstall
692	cd ${.CURDIR}/kerberosIV/lib/libkrb;	${MAKE} beforeinstall
693	cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall
694.elif exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
695	cd ${.CURDIR}/secure/lib/libtelnet;	${MAKE} beforeinstall
696.else
697	cd ${.CURDIR}/lib/libtelnet;		${MAKE} beforeinstall
698.endif
699.if exists(${.CURDIR}/kerberos5) && !defined(NOCRYPT) && \
700    defined(MAKE_KERBEROS5)
701	cd ${.CURDIR}/kerberos5/lib/libasn1;		${MAKE} beforeinstall
702	cd ${.CURDIR}/kerberos5/lib/libhdb;		${MAKE} beforeinstall
703	cd ${.CURDIR}/kerberos5/lib/libkadm5clnt;	${MAKE} beforeinstall
704	cd ${.CURDIR}/kerberos5/lib/libkadm5srv;	${MAKE} beforeinstall
705	cd ${.CURDIR}/kerberos5/lib/libkafs5;		${MAKE} beforeinstall
706	cd ${.CURDIR}/kerberos5/lib/libkrb5;		${MAKE} beforeinstall
707	cd ${.CURDIR}/kerberos5/lib/libsl;		${MAKE} beforeinstall
708.endif
709.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
710	cd ${.CURDIR}/lib/csu/${MACHINE_ARCH};	${MAKE} beforeinstall
711.endif
712	cd ${.CURDIR}/gnu/lib/csu;		${MAKE} beforeinstall
713	cd ${.CURDIR}/lib/libalias;		${MAKE} beforeinstall
714	cd ${.CURDIR}/lib/libatm;		${MAKE} beforeinstall
715	cd ${.CURDIR}/lib/libdevstat;		${MAKE} beforeinstall
716	cd ${.CURDIR}/lib/libc;			${MAKE} beforeinstall
717	cd ${.CURDIR}/lib/libcalendar;		${MAKE} beforeinstall
718	cd ${.CURDIR}/lib/libcam;		${MAKE} beforeinstall
719	cd ${.CURDIR}/lib/libdisk;		${MAKE} beforeinstall
720	cd ${.CURDIR}/lib/libedit;		${MAKE} beforeinstall
721	cd ${.CURDIR}/lib/libfetch;		${MAKE} beforeinstall
722	cd ${.CURDIR}/lib/libftpio;		${MAKE} beforeinstall
723	cd ${.CURDIR}/lib/libkvm;		${MAKE} beforeinstall
724	cd ${.CURDIR}/lib/libmd;		${MAKE} beforeinstall
725	cd ${.CURDIR}/lib/libmp;		${MAKE} beforeinstall
726	cd ${.CURDIR}/lib/msun;			${MAKE} beforeinstall
727	cd ${.CURDIR}/lib/libncp;		${MAKE} beforeinstall
728	cd ${.CURDIR}/lib/libncurses;		${MAKE} beforeinstall
729	cd ${.CURDIR}/lib/libnetgraph;		${MAKE} beforeinstall
730	cd ${.CURDIR}/lib/libopie;		${MAKE} beforeinstall
731	cd ${.CURDIR}/lib/libpcap;		${MAKE} beforeinstall
732	cd ${.CURDIR}/lib/libradius;		${MAKE} beforeinstall
733	cd ${.CURDIR}/lib/librpcsvc;		${MAKE} beforeinstall
734	cd ${.CURDIR}/lib/libpam/libpam;	${MAKE} beforeinstall
735	cd ${.CURDIR}/lib/libsbuf;		${MAKE} beforeinstall
736	cd ${.CURDIR}/lib/libstand;		${MAKE} beforeinstall
737	cd ${.CURDIR}/lib/libtacplus;		${MAKE} beforeinstall
738	cd ${.CURDIR}/lib/libcom_err;		${MAKE} beforeinstall
739	cd ${.CURDIR}/lib/libusbhid;		${MAKE} beforeinstall
740	cd ${.CURDIR}/lib/libutil;		${MAKE} beforeinstall
741	cd ${.CURDIR}/lib/libvgl;		${MAKE} beforeinstall
742	cd ${.CURDIR}/lib/libwrap;		${MAKE} beforeinstall
743	cd ${.CURDIR}/lib/libypclnt;		${MAKE} beforeinstall
744	cd ${.CURDIR}/lib/libz;			${MAKE} beforeinstall
745	cd ${.CURDIR}/usr.bin/lex;		${MAKE} beforeinstall
746
747#
748# libraries - build all libraries, and install them under ${DESTDIR}.
749#
750# The list of libraries with dependents (${_prebuild_libs}) and their
751# interdependencies (__L) are built automatically by the
752# ${.CURDIR}/tools/make_libdeps.sh script.
753#
754libraries:
755	cd ${.CURDIR}; \
756	    ${MAKE} -f Makefile.inc1 _startup_libs; \
757	    ${MAKE} -f Makefile.inc1 _prebuild_libs; \
758	    ${MAKE} -f Makefile.inc1 _generic_libs;
759
760# These dependencies are not automatically generated:
761#
762# gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
763# shared libraries for ELF.
764#
765_startup_libs=	gnu/lib/csu gnu/lib/libgcc
766.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-${OBJFORMAT})
767_startup_libs+=	lib/csu/${MACHINE_ARCH}-${OBJFORMAT}
768.else
769_startup_libs+=	lib/csu/${MACHINE_ARCH}
770.endif
771
772_prebuild_libs=
773
774_generic_libs=	gnu/lib
775
776.if !defined(NOPERL) && !defined(NO_PERL)
777_generic_libs+=	gnu/usr.bin/perl/libperl
778.endif
779
780.if !defined(NOCRYPT) && defined(MAKE_KERBEROS5)
781_prebuild_libs+=	kerberos5/lib/libasn1
782_prebuild_libs+=	kerberos5/lib/libgssapi
783_prebuild_libs+=	kerberos5/lib/libkrb5
784_prebuild_libs+=	kerberos5/lib/libroken
785_generic_libs+=	kerberos5/lib
786.endif
787
788.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
789_prebuild_libs+=	kerberosIV/lib/libkrb
790kerberosIV/lib/libkrb__L: lib/libcrypt__L
791_generic_libs+=	kerberosIV/lib
792.endif
793
794_prebuild_libs+= lib/libcom_err lib/libcrypt lib/libkvm lib/libmd \
795		lib/libncurses lib/libopie lib/libradius lib/librpcsvc \
796		lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \
797		lib/libz lib/msun
798
799lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
800lib/libypclnt__L: lib/librpcsvc__L
801
802_generic_libs+=	lib
803
804.if !defined(NOCRYPT) && !defined(NOSECURE)
805_prebuild_libs+=	secure/lib/libcrypto
806.if !defined(NO_OPENSSH)
807_prebuild_libs+=	secure/lib/libssh
808secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
809.endif
810_generic_libs+=	secure/lib
811.endif
812
813_generic_libs+=	usr.bin/lex/lib
814
815.if ${MACHINE_ARCH} == "i386"
816_generic_libs+=	usr.sbin/pcvt/keycap
817.endif
818
819.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
820${_lib}__L: .PHONY
821.if exists(${.CURDIR}/${_lib})
822	cd ${.CURDIR}/${_lib}; \
823		${MAKE} depend; \
824		${MAKE} all; \
825		${MAKE} install
826.endif
827.endfor
828
829_startup_libs: ${_startup_libs:S/$/__L/}
830_prebuild_libs: ${_prebuild_libs:S/$/__L/}
831_generic_libs: ${_generic_libs:S/$/__L/}
832
833.for __target in clean cleandepend cleandir depend obj
834.for entry in ${SUBDIR}
835${entry}.${__target}__D: .PHONY
836	@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
837		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
838		edir=${entry}.${MACHINE_ARCH}; \
839		cd ${.CURDIR}/$${edir}; \
840	else \
841		${ECHODIR} "===> ${DIRPRFX}${entry}"; \
842		edir=${entry}; \
843		cd ${.CURDIR}/$${edir}; \
844	fi; \
845	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
846.endfor
847par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
848.endfor
849
850.include <bsd.subdir.mk>
851