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