Makefile.inc1 revision 54365
1#
2# $FreeBSD: head/Makefile.inc1 54365 1999-12-09 13:36:16Z 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/aout 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	ln -sf ${.CURDIR}/sys ${WORLDTMP}/sys
176.if !defined(NOCLEAN)
177	@echo
178	@echo "--------------------------------------------------------------"
179	@echo ">>> Cleaning up the object tree"
180	@echo "--------------------------------------------------------------"
181	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/}
182.endif
183	@echo
184	@echo "--------------------------------------------------------------"
185	@echo ">>> Rebuilding the object tree"
186	@echo "--------------------------------------------------------------"
187	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 par-obj
188	@echo
189	@echo "--------------------------------------------------------------"
190	@echo ">>> Rebuilding tools"
191	@echo "--------------------------------------------------------------"
192	cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 -DNOINFO -DNOMAN tools
193	@echo
194	@echo "--------------------------------------------------------------"
195	@echo ">>> Rebuilding ${DESTDIR}/usr/include"
196	@echo "--------------------------------------------------------------"
197	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 includes
198	@echo
199	@echo "--------------------------------------------------------------"
200	@echo ">>> Rebuilding dependencies"
201	@echo "--------------------------------------------------------------"
202	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 par-depend
203	@echo
204	@echo "--------------------------------------------------------------"
205	@echo ">>> Building libraries"
206	@echo "--------------------------------------------------------------"
207	cd ${.CURDIR}; ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries
208	@echo
209	@echo "--------------------------------------------------------------"
210	@echo ">>> Building everything.."
211	@echo "--------------------------------------------------------------"
212	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all
213
214everything:
215	@echo "--------------------------------------------------------------"
216	@echo ">>> Building everything.."
217	@echo "--------------------------------------------------------------"
218	cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all
219
220#
221# installworld
222#
223# Installs everything compiled by a 'buildworld'.
224#
225installworld:
226	cd ${.CURDIR}; ${IXMAKE} -f Makefile.inc1 reinstall
227
228#
229# reinstall
230#
231# If you have a build server, you can NFS mount the source and obj directories
232# and do a 'make reinstall' on the *client* to install new binaries from the
233# most recent server build.
234#
235reinstall:
236	@echo "--------------------------------------------------------------"
237	@echo ">>> Making hierarchy"
238	@echo "--------------------------------------------------------------"
239	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
240	@echo
241	@echo "--------------------------------------------------------------"
242	@echo ">>> Installing everything.."
243	@echo "--------------------------------------------------------------"
244	cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
245.if !defined(NOMAN)
246	@echo
247	@echo "--------------------------------------------------------------"
248	@echo ">>> Rebuilding man page indices"
249	@echo "--------------------------------------------------------------"
250	cd ${.CURDIR}/share/man; ${MAKE} makedb
251.endif
252
253#
254# update
255#
256# Update the source tree, by running sup and/or running cvs to update to the
257# latest copy.
258#
259update:
260.if defined(SUP_UPDATE)
261	@echo "--------------------------------------------------------------"
262	@echo ">>> Running ${SUP}"
263	@echo "--------------------------------------------------------------"
264	@${SUP} ${SUPFLAGS} ${SUPFILE}
265.if defined(SUPFILE1)
266	@${SUP} ${SUPFLAGS} ${SUPFILE1}
267.endif
268.if defined(SUPFILE2)
269	@${SUP} ${SUPFLAGS} ${SUPFILE2}
270.endif
271.if defined(PORTSSUPFILE)
272	@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
273.endif
274.endif
275.if defined(CVS_UPDATE)
276	@echo "--------------------------------------------------------------"
277	@echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
278	@echo "--------------------------------------------------------------"
279	cd ${.CURDIR}; cvs -q update -P -d
280.endif
281
282#
283# most
284#
285# Build most of the user binaries on the existing system libs and includes.
286#
287most:
288	@echo "--------------------------------------------------------------"
289	@echo ">>> Building programs only"
290	@echo "--------------------------------------------------------------"
291	cd ${.CURDIR}/bin;		${MAKE} all
292	cd ${.CURDIR}/sbin;		${MAKE} all
293	cd ${.CURDIR}/libexec;		${MAKE} all
294	cd ${.CURDIR}/usr.bin;		${MAKE} all
295	cd ${.CURDIR}/usr.sbin;		${MAKE} all
296	cd ${.CURDIR}/gnu/libexec;	${MAKE} all
297	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} all
298	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} all
299#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
300#	cd ${.CURDIR}/kerberosIV;	${MAKE} most
301#.endif
302#.if !defined(NOSECURE) && !defined(NOCRYPT)
303#	cd ${.CURDIR}/secure;		${MAKE} most
304#.endif
305
306#
307# installmost
308#
309# Install the binaries built by the 'most' target.  This does not include
310# libraries or include files.
311#
312installmost:
313	@echo "--------------------------------------------------------------"
314	@echo ">>> Installing programs only"
315	@echo "--------------------------------------------------------------"
316	cd ${.CURDIR}/bin;		${MAKE} install
317	cd ${.CURDIR}/sbin;		${MAKE} install
318	cd ${.CURDIR}/libexec;		${MAKE} install
319	cd ${.CURDIR}/usr.bin;		${MAKE} install
320	cd ${.CURDIR}/usr.sbin;		${MAKE} install
321	cd ${.CURDIR}/gnu/libexec;	${MAKE} install
322	cd ${.CURDIR}/gnu/usr.bin;	${MAKE} install
323	cd ${.CURDIR}/gnu/usr.sbin;	${MAKE} install
324#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT)
325#	cd ${.CURDIR}/kerberosIV;	${MAKE} installmost
326#.endif
327#.if !defined(NOSECURE) && !defined(NOCRYPT)
328#	cd ${.CURDIR}/secure;		${MAKE} installmost
329#.endif
330
331#
332# ------------------------------------------------------------------------
333#
334# From here onwards are utility targets used by the 'make world' and
335# related targets.  If your 'world' breaks, you may like to try to fix
336# the problem and manually run the following targets to attempt to
337# complete the build.  Beware, this is *not* guaranteed to work, you
338# need to have a pretty good grip on the current state of the system
339# to attempt to manually finish it.  If in doubt, 'make world' again.
340#
341
342#
343# tools - Build tools needed to run the actual build.
344#
345tools:
346.for _tool in games/fortune/strfile gnu/usr.bin/binutils usr.bin/objformat \
347    usr.bin/yacc gnu/usr.bin/bison gnu/usr.bin/cc
348	cd ${.CURDIR}/${_tool}; \
349		${MAKE} depend; \
350		${MAKE} all; \
351		${MAKE} install; \
352		${MAKE} cleandir; \
353		${MAKE} obj
354.endfor
355
356#
357# hierarchy - ensure that all the needed directories are present
358#
359hierarchy:
360	cd ${.CURDIR}/etc;		${MAKE} distrib-dirs
361
362#
363# includes - possibly generate and install the include files.
364#
365includes:
366	cd ${.CURDIR}/include;		${MAKE} SHARED=symlinks -B all install
367	cd ${.CURDIR}/gnu/include;		${MAKE} install
368	cd ${.CURDIR}/gnu/lib/libmp;		${MAKE} beforeinstall
369	cd ${.CURDIR}/gnu/lib/libobjc;		${MAKE} beforeinstall
370	cd ${.CURDIR}/gnu/lib/libreadline;	${MAKE} beforeinstall
371	cd ${.CURDIR}/gnu/lib/libregex;		${MAKE} beforeinstall
372	cd ${.CURDIR}/gnu/lib/libstdc++;	${MAKE} beforeinstall
373	cd ${.CURDIR}/gnu/lib/libdialog;	${MAKE} beforeinstall
374	cd ${.CURDIR}/gnu/lib/libgmp;		${MAKE} beforeinstall
375	cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus;	${MAKE} beforeinstall
376.if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
377	cd ${.CURDIR}/secure/lib/libdes;	${MAKE} beforeinstall
378.endif
379.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \
380    defined(MAKE_KERBEROS4)
381	cd ${.CURDIR}/kerberosIV/lib/libacl;	${MAKE} beforeinstall
382	cd ${.CURDIR}/kerberosIV/lib/libkadm;	${MAKE} beforeinstall
383	cd ${.CURDIR}/kerberosIV/lib/libkafs;	${MAKE} beforeinstall
384	cd ${.CURDIR}/kerberosIV/lib/libkdb;	${MAKE} beforeinstall
385	cd ${.CURDIR}/kerberosIV/lib/libkrb;	${MAKE} beforeinstall
386	cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall
387.else
388	cd ${.CURDIR}/lib/libtelnet;		${MAKE} beforeinstall
389.endif
390.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
391	cd ${.CURDIR}/lib/csu/${MACHINE_ARCH};	${MAKE} beforeinstall
392.endif
393	cd ${.CURDIR}/lib/libalias;		${MAKE} beforeinstall
394	cd ${.CURDIR}/lib/libatm;		${MAKE} beforeinstall
395	cd ${.CURDIR}/lib/libdevstat;		${MAKE} beforeinstall
396	cd ${.CURDIR}/lib/libc;			${MAKE} beforeinstall
397	cd ${.CURDIR}/lib/libcalendar;		${MAKE} beforeinstall
398	cd ${.CURDIR}/lib/libcam;		${MAKE} beforeinstall
399	cd ${.CURDIR}/lib/libdisk;		${MAKE} beforeinstall
400	cd ${.CURDIR}/lib/libedit;		${MAKE} beforeinstall
401	cd ${.CURDIR}/lib/libftpio;		${MAKE} beforeinstall
402	cd ${.CURDIR}/lib/libkvm;		${MAKE} beforeinstall
403	cd ${.CURDIR}/lib/libmd;		${MAKE} beforeinstall
404.if !defined(WANT_CSRG_LIBM)
405	cd ${.CURDIR}/lib/msun;			${MAKE} beforeinstall
406.endif
407	cd ${.CURDIR}/lib/libncp;		${MAKE} beforeinstall
408	cd ${.CURDIR}/lib/libncurses;		${MAKE} beforeinstall
409	cd ${.CURDIR}/lib/libnetgraph;		${MAKE} beforeinstall
410	cd ${.CURDIR}/lib/libopie;		${MAKE} beforeinstall
411	cd ${.CURDIR}/lib/libpam/libpam;	${MAKE} beforeinstall
412	cd ${.CURDIR}/lib/libpcap;		${MAKE} beforeinstall
413	cd ${.CURDIR}/lib/libradius;		${MAKE} beforeinstall
414	cd ${.CURDIR}/lib/librpcsvc;		${MAKE} beforeinstall
415	cd ${.CURDIR}/lib/libskey;		${MAKE} beforeinstall
416	cd ${.CURDIR}/lib/libstand;		${MAKE} beforeinstall
417	cd ${.CURDIR}/lib/libtacplus;		${MAKE} beforeinstall
418	cd ${.CURDIR}/lib/libcom_err;		${MAKE} beforeinstall
419	cd ${.CURDIR}/lib/libss;		${MAKE} -B hdrs beforeinstall
420	cd ${.CURDIR}/lib/libutil;		${MAKE} beforeinstall
421	cd ${.CURDIR}/lib/libvgl;		${MAKE} beforeinstall
422	cd ${.CURDIR}/lib/libwrap;		${MAKE} beforeinstall
423	cd ${.CURDIR}/lib/libz;			${MAKE} beforeinstall
424	cd ${.CURDIR}/usr.bin/lex;		${MAKE} beforeinstall
425
426#
427# libraries - build all libraries, and install them under ${DESTDIR}.
428#
429# The following dependencies exist between the libraries:
430#
431# lib*: csu
432# libatm: libmd
433# libcrypt: libmd
434# libdialog: libncurses
435# libedit: libncurses
436# libg++: libm
437# libkrb: libcrypt
438# libopie: libmd
439# libpam: libcom_err libcrypt libdes libgcc_pic libkrb libradius libskey \
440#	  libtacplus libutil
441# libradius: libmd
442# libreadline: libncurses
443# libskey: libcrypt libmd
444# libss: libcom_err
445# libstc++: libm
446# libtacplus: libmd
447#
448# Across directories this comes down to (rougly):
449#
450# gnu/lib: lib/libm lib/libncurses
451# kerberosIV/lib: lib/libcrypt
452# lib/libpam: secure/lib/libdes kerberosIV/lib/libkrb gnu/lib/libgcc
453# secure/lib: lib/libmd
454#
455.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc)
456_csu=	lib/csu/${MACHINE_ARCH}.pcc
457.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf"
458_csu=	lib/csu/i386-elf
459.else
460_csu=	lib/csu/${MACHINE_ARCH}
461.endif
462
463.if !defined(NOSECURE) && !defined(NOCRYPT)
464_secure_lib=	secure/lib
465.endif
466
467.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
468_kerberosIV_lib=	kerberosIV/lib
469.endif
470
471.if defined(WANT_CSRG_LIBM)
472_libm=	lib/libm
473.else
474_libm=	lib/msun
475.endif
476
477.if !defined(NOPERL)
478_libperl=	gnu/usr.bin/perl/libperl
479.endif
480
481libraries:
482.for _lib in ${_csu} lib/libmd lib/libcrypt ${_secure_lib} ${_kerberosIV_lib} \
483    gnu/lib/libgcc lib/libcom_err ${_libm} lib/libncurses lib/libradius \
484    lib/libskey lib/libtacplus lib/libutil lib gnu/lib ${_libperl} \
485    usr.bin/lex/lib usr.sbin/pcvt/keycap
486.if exists(${.CURDIR}/${_lib})
487	cd ${.CURDIR}/${_lib}; \
488		${MAKE} depend; \
489		${MAKE} all; \
490		${MAKE} install
491.endif
492.endfor
493
494.for __target in clean cleandepend cleandir depend obj
495.for entry in ${SUBDIR}
496${entry}.${__target}__D: .PHONY
497	@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
498		${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
499		edir=${entry}.${MACHINE_ARCH}; \
500		cd ${.CURDIR}/$${edir}; \
501	else \
502		${ECHODIR} "===> ${DIRPRFX}${entry}"; \
503		edir=${entry}; \
504		cd ${.CURDIR}/$${edir}; \
505	fi; \
506	${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
507.endfor
508par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
509.endfor
510
511.include <bsd.subdir.mk>
512