Makefile revision 33133
1#
2#	$Id: Makefile,v 1.156 1998/01/11 04:51:02 jb Exp $
3#
4# While porting to the Alpha architecture include the bootstrap instead
5# of the normal build.
6#
7.if ${MACHINE} == "alpha"
8.include "Makefile.alpha"
9.else
10#
11# Make command line options:
12#	-DCLOBBER will remove /usr/include
13#	-DMAKE_KERBEROS4 to build KerberosIV
14#	-DALLLANG to build documentation for all languages
15#	  (where available -- see share/doc/Makefile)
16#
17#	-DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
18#	-DNOCLEAN do not clean at all
19#       -DNOTOOLS do not rebuild any tools first
20#	-DNOCRYPT will prevent building of crypt versions
21#	-DNOLKM do not build loadable kernel modules
22#	-DNOOBJDIR do not run ``${MAKE} obj''
23#	-DNOPROFILE do not build profiled libraries
24#	-DNOSECURE do not go into secure subdir
25#	-DNOGAMES do not go into games subdir
26#	-DNOSHARE do not go into share subdir
27#	-DNOINFO do not make or install info files
28#	-DNOLIBC_R do not build libc_r.
29#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
30
31#
32# The intended user-driven targets are:
33# buildworld  - rebuild *everything*, including glue to help do upgrades
34# installworld- install everything built by "buildworld"
35# world       - buildworld + installworld
36# update      - convenient way to update your source tree (eg: sup/cvs)
37# most        - build user commands, no libraries or include files
38# installmost - install user commands, no libraries or include files
39#
40# Standard targets (not defined here) are documented in the makefiles in
41# /usr/share/mk.  These include:
42#		obj depend all install clean cleandepend cleanobj
43
44.if (!make(world)) && (!make(buildworld)) && (!make(installworld))
45.MAKEFLAGS:=	${.MAKEFLAGS} -m ${.CURDIR}/share/mk
46.endif
47
48# Put initial settings here.
49SUBDIR=
50
51# We must do share/info early so that installation of info `dir'
52# entries works correctly.  Do it first since it is less likely to
53# grow dependencies on include and lib than vice versa.
54.if exists(share/info)
55SUBDIR+= share/info
56.endif
57
58# We must do include and lib early so that the perl *.ph generation
59# works correctly as it uses the header files installed by this.
60.if exists(include)
61SUBDIR+= include
62.endif
63.if exists(lib)
64SUBDIR+= lib
65.endif
66
67.if exists(bin)
68SUBDIR+= bin
69.endif
70.if exists(games) && !defined(NOGAMES)
71SUBDIR+= games
72.endif
73.if exists(gnu)
74SUBDIR+= gnu
75.endif
76.if exists(kerberosIV) && !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
77SUBDIR+= kerberosIV
78.endif
79.if exists(libexec)
80SUBDIR+= libexec
81.endif
82.if exists(sbin)
83SUBDIR+= sbin
84.endif
85.if exists(share) && !defined(NOSHARE)
86SUBDIR+= share
87.endif
88.if exists(sys)
89SUBDIR+= sys
90.endif
91.if exists(usr.bin)
92SUBDIR+= usr.bin
93.endif
94.if exists(usr.sbin)
95SUBDIR+= usr.sbin
96.endif
97.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
98SUBDIR+= secure
99.endif
100.if exists(lkm) && !defined(NOLKM)
101SUBDIR+= lkm
102.endif
103
104# etc must be last for "distribute" to work
105.if exists(etc) && make(distribute)
106SUBDIR+= etc
107.endif
108
109# These are last, since it is nice to at least get the base system
110# rebuilt before you do them.
111.if defined(LOCAL_DIRS)
112.for _DIR in ${LOCAL_DIRS}
113.if exists(${_DIR}) & exists(${_DIR}/Makefile)
114SUBDIR+= ${_DIR}
115.endif
116.endfor
117.endif
118
119# Handle -DNOOBJDIR, -DNOCLEAN and -DNOCLEANDIR
120.if defined(NOOBJDIR)
121OBJDIR=
122.else
123OBJDIR=		obj
124.endif
125
126.if defined(NOCLEAN)
127CLEANDIR=
128.else
129.if defined(NOCLEANDIR)
130CLEANDIR=	clean
131.else
132CLEANDIR=	cleandir
133.endif
134.endif
135
136SUP?=		sup
137SUPFLAGS?=	-v
138
139#
140# While building tools for bootstrapping, we dont need to waste time on
141# profiled libraries or man pages.  This speeds things up somewhat.
142#
143MK_FLAGS=	-DNOINFO -DNOMAN -DNOPROFILE
144
145#
146# world
147#
148# Attempt to rebuild and reinstall *everything*, with reasonable chance of
149# success, regardless of how old your existing system is.
150#
151# >> Beware, it overwrites the local build environment! <<
152#
153world:
154	@echo "--------------------------------------------------------------"
155	@echo "make world started on `LC_TIME=C date`"
156	@echo "--------------------------------------------------------------"
157.if target(pre-world)
158	@echo
159	@echo "--------------------------------------------------------------"
160	@echo " Making 'pre-world' target"
161	@echo "--------------------------------------------------------------"
162	cd ${.CURDIR} && ${MAKE} pre-world
163.endif
164	cd ${.CURDIR} && ${MAKE} buildworld
165	cd ${.CURDIR} && ${MAKE} -B installworld
166.if target(post-world)
167	@echo
168	@echo "--------------------------------------------------------------"
169	@echo " Making 'post-world' target"
170	@echo "--------------------------------------------------------------"
171	cd ${.CURDIR} && ${MAKE} post-world
172.endif
173	@echo
174	@echo "--------------------------------------------------------------"
175	@echo "make world completed on `LC_TIME=C date`"
176	@echo "--------------------------------------------------------------"
177
178.if defined(MAKEOBJDIRPREFIX)
179WORLDTMP=	${MAKEOBJDIRPREFIX}${.CURDIR}/tmp
180.else
181WORLDTMP=	/usr/obj${.CURDIR}/tmp
182.endif
183STRICTTMPPATH=	${WORLDTMP}/sbin:${WORLDTMP}/usr/sbin:${WORLDTMP}/bin:${WORLDTMP}/usr/bin
184TMPPATH=	${STRICTTMPPATH}:${PATH}
185
186# XXX COMPILER_PATH is needed for finding cc1, ld and as
187# XXX GCC_EXEC_PREFIX is for *crt.o.  It is probably unnecssary now
188#	tbat LIBRARY_PATH is set.  We still can't use -nostdlib, since gcc
189#	wouldn't link *crt.o or libgcc if it were used.
190# XXX LD_LIBRARY_PATH is for ld.so.  It is also used by ld, although we don't
191#	want that - all compile-time library paths should be resolved by gcc.
192#	It fails for set[ug]id executables (are any used?).
193COMPILER_ENV=	BISON_SIMPLE=${WORLDTMP}/usr/share/misc/bison.simple \
194		COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \
195		GCC_EXEC_PREFIX=${WORLDTMP}/usr/lib/ \
196		LD_LIBRARY_PATH=${WORLDTMP}${SHLIBDIR} \
197		LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib
198
199BMAKEENV=	PATH=${TMPPATH} ${COMPILER_ENV} NOEXTRADEPEND=t
200XMAKEENV=	PATH=${STRICTTMPPATH} ${COMPILER_ENV} \
201		CC='cc -nostdinc'	# XXX -nostdlib
202
203# used to compile and install 'make' in temporary build tree
204IBMAKE=	${BMAKEENV} ${MAKE} DESTDIR=${WORLDTMP}
205# bootstrap make
206BMAKE=	${BMAKEENV} ${WORLDTMP}/usr/bin/${MAKE} DESTDIR=${WORLDTMP}
207# cross make used for compilation
208XMAKE=	${XMAKEENV} ${WORLDTMP}/usr/bin/${MAKE} DESTDIR=${WORLDTMP}
209# cross make used for final installation
210IXMAKE=	${XMAKEENV} ${WORLDTMP}/usr/bin/${MAKE}
211
212#
213# buildworld
214#
215# Attempt to rebuild the entire system, with reasonable chance of
216# success, regardless of how old your existing system is.
217#
218buildworld:
219.if !defined(NOCLEAN)
220	@echo
221	@echo "--------------------------------------------------------------"
222	@echo " Cleaning up the temporary build tree"
223	@echo "--------------------------------------------------------------"
224	mkdir -p ${WORLDTMP}
225	chflags -R noschg ${WORLDTMP}/
226	rm -rf ${WORLDTMP}
227.endif
228.if !defined(NOTOOLS)
229	@echo
230	@echo "--------------------------------------------------------------"
231	@echo " Making make"
232	@echo "--------------------------------------------------------------"
233	mkdir -p ${WORLDTMP}/usr/bin
234.if !defined(NOCLEAN) || !defined(NOOBJDIR)
235	cd ${.CURDIR}/usr.bin/make && \
236		${IBMAKE} -I${.CURDIR}/share/mk ${CLEANDIR} ${OBJDIR}
237.endif
238	cd ${.CURDIR}/usr.bin/make && \
239		${IBMAKE} -I${.CURDIR}/share/mk depend && \
240		${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} all && \
241		${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install && \
242		${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean cleandepend
243.endif
244	@echo
245	@echo "--------------------------------------------------------------"
246	@echo " Making hierarchy"
247	@echo "--------------------------------------------------------------"
248	cd ${.CURDIR} && ${BMAKE} hierarchy
249.if !defined(NOCLEAN)
250	@echo
251	@echo "--------------------------------------------------------------"
252	@echo " Cleaning up the obj tree"
253	@echo "--------------------------------------------------------------"
254	cd ${.CURDIR} && ${BMAKE} par-${CLEANDIR}
255.endif
256.if !defined(NOOBJDIR)
257	@echo
258	@echo "--------------------------------------------------------------"
259	@echo " Rebuilding the obj tree"
260	@echo "--------------------------------------------------------------"
261	cd ${.CURDIR} && ${BMAKE} par-obj
262.endif
263.if !defined(NOTOOLS)
264	@echo
265	@echo "--------------------------------------------------------------"
266	@echo " Rebuilding bootstrap tools"
267	@echo "--------------------------------------------------------------"
268	cd ${.CURDIR} && ${BMAKE} bootstrap
269	@echo
270	@echo "--------------------------------------------------------------"
271	@echo " Rebuilding tools necessary to build the include files"
272	@echo "--------------------------------------------------------------"
273	cd ${.CURDIR} && ${BMAKE} include-tools
274.endif
275	@echo
276	@echo "--------------------------------------------------------------"
277	@echo " Rebuilding /usr/include"
278	@echo "--------------------------------------------------------------"
279	cd ${.CURDIR} && SHARED=symlinks ${BMAKE} includes
280.if !defined(NOTOOLS)
281	@echo
282	@echo "--------------------------------------------------------------"
283	@echo " Rebuilding tools needed to build the libraries"
284	@echo "--------------------------------------------------------------"
285	cd ${.CURDIR} && ${BMAKE} lib-tools
286.endif
287	@echo
288	@echo "--------------------------------------------------------------"
289	@echo " Rebuilding /usr/lib"
290	@echo "--------------------------------------------------------------"
291	cd ${.CURDIR} && ${BMAKE} libraries
292.if !defined(NOTOOLS)
293	@echo
294	@echo "--------------------------------------------------------------"
295	@echo " Rebuilding all other tools needed to build the world"
296	@echo "--------------------------------------------------------------"
297	cd ${.CURDIR} && ${BMAKE} build-tools
298.endif
299	@echo
300	@echo "--------------------------------------------------------------"
301	@echo " Rebuilding dependencies"
302	@echo "--------------------------------------------------------------"
303	cd ${.CURDIR} && ${XMAKE} par-depend
304	@echo
305	@echo "--------------------------------------------------------------"
306	@echo " Building everything.."
307	@echo "--------------------------------------------------------------"
308	cd ${.CURDIR} && ${XMAKE} all
309
310#
311# installworld
312#
313# Installs everything compiled by a 'buildworld'.
314#
315installworld:
316	cd ${.CURDIR} && ${IXMAKE} reinstall
317
318#
319# reinstall
320#
321# If you have a build server, you can NFS mount the source and obj directories
322# and do a 'make reinstall' on the *client* to install new binaries from the
323# most recent server build.
324#
325reinstall:
326	@echo "--------------------------------------------------------------"
327	@echo " Making hierarchy"
328	@echo "--------------------------------------------------------------"
329	cd ${.CURDIR} && ${MAKE} hierarchy
330	@echo
331	@echo "--------------------------------------------------------------"
332	@echo " Installing everything.."
333	@echo "--------------------------------------------------------------"
334	cd ${.CURDIR} && ${MAKE} install
335	@echo
336	@echo "--------------------------------------------------------------"
337	@echo " Rebuilding man page indexes"
338	@echo "--------------------------------------------------------------"
339	cd ${.CURDIR}/share/man && ${MAKE} makedb
340
341#
342# update
343#
344# Update the source tree, by running sup and/or running cvs to update to the
345# latest copy.
346#
347update:
348.if defined(SUP_UPDATE)
349	@echo "--------------------------------------------------------------"
350	@echo "Running sup"
351	@echo "--------------------------------------------------------------"
352	@${SUP} ${SUPFLAGS} ${SUPFILE}
353.if defined(SUPFILE1)
354	@${SUP} ${SUPFLAGS} ${SUPFILE1}
355.endif
356.if defined(SUPFILE2)
357	@${SUP} ${SUPFLAGS} ${SUPFILE2}
358.endif
359.endif
360.if defined(CVS_UPDATE)
361	@echo "--------------------------------------------------------------"
362	@echo "Updating /usr/src from cvs repository" ${CVSROOT}
363	@echo "--------------------------------------------------------------"
364	cd ${.CURDIR} && cvs -q update -P -d
365.endif
366
367#
368# most
369#
370# Build most of the user binaries on the existing system libs and includes.
371#
372most:
373	@echo "--------------------------------------------------------------"
374	@echo " Building programs only"
375	@echo "--------------------------------------------------------------"
376	cd ${.CURDIR}/bin	&&	${MAKE} all
377	cd ${.CURDIR}/sbin	&&	${MAKE} all
378	cd ${.CURDIR}/libexec	&&	${MAKE} all
379	cd ${.CURDIR}/usr.bin	&&	${MAKE} all
380	cd ${.CURDIR}/usr.sbin	&&	${MAKE} all
381	cd ${.CURDIR}/gnu/libexec &&	${MAKE} all
382	cd ${.CURDIR}/gnu/usr.bin &&	${MAKE} all
383	cd ${.CURDIR}/gnu/usr.sbin &&	${MAKE} all
384#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
385#	cd ${.CURDIR}/kerberosIV	&&	${MAKE} most
386#.endif
387#.if !defined(NOSECURE) && !defined(NOCRYPT)
388#	cd ${.CURDIR}/secure	&&	${MAKE} most
389#.endif
390
391#
392# installmost
393#
394# Install the binaries built by the 'most' target.  This does not include
395# libraries or include files.
396#
397installmost:
398	@echo "--------------------------------------------------------------"
399	@echo " Installing programs only"
400	@echo "--------------------------------------------------------------"
401	cd ${.CURDIR}/bin	&&	${MAKE} install
402	cd ${.CURDIR}/sbin	&&	${MAKE} install
403	cd ${.CURDIR}/libexec	&&	${MAKE} install
404	cd ${.CURDIR}/usr.bin	&&	${MAKE} install
405	cd ${.CURDIR}/usr.sbin	&&	${MAKE} install
406	cd ${.CURDIR}/gnu/libexec &&	${MAKE} install
407	cd ${.CURDIR}/gnu/usr.bin &&	${MAKE} install
408	cd ${.CURDIR}/gnu/usr.sbin &&	${MAKE} install
409#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
410#	cd ${.CURDIR}/kerberosIV &&	${MAKE} installmost
411#.endif
412#.if !defined(NOSECURE) && !defined(NOCRYPT)
413#	cd ${.CURDIR}/secure	&&	${MAKE} installmost
414#.endif
415
416#
417# ------------------------------------------------------------------------
418#
419# From here onwards are utility targets used by the 'make world' and
420# related targets.  If your 'world' breaks, you may like to try to fix
421# the problem and manually run the following targets to attempt to
422# complete the build.  Beware, this is *not* guaranteed to work, you
423# need to have a pretty good grip on the current state of the system
424# to attempt to manually finish it.  If in doubt, 'make world' again.
425#
426
427#
428# heirarchy - ensure that all the needed directories are present
429#
430hierarchy:
431	cd ${.CURDIR}/etc &&		${MAKE} distrib-dirs
432
433#
434# bootstrap - [re]build tools needed to run the actual build, this includes
435# tools needed by 'make depend', as some tools are needed to generate source
436# for the dependency information to be gathered from.
437#
438bootstrap:
439.if defined(DESTDIR)
440	rm -f ${DESTDIR}/usr/src/sys
441	ln -s ${.CURDIR}/sys ${DESTDIR}/usr/src
442	cd ${.CURDIR}/include && find -dx . | cpio -dump ${DESTDIR}/usr/include
443	cd ${.CURDIR}/include && make symlinks
444.endif
445	cd ${.CURDIR}/usr.bin/make && ${MAKE} depend && \
446		${MAKE} ${MK_FLAGS} all && \
447		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
448	cd ${.CURDIR}/usr.bin/xinstall && ${MAKE} depend && \
449		${MAKE} ${MK_FLAGS} all && \
450		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
451	cd ${.CURDIR}/usr.bin/lex && ${MAKE} bootstrap && ${MAKE} depend && \
452		${MAKE} ${MK_FLAGS} -DNOLIB all && \
453		${MAKE} ${MK_FLAGS} -DNOLIB -B install ${CLEANDIR}
454.if !defined(NOOBJDIR)
455	cd ${.CURDIR}/usr.bin/lex && ${MAKE} obj
456.endif
457
458#
459# include-tools - generally the same as 'bootstrap', except that it's for
460# things that are specifically needed to generate include files.
461#
462# XXX should be merged with bootstrap, it's not worth keeeping them separate.
463# Well, maybe it is now.  We force 'cleandepend' here to avoid dependencies
464# on cleaned away headers in ${WORLDTMP}.
465#
466include-tools:
467	cd ${.CURDIR}/usr.bin/rpcgen && ${MAKE} -B cleandepend depend && \
468		${MAKE} ${MK_FLAGS} all && \
469		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
470
471#
472# includes - possibly generate and install the include files.
473#
474includes:
475.if defined(CLOBBER)
476	rm -rf ${DESTDIR}/usr/include/*
477	mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
478		-p ${DESTDIR}/usr/include
479.endif
480	cd ${.CURDIR}/include &&		${MAKE} -B all install
481	cd ${.CURDIR}/gnu/include &&		${MAKE} install
482	cd ${.CURDIR}/gnu/lib/libmp &&		${MAKE} beforeinstall
483	cd ${.CURDIR}/gnu/lib/libobjc &&	${MAKE} beforeinstall
484	cd ${.CURDIR}/gnu/lib/libreadline &&	${MAKE} beforeinstall
485	cd ${.CURDIR}/gnu/lib/libregex &&	${MAKE} beforeinstall
486	cd ${.CURDIR}/gnu/lib/libstdc++ &&	${MAKE} beforeinstall
487	cd ${.CURDIR}/gnu/lib/libg++ &&		${MAKE} beforeinstall
488	cd ${.CURDIR}/gnu/lib/libdialog &&	${MAKE} beforeinstall
489	cd ${.CURDIR}/gnu/lib/libgmp &&		${MAKE} beforeinstall
490.if exists(secure) && !defined(NOCRYPT)
491	cd ${.CURDIR}/secure/lib/libdes &&	${MAKE} beforeinstall
492.endif
493.if exists(kerberosIV) && !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
494	cd ${.CURDIR}/kerberosIV/lib/libacl &&	${MAKE} beforeinstall
495	cd ${.CURDIR}/kerberosIV/lib/libkadm &&	${MAKE} beforeinstall
496	cd ${.CURDIR}/kerberosIV/lib/libkafs &&	${MAKE} beforeinstall
497	cd ${.CURDIR}/kerberosIV/lib/libkdb &&	${MAKE} beforeinstall
498	cd ${.CURDIR}/kerberosIV/lib/libkrb &&	${MAKE} beforeinstall
499	cd ${.CURDIR}/kerberosIV/lib/libtelnet && ${MAKE} beforeinstall
500.else
501	cd ${.CURDIR}/lib/libtelnet &&		${MAKE} beforeinstall
502.endif
503.if exists(${.CURDIR}/lib/csu/${MACHINE})
504	cd ${.CURDIR}/lib/csu/${MACHINE} &&	${MAKE} beforeinstall
505.endif
506	cd ${.CURDIR}/lib/libalias &&		${MAKE} beforeinstall
507	cd ${.CURDIR}/lib/libc &&		${MAKE} beforeinstall
508	cd ${.CURDIR}/lib/libcurses &&		${MAKE} beforeinstall
509	cd ${.CURDIR}/lib/libdisk &&		${MAKE} beforeinstall
510	cd ${.CURDIR}/lib/libedit &&		${MAKE} beforeinstall
511	cd ${.CURDIR}/lib/libftpio &&		${MAKE} beforeinstall
512	cd ${.CURDIR}/lib/libmd &&		${MAKE} beforeinstall
513	cd ${.CURDIR}/lib/libmytinfo &&		${MAKE} beforeinstall
514	cd ${.CURDIR}/lib/libncurses &&		${MAKE} beforeinstall
515.if !defined(WANT_CSRG_LIBM)
516	cd ${.CURDIR}/lib/msun &&		${MAKE} beforeinstall
517.endif
518	cd ${.CURDIR}/lib/libopie &&		${MAKE} beforeinstall
519	cd ${.CURDIR}/lib/libpcap &&		${MAKE} beforeinstall
520	cd ${.CURDIR}/lib/librpcsvc &&		${MAKE} beforeinstall
521	cd ${.CURDIR}/lib/libskey &&		${MAKE} beforeinstall
522.if !defined(NOTCL) && exists (${.CURDIR}/contrib/tcl) && \
523	exists(${.CURDIR}/usr.bin/tclsh) && exists (${.CURDIR}/lib/libtcl)
524	cd ${.CURDIR}/lib/libtcl &&		${MAKE} installhdrs
525.endif
526	cd ${.CURDIR}/lib/libtermcap &&		${MAKE} beforeinstall
527	cd ${.CURDIR}/lib/libcom_err &&		${MAKE} beforeinstall
528	cd ${.CURDIR}/lib/libss &&		${MAKE} beforeinstall
529	cd ${.CURDIR}/lib/libscsi &&		${MAKE} beforeinstall
530	cd ${.CURDIR}/lib/libutil &&		${MAKE} beforeinstall
531	cd ${.CURDIR}/lib/libvgl &&		${MAKE} beforeinstall
532	cd ${.CURDIR}/lib/libz &&		${MAKE} beforeinstall
533	cd ${.CURDIR}/usr.bin/f2c &&		${MAKE} beforeinstall
534	cd ${.CURDIR}/usr.bin/lex &&		${MAKE} beforeinstall
535
536#
537# lib-tools - build tools to compile and install the libraries.
538#
539# XXX gperf is required for cc
540# XXX a new ld and tsort is required for cc
541lib-tools:
542.for d in				\
543		gnu/usr.bin/gperf	\
544		gnu/usr.bin/ld		\
545		usr.bin/tsort		\
546		gnu/usr.bin/as		\
547		gnu/usr.bin/bison	\
548		gnu/usr.bin/cc		\
549		usr.bin/ar		\
550		usr.bin/compile_et	\
551		usr.bin/lex/lib		\
552		usr.bin/mk_cmds		\
553		usr.bin/nm		\
554		usr.bin/ranlib		\
555		usr.bin/uudecode
556	cd ${.CURDIR}/$d && ${MAKE} depend && \
557		${MAKE} ${MK_FLAGS} all && \
558		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
559.endfor
560
561#
562# libraries - build and install the libraries
563#
564libraries:
565.if exists(lib/csu/${MACHINE})
566	cd ${.CURDIR}/lib/csu/${MACHINE} && ${MAKE} depend && \
567		${MAKE} ${MK_FLAGS} all && \
568		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
569.endif
570.if exists(lib/libcompat)
571	cd ${.CURDIR}/lib/libcompat && ${MAKE} depend && \
572		${MAKE} ${MK_FLAGS} all && \
573		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
574.endif
575.if exists(lib/libncurses)
576	cd ${.CURDIR}/lib/libncurses && ${MAKE} depend && \
577		${MAKE} ${MK_FLAGS} all && \
578		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
579.endif
580.if exists(lib/libtermcap)
581	cd ${.CURDIR}/lib/libtermcap && ${MAKE} depend && \
582		${MAKE} ${MK_FLAGS} all && \
583		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
584.endif
585.if exists(gnu)
586	cd ${.CURDIR}/gnu/lib && ${MAKE} depend && \
587		${MAKE} ${MK_FLAGS} all && \
588		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
589.endif
590.if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
591	cd ${.CURDIR}/secure/lib && ${MAKE} depend && \
592		${MAKE} ${MK_FLAGS} all && \
593		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
594.endif
595.if exists(lib)
596	cd ${.CURDIR}/lib && ${MAKE} depend && \
597		${MAKE} ${MK_FLAGS} all && \
598		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
599.endif
600.if exists(usr.bin/lex/lib)
601	cd ${.CURDIR}/usr.bin/lex/lib && ${MAKE} depend && \
602		${MAKE} ${MK_FLAGS} all && \
603		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
604.endif
605.if exists(kerberosIV) && !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
606	cd ${.CURDIR}/kerberosIV/lib && ${MAKE} depend && \
607		${MAKE} ${MK_FLAGS} all && \
608		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
609.endif
610.if exists(usr.sbin/pcvt/keycap)
611	cd ${.CURDIR}/usr.sbin/pcvt/keycap && ${MAKE} depend && \
612		${MAKE} ${MK_FLAGS} all && \
613		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
614.endif
615
616#
617# build-tools - build and install any other tools needed to complete the
618# compile and install.
619# ifdef stale
620# bc and cpp are required to build groff.  Otherwise, the order here is
621# mostly historical, i.e., bogus.
622# chmod is used to build gcc's tmpmultilib[2] at obscure times.
623# endif stale
624# XXX uname is a bug - the target should not depend on the host.
625#
626build-tools:
627.for d in				\
628		bin/cat 		\
629		bin/chmod		\
630		bin/cp 			\
631		bin/date		\
632		bin/dd			\
633		bin/echo		\
634		bin/expr		\
635		bin/hostname		\
636		bin/ln			\
637		bin/ls			\
638		bin/mkdir		\
639		bin/mv			\
640		bin/rm			\
641		bin/sh			\
642		bin/test		\
643		gnu/usr.bin/awk		\
644		gnu/usr.bin/bc		\
645		gnu/usr.bin/grep	\
646		gnu/usr.bin/groff	\
647		gnu/usr.bin/gzip	\
648		gnu/usr.bin/man/makewhatis	\
649		gnu/usr.bin/sort	\
650		gnu/usr.bin/texinfo     \
651		share/info		\
652		usr.bin/basename	\
653		usr.bin/cap_mkdb	\
654		usr.bin/chflags		\
655		usr.bin/cmp		\
656		usr.bin/col		\
657		usr.bin/cpp		\
658		usr.bin/expand		\
659		usr.bin/file2c		\
660		usr.bin/find		\
661		usr.bin/gencat		\
662		usr.bin/lorder		\
663		usr.bin/m4		\
664		usr.bin/mkdep		\
665		usr.bin/paste		\
666		usr.bin/sed		\
667		usr.bin/size		\
668		usr.bin/soelim		\
669		usr.bin/strip		\
670		usr.bin/symorder	\
671		usr.bin/touch		\
672		usr.bin/tr		\
673		usr.bin/true		\
674		usr.bin/uname		\
675		usr.bin/uuencode	\
676		usr.bin/vgrind		\
677		usr.bin/vi		\
678		usr.bin/wc		\
679		usr.bin/yacc		\
680		usr.sbin/chown		\
681		usr.sbin/mtree		\
682		usr.sbin/zic
683	cd ${.CURDIR}/$d && ${MAKE} depend && \
684		${MAKE} ${MK_FLAGS} all && \
685		${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR}
686.endfor
687
688.for __target in clean cleandir obj depend
689.for entry in ${SUBDIR}
690${entry}.${__target}__D: .PHONY
691	if test -d ${.CURDIR}/${entry}.${MACHINE}; then \
692		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE}"; \
693		edir=${entry}.${MACHINE}; \
694		cd ${.CURDIR}/$${edir}; \
695	else \
696		${ECHODIR} "===> ${DIRPRFX}${entry}"; \
697		edir=${entry}; \
698		cd ${.CURDIR}/$${edir}; \
699	fi; \
700	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
701.endfor
702par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
703.endfor
704
705.endif
706
707.include <bsd.subdir.mk>
708