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