Makefile.inc1 revision 54311
1#
2# $FreeBSD: head/Makefile.inc1 54311 1999-12-08 13:45:11Z marcel $
3#
4# Make command line options:
5#	-DMAKE_KERBEROS4 to build KerberosIV
6#	-DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
7#	-DNOCLEAN do not clean at all
8#	-DNOCRYPT will prevent building of crypt versions
9#	-DNOPROFILE do not build profiled libraries
10#	-DNOSECURE do not go into secure subdir
11#	-DNOGAMES do not go into games subdir
12#	-DNOSHARE do not go into share subdir
13#	-DNOINFO do not make or install info files
14#	-DNOLIBC_R do not build libc_r.
15#	-DNO_FORTRAN do not build g77 and related libraries.
16#	LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
17
18#
19# The intended user-driven targets are:
20# buildworld  - rebuild *everything*, including glue to help do upgrades
21# installworld- install everything built by "buildworld"
22# update      - convenient way to update your source tree (eg: sup/cvs)
23# most        - build user commands, no libraries or include files
24# installmost - install user commands, no libraries or include files
25#
26# Standard targets (not defined here) are documented in the makefiles in
27# /usr/share/mk.  These include:
28#		obj depend all install clean cleandepend cleanobj
29
30# Put initial settings here.
31SUBDIR=
32
33# We must do share/info early so that installation of info `dir'
34# entries works correctly.  Do it first since it is less likely to
35# grow dependencies on include and lib than vice versa.
36.if exists(${.CURDIR}/share/info)
37SUBDIR+= share/info
38.endif
39
40# We must do include and lib early so that the perl *.ph generation
41# works correctly as it uses the header files installed by this.
42.if exists(${.CURDIR}/include)
43SUBDIR+= include
44.endif
45.if exists(${.CURDIR}/lib)
46SUBDIR+= lib
47.endif
48
49.if exists(${.CURDIR}/bin)
50SUBDIR+= bin
51.endif
52.if exists(${.CURDIR}/games) && !defined(NOGAMES)
53SUBDIR+= games
54.endif
55.if exists(${.CURDIR}/gnu)
56SUBDIR+= gnu
57.endif
58.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
59    !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
60SUBDIR+= kerberosIV
61.endif
62.if exists(${.CURDIR}/libexec)
63SUBDIR+= libexec
64.endif
65.if exists(${.CURDIR}/sbin)
66SUBDIR+= sbin
67.endif
68.if exists(${.CURDIR}/share) && !defined(NOSHARE)
69SUBDIR+= share
70.endif
71.if exists(${.CURDIR}/sys)
72SUBDIR+= sys
73.endif
74.if exists(${.CURDIR}/usr.bin)
75SUBDIR+= usr.bin
76.endif
77.if exists(${.CURDIR}/usr.sbin)
78SUBDIR+= usr.sbin
79.endif
80.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
81SUBDIR+= secure
82.endif
83
84# etc must be last for "distribute" to work
85.if exists(${.CURDIR}/etc)
86SUBDIR+= etc
87.endif
88
89# These are last, since it is nice to at least get the base system
90# rebuilt before you do them.
91.if defined(LOCAL_DIRS)
92.for _DIR in ${LOCAL_DIRS}
93.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
94SUBDIR+= ${_DIR}
95.endif
96.endfor
97.endif
98
99.if defined(NOCLEANDIR)
100CLEANDIR=	clean cleandepend
101.else
102CLEANDIR=	cleandir
103.endif
104
105SUP?=		cvsup
106SUPFLAGS?=	-g -L 2 -P -
107
108#
109# Define the location of the temporary installation directory. Note that
110# MAKEOBJDIRPREFIX normally isn't defined so if the current directory is
111# /usr/src, then the world temporary directory is /usr/obj/usr/src/tmp.
112#
113# During the transition from aout to elf format on i386, MAKEOBJDIRPREFIX
114# is set by the parent makefile (Makefile.inc0) to be /usr/obj/${OBJFORMAT}
115# in order to keep aout and elf format files apart.
116#
117.if defined(MAKEOBJDIRPREFIX)
118WORLDTMP=	${MAKEOBJDIRPREFIX}${.CURDIR}/tmp
119.else
120WORLDTMP=	/usr/obj${.CURDIR}/tmp
121.endif
122
123STRICTTMPPATH=	${WORLDTMP}/bin:${WORLDTMP}/usr/bin
124TMPPATH=	${STRICTTMPPATH}:${PATH}
125
126BUILD_ARCH!=	sysctl -n hw.machine_arch
127
128BMAKEENV=	INSTALL="sh ${.CURDIR}/tools/install.sh" \
129		TARGET_ARCH=${MACHINE_ARCH} \
130		MACHINE_ARCH=${BUILD_ARCH} \
131		PATH=${TMPPATH}
132
133XMAKEENV=	COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \
134		LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib \
135		OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \
136		CFLAGS="-nostdinc ${CFLAGS}" \
137		PERL5LIB=${DESTDIR}/usr/libdata/perl/5.00503 \
138		PATH=${TMPPATH}
139
140# bootstrap make
141BMAKE=	${BMAKEENV} ${MAKE} DESTDIR=${WORLDTMP} -DNOMAN -DNOINFO
142# cross make used for compilation
143XMAKE=	${XMAKEENV} ${MAKE} DESTDIR=${WORLDTMP} \
144		INSTALL="sh ${.CURDIR}/tools/install.sh"
145
146# cross make used for final installation
147IXMAKE=	${XMAKEENV} ${MAKE}
148
149#
150# buildworld
151#
152# Attempt to rebuild the entire system, with reasonable chance of
153# success, regardless of how old your existing system is.
154#
155USRDIRS=	usr/bin usr/lib/compat usr/games usr/libdata/ldscripts \
156		usr/libexec/${OBJFORMAT} usr/share/misc
157
158INCDIRS=	arpa cam/scsi g++/std isofs/cd9660 machine msdosfs net \
159		netatalk netatm netgraph netinet netinet6 netipx netkey \
160		netncp netns nfs ntfs nwfs objc pccard posix4 protocols \
161		readline rpc rpcsvc security ss sys ufs/ffs ufs/mfs ufs/ufs vm
162
163buildworld:
164	@echo
165	@echo "--------------------------------------------------------------"
166	@echo ">>> Cleaning up the temporary build tree"
167	@echo "--------------------------------------------------------------"
168	rm -rf ${WORLDTMP}
169.for _dir in ${USRDIRS}
170	mkdir -p ${WORLDTMP}/${_dir}
171.endfor
172.for _dir in ${INCDIRS}
173	mkdir -p ${WORLDTMP}/usr/include/${_dir}
174.endfor
175.if !defined(NOCLEAN)
176	@echo
177	@echo "--------------------------------------------------------------"
178	@echo ">>> Cleaning up the object tree"
179	@echo "--------------------------------------------------------------"
180	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
181.endif
182	@echo
183	@echo "--------------------------------------------------------------"
184	@echo ">>> Rebuilding the object tree"
185	@echo "--------------------------------------------------------------"
186	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 par-obj
187	@echo
188	@echo "--------------------------------------------------------------"
189	@echo ">>> Rebuilding tools"
190	@echo "--------------------------------------------------------------"
191	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 -DNOINFO -DNOMAN tools
192	@echo
193	@echo "--------------------------------------------------------------"
194	@echo ">>> Rebuilding ${DESTDIR}/usr/include"
195	@echo "--------------------------------------------------------------"
196	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 includes
197	@echo
198	@echo "--------------------------------------------------------------"
199	@echo ">>> Rebuilding dependencies"
200	@echo "--------------------------------------------------------------"
201	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 par-depend
202	@echo
203	@echo "--------------------------------------------------------------"
204	@echo ">>> Building libraries"
205	@echo "--------------------------------------------------------------"
206	cd ${.CURDIR}; ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries
207	@echo
208	@echo "--------------------------------------------------------------"
209	@echo ">>> Building everything.."
210	@echo "--------------------------------------------------------------"
211	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all
212
213everything:
214	@echo "--------------------------------------------------------------"
215	@echo ">>> Building everything.."
216	@echo "--------------------------------------------------------------"
217	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all
218
219#
220# installworld
221#
222# Installs everything compiled by a 'buildworld'.
223#
224installworld:
225	cd ${.CURDIR}; ${IXMAKE} -f Makefile.inc1 reinstall
226
227#
228# reinstall
229#
230# If you have a build server, you can NFS mount the source and obj directories
231# and do a 'make reinstall' on the *client* to install new binaries from the
232# most recent server build.
233#
234reinstall:
235	@echo "--------------------------------------------------------------"
236	@echo ">>> Making hierarchy"
237	@echo "--------------------------------------------------------------"
238	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
239	@echo
240	@echo "--------------------------------------------------------------"
241	@echo ">>> Installing everything.."
242	@echo "--------------------------------------------------------------"
243	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
244.if !defined(NOMAN)
245	@echo
246	@echo "--------------------------------------------------------------"
247	@echo ">>> Rebuilding man page indices"
248	@echo "--------------------------------------------------------------"
249	cd ${.CURDIR}/share/man; ${MAKE} makedb
250.endif
251
252#
253# update
254#
255# Update the source tree, by running sup and/or running cvs to update to the
256# latest copy.
257#
258update:
259.if defined(SUP_UPDATE)
260	@echo "--------------------------------------------------------------"
261	@echo ">>> Running ${SUP}"
262	@echo "--------------------------------------------------------------"
263	@${SUP} ${SUPFLAGS} ${SUPFILE}
264.if defined(SUPFILE1)
265	@${SUP} ${SUPFLAGS} ${SUPFILE1}
266.endif
267.if defined(SUPFILE2)
268	@${SUP} ${SUPFLAGS} ${SUPFILE2}
269.endif
270.if defined(PORTSSUPFILE)
271	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
272.endif
273.endif
274.if defined(CVS_UPDATE)
275	@echo "--------------------------------------------------------------"
276	@echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
277	@echo "--------------------------------------------------------------"
278	cd ${.CURDIR}; cvs -q update -P -d
279.endif
280
281#
282# most
283#
284# Build most of the user binaries on the existing system libs and includes.
285#
286most:
287	@echo "--------------------------------------------------------------"
288	@echo ">>> Building programs only"
289	@echo "--------------------------------------------------------------"
290	cd ${.CURDIR}/bin;		${MAKE} all
291	cd ${.CURDIR}/sbin;		${MAKE} all
292	cd ${.CURDIR}/libexec;		${MAKE} all
293	cd ${.CURDIR}/usr.bin;		${MAKE} all
294	cd ${.CURDIR}/usr.sbin;		${MAKE} all
295	cd ${.CURDIR}/gnu/libexec;	${MAKE} all
296	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} all
297	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} all
298#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
299#	cd ${.CURDIR}/kerberosIV;	${MAKE} most
300#.endif
301#.if !defined(NOSECURE) && !defined(NOCRYPT)
302#	cd ${.CURDIR}/secure;		${MAKE} most
303#.endif
304
305#
306# installmost
307#
308# Install the binaries built by the 'most' target.  This does not include
309# libraries or include files.
310#
311installmost:
312	@echo "--------------------------------------------------------------"
313	@echo ">>> Installing programs only"
314	@echo "--------------------------------------------------------------"
315	cd ${.CURDIR}/bin;		${MAKE} install
316	cd ${.CURDIR}/sbin;		${MAKE} install
317	cd ${.CURDIR}/libexec;		${MAKE} install
318	cd ${.CURDIR}/usr.bin;		${MAKE} install
319	cd ${.CURDIR}/usr.sbin;		${MAKE} install
320	cd ${.CURDIR}/gnu/libexec;	${MAKE} install
321	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} install
322	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} install
323#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
324#	cd ${.CURDIR}/kerberosIV;	${MAKE} installmost
325#.endif
326#.if !defined(NOSECURE) && !defined(NOCRYPT)
327#	cd ${.CURDIR}/secure;		${MAKE} installmost
328#.endif
329
330#
331# ------------------------------------------------------------------------
332#
333# From here onwards are utility targets used by the 'make world' and
334# related targets.  If your 'world' breaks, you may like to try to fix
335# the problem and manually run the following targets to attempt to
336# complete the build.  Beware, this is *not* guaranteed to work, you
337# need to have a pretty good grip on the current state of the system
338# to attempt to manually finish it.  If in doubt, 'make world' again.
339#
340
341#
342# tools - Build tools needed to run the actual build.
343#
344tools:
345.for _tool in games/fortune/strfile gnu/usr.bin/binutils usr.bin/objformat \
346    usr.bin/yacc gnu/usr.bin/bison gnu/usr.bin/cc
347	cd ${.CURDIR}/${_tool}; \
348		${MAKE} depend; \
349		${MAKE} all; \
350		${MAKE} install; \
351		${MAKE} cleandir; \
352		${MAKE} obj
353.endfor
354
355#
356# hierarchy - ensure that all the needed directories are present
357#
358hierarchy:
359	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
360
361#
362# includes - possibly generate and install the include files.
363#
364includes:
365	cd ${.CURDIR}/include;			${MAKE} -B all install
366	cd ${.CURDIR}/gnu/include;		${MAKE} install
367	cd ${.CURDIR}/gnu/lib/libmp;		${MAKE} beforeinstall
368	cd ${.CURDIR}/gnu/lib/libobjc;		${MAKE} beforeinstall
369	cd ${.CURDIR}/gnu/lib/libreadline;	${MAKE} beforeinstall
370	cd ${.CURDIR}/gnu/lib/libregex;		${MAKE} beforeinstall
371	cd ${.CURDIR}/gnu/lib/libstdc++;	${MAKE} beforeinstall
372	cd ${.CURDIR}/gnu/lib/libdialog;	${MAKE} beforeinstall
373	cd ${.CURDIR}/gnu/lib/libgmp;		${MAKE} beforeinstall
374	cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus;	${MAKE} beforeinstall
375.if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
376	cd ${.CURDIR}/secure/lib/libdes;	${MAKE} beforeinstall
377.endif
378.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \
379    defined(MAKE_KERBEROS4)
380	cd ${.CURDIR}/kerberosIV/lib/libacl;	${MAKE} beforeinstall
381	cd ${.CURDIR}/kerberosIV/lib/libkadm;	${MAKE} beforeinstall
382	cd ${.CURDIR}/kerberosIV/lib/libkafs;	${MAKE} beforeinstall
383	cd ${.CURDIR}/kerberosIV/lib/libkdb;	${MAKE} beforeinstall
384	cd ${.CURDIR}/kerberosIV/lib/libkrb;	${MAKE} beforeinstall
385	cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall
386.else
387	cd ${.CURDIR}/lib/libtelnet;		${MAKE} beforeinstall
388.endif
389.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
390	cd ${.CURDIR}/lib/csu/${MACHINE_ARCH};	${MAKE} beforeinstall
391.endif
392	cd ${.CURDIR}/lib/libalias;		${MAKE} beforeinstall
393	cd ${.CURDIR}/lib/libatm;		${MAKE} beforeinstall
394	cd ${.CURDIR}/lib/libdevstat;		${MAKE} beforeinstall
395	cd ${.CURDIR}/lib/libc;			${MAKE} beforeinstall
396	cd ${.CURDIR}/lib/libcalendar;		${MAKE} beforeinstall
397	cd ${.CURDIR}/lib/libcam;		${MAKE} beforeinstall
398	cd ${.CURDIR}/lib/libdisk;		${MAKE} beforeinstall
399	cd ${.CURDIR}/lib/libedit;		${MAKE} beforeinstall
400	cd ${.CURDIR}/lib/libftpio;		${MAKE} beforeinstall
401	cd ${.CURDIR}/lib/libkvm;		${MAKE} beforeinstall
402	cd ${.CURDIR}/lib/libmd;		${MAKE} beforeinstall
403.if !defined(WANT_CSRG_LIBM)
404	cd ${.CURDIR}/lib/msun;			${MAKE} beforeinstall
405.endif
406	cd ${.CURDIR}/lib/libncp;		${MAKE} beforeinstall
407	cd ${.CURDIR}/lib/libncurses;		${MAKE} beforeinstall
408	cd ${.CURDIR}/lib/libnetgraph;		${MAKE} beforeinstall
409	cd ${.CURDIR}/lib/libopie;		${MAKE} beforeinstall
410	cd ${.CURDIR}/lib/libpam/libpam;	${MAKE} beforeinstall
411	cd ${.CURDIR}/lib/libpcap;		${MAKE} beforeinstall
412	cd ${.CURDIR}/lib/libradius;		${MAKE} beforeinstall
413	cd ${.CURDIR}/lib/librpcsvc;		${MAKE} beforeinstall
414	cd ${.CURDIR}/lib/libskey;		${MAKE} beforeinstall
415	cd ${.CURDIR}/lib/libstand;		${MAKE} beforeinstall
416	cd ${.CURDIR}/lib/libtacplus;		${MAKE} beforeinstall
417	cd ${.CURDIR}/lib/libcom_err;		${MAKE} beforeinstall
418	cd ${.CURDIR}/lib/libss;		${MAKE} -B hdrs beforeinstall
419	cd ${.CURDIR}/lib/libutil;		${MAKE} beforeinstall
420	cd ${.CURDIR}/lib/libvgl;		${MAKE} beforeinstall
421	cd ${.CURDIR}/lib/libwrap;		${MAKE} beforeinstall
422	cd ${.CURDIR}/lib/libz;			${MAKE} beforeinstall
423	cd ${.CURDIR}/usr.bin/lex;		${MAKE} beforeinstall
424
425#
426# libraries - build all libraries, and install them under ${DESTDIR}.
427#
428# The following dependencies exist between the libraries:
429#
430# lib*: csu
431# libatm: libmd
432# libcrypt: libmd
433# libdialog: libncurses
434# libedit: libncurses
435# libg++: libm
436# libkrb: libcrypt
437# libopie: libmd
438# libpam: libcom_err libcrypt libdes libgcc_pic libkrb libradius libskey \
439#	  libtacplus libutil
440# libradius: libmd
441# libreadline: libncurses
442# libskey: libcrypt libmd
443# libss: libcom_err
444# libstc++: libm
445# libtacplus: libmd
446#
447# Across directories this comes down to (rougly):
448#
449# gnu/lib: lib/libm lib/libncurses
450# kerberosIV/lib: lib/libcrypt
451# lib/libpam: secure/lib/libdes kerberosIV/lib/libkrb gnu/lib/libgcc
452# secure/lib: lib/libmd
453#
454.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc)
455_csu=	lib/csu/${MACHINE_ARCH}.pcc
456.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf"
457_csu=	lib/csu/i386-elf
458.else
459_csu=	lib/csu/${MACHINE_ARCH}
460.endif
461
462.if !defined(NOSECURE) && !defined(NOCRYPT)
463_secure_lib=	secure/lib
464.endif
465
466.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
467_kerberosIV_lib=	kerberosIV/lib
468.endif
469
470.if defined(WANT_CSRG_LIBM)
471_libm=	lib/libm
472.else
473_libm=	lib/msun
474.endif
475
476.if !defined(NOPERL)
477_libperl=	gnu/usr.bin/perl/libperl
478.endif
479
480libraries:
481.for _lib in ${_csu} lib/libmd lib/libcrypt ${_secure_lib} ${_kerberosIV_lib} \
482    gnu/lib/libgcc lib/libcom_err ${_libm} lib/libncurses lib/libradius \
483    lib/libskey lib/libtacplus lib/libutil lib gnu/lib ${_libperl} \
484    usr.bin/lex/lib usr.sbin/pcvt/keycap
485.if exists(${.CURDIR}/${_lib})
486	cd ${.CURDIR}/${_lib}; \
487		${MAKE} depend; \
488		${MAKE} all; \
489		${MAKE} install
490.endif
491.endfor
492
493.for __target in clean cleandepend cleandir depend obj
494.for entry in ${SUBDIR}
495${entry}.${__target}__D: .PHONY
496	@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
497		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
498		edir=${entry}.${MACHINE_ARCH}; \
499		cd ${.CURDIR}/$${edir}; \
500	else \
501		${ECHODIR} "===> ${DIRPRFX}${entry}"; \
502		edir=${entry}; \
503		cd ${.CURDIR}/$${edir}; \
504	fi; \
505	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
506.endfor
507par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
508.endfor
509
510.include <bsd.subdir.mk>
511