Makefile revision 1.252.4.2
1#	$NetBSD: Makefile,v 1.252.4.2 2008/09/18 04:27:24 wrstuden Exp $
2
3#
4# This is the top-level makefile for building NetBSD. For an outline of
5# how to build a snapshot or release, as well as other release engineering
6# information, see http://www.NetBSD.org/developers/releng/index.html
7#
8# Not everything you can set or do is documented in this makefile. In
9# particular, you should review the files in /usr/share/mk (especially
10# bsd.README) for general information on building programs and writing
11# Makefiles within this structure, and see the comments in src/etc/Makefile
12# for further information on installation and release set options.
13#
14# Variables listed below can be set on the make command line (highest
15# priority), in /etc/mk.conf (middle priority), or in the environment
16# (lowest priority).
17#
18# Variables:
19#   DESTDIR is the target directory for installation of the compiled
20#	software. It defaults to /. Note that programs are built against
21#	libraries installed in DESTDIR.
22#   MKMAN, if `no', will prevent building of manual pages.
23#   MKOBJDIRS, if not `no', will build object directories at
24#	an appropriate point in a build.
25#   MKSHARE, if `no', will prevent building and installing
26#	anything in /usr/share.
27#   MKUPDATE, if not `no', will avoid a `make cleandir' at the start of
28#	`make build', as well as having the effects listed in
29#	/usr/share/mk/bsd.README.
30#   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
31#	of the `make build'.
32#   NOINCLUDES will avoid the `make includes' usually done by `make build'.
33#
34#   See mk.conf(5) for more details.
35#
36#
37# Targets:
38#   build:
39#	Builds a full release of NetBSD in DESTDIR, except for the
40#	/etc configuration files.
41#	If BUILD_DONE is set, this is an empty target.
42#   distribution:
43#	Builds a full release of NetBSD in DESTDIR, including the /etc
44#	configuration files.
45#   buildworld:
46#	As per `make distribution', except that it ensures that DESTDIR
47#	is not the root directory.
48#   installworld:
49#	Install the distribution from DESTDIR to INSTALLWORLDDIR (which
50#	defaults to the root directory).  Ensures that INSTALLWORLDDIR
51#	is the not root directory if cross compiling.
52#   release:
53#	Does a `make distribution', and then tars up the DESTDIR files
54#	into ${RELEASEDIR}/${RELEASEMACHINEDIR}, in release(7) format.
55#	(See etc/Makefile for more information on this.)
56#   regression-tests:
57#	Runs the regression tests in "regress" on this host.
58#   sets:
59#	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
60#	from ${DESTDIR}
61#   sourcesets:
62#	Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
63#   syspkgs:
64#	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs
65#	from ${DESTDIR}
66#   iso-image:
67#	Create CD-ROM image in RELEASEDIR/iso.
68#	RELEASEDIR must already have been populated by `make release'
69#	or equivalent.
70#   iso-image-source:
71#	Create CD-ROM image with source in RELEASEDIR/iso.
72#	RELEASEDIR must already have been populated by
73#	`make release sourcesets' or equivalent.
74#
75# Targets invoked by `make build,' in order:
76#   cleandir:        cleans the tree.
77#   obj:             creates object directories.
78#   do-tools:        builds host toolchain.
79#   do-distrib-dirs: creates the distribution directories.
80#   includes:        installs include files.
81#   do-tools-compat: builds the "libnbcompat" library; needed for some
82#                    random host tool programs in the source tree.
83#   do-lib-csu:      builds and installs prerequisites from lib/csu.
84#   do-libgcc:       builds and installs prerequisites from
85#                    gnu/lib/crtstuff${LIBGCC_EXT} (if necessary) and
86#                    gnu/lib/libgcc${LIBGCC_EXT}.
87#   do-libpcc:       builds and install prerequisites from
88#                    external/bsd/pcc/crtstuff and external/bsd/pcc/libpcc.
89#   do-lib-libc:     builds and installs prerequisites from lib/libc.
90#   do-lib:          builds and installs prerequisites from lib.
91#   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
92#   do-external-lib: builds and installs prerequisites from external/lib.
93#   do-sys-rump-fs-lib: builds and installs prerequisites from sys/rump/fs/lib
94#   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
95#   do-build:        builds and installs the entire system.
96#   do-x11:          builds and installs X11; either
97#                    X11R7 from src/external/mit/xorg if ${MKORG} != "no"
98#                    or X11R6 from src/x11 if ${MKX11} != "no"
99#   do-obsolete:     installs the obsolete sets (for the postinstall-* targets).
100#
101
102.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
103.MAKEFLAGS: -m ${.CURDIR}/share/mk
104.endif
105
106#
107# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
108# not be the top level objdir, because "make obj" can happen in the *middle*
109# of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
110# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
111#
112_SRC_TOP_OBJ_=
113
114.include <bsd.own.mk>
115
116#
117# Sanity check: make sure that "make build" is not invoked simultaneously
118# with a standard recursive target.
119#
120
121.if make(build) || make(release) || make(snapshot)
122.for targ in ${TARGETS:Nobj:Ncleandir}
123.if make(${targ}) && !target(.BEGIN)
124.BEGIN:
125	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
126	@false
127.endif
128.endfor
129.endif
130
131_SUBDIR=	tools lib include gnu external bin games libexec sbin usr.bin
132_SUBDIR+=	usr.sbin share rescue sys etc tests .WAIT distrib regress
133
134#
135# Weed out directories that don't exist.
136#
137
138.for dir in ${_SUBDIR}
139.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
140SUBDIR+=	${dir}
141.endif
142.endfor
143
144.if exists(regress)
145regression-tests: .PHONY .MAKE
146	@echo Running regression tests...
147	${MAKEDIRTARGET} regress regress
148.endif
149
150.if ${MKUNPRIVED} != "no"
151NOPOSTINSTALL=	# defined
152.endif
153
154afterinstall: .PHONY .MAKE
155.if ${MKMAN} != "no"
156	${MAKEDIRTARGET} share/man makedb
157.endif
158.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
159	${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
160.endif
161.if !defined(NOPOSTINSTALL)
162	${MAKEDIRTARGET} . postinstall-check
163.endif
164
165_POSTINSTALL=	${.CURDIR}/usr.sbin/postinstall/postinstall
166
167postinstall-check: .PHONY
168	@echo "   === Post installation checks ==="
169	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi
170	@echo "   ================================"
171
172postinstall-fix: .NOTMAIN .PHONY
173	@echo "   === Post installation fixes ==="
174	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
175	@echo "   ==============================="
176
177postinstall-fix-obsolete: .NOTMAIN .PHONY
178	@echo "   === Removing obsolete files ==="
179	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
180	@echo "   ==============================="
181
182
183#
184# Targets (in order!) called by "make build".
185#
186.if defined(HAVE_GCC)
187.if ${HAVE_GCC} == "3"
188LIBGCC_EXT=3
189.else
190LIBGCC_EXT=4
191.endif
192.endif
193
194BUILDTARGETS+=	check-tools
195.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
196BUILDTARGETS+=	cleandir
197.endif
198.if ${MKOBJDIRS} != "no"
199BUILDTARGETS+=	obj
200.endif
201.if ${USETOOLS} == "yes"
202BUILDTARGETS+=	do-tools
203.endif
204.if !defined(NODISTRIBDIRS)
205BUILDTARGETS+=	do-distrib-dirs
206.endif
207.if !defined(NOINCLUDES)
208BUILDTARGETS+=	includes
209.endif
210BUILDTARGETS+=	do-tools-compat
211BUILDTARGETS+=	do-lib-csu
212.if ${MKGCC} != "no"
213BUILDTARGETS+=	do-libgcc
214.endif
215.if ${MKPCC} != "no"
216BUILDTARGET+=	do-libpcc
217.endif
218BUILDTARGETS+=	do-lib-libc
219BUILDTARGETS+=	do-lib do-gnu-lib do-external-lib
220BUILDTARGETS+=	do-sys-rump-fs-lib
221BUILDTARGETS+=	do-ld.so
222BUILDTARGETS+=	do-build
223.if ${MKX11} != "no" || ${MKXORG} != "no"
224BUILDTARGETS+=	do-x11
225.endif
226BUILDTARGETS+=	do-obsolete
227
228#
229# Enforce proper ordering of some rules.
230#
231
232.ORDER:		${BUILDTARGETS}
233includes-lib:	.PHONY includes-include includes-sys
234includes-gnu:	.PHONY includes-lib
235
236#
237# Build the system and install into DESTDIR.
238#
239
240START_TIME!=	date
241
242build: .PHONY .MAKE
243.if defined(BUILD_DONE)
244	@echo "Build already installed into ${DESTDIR}"
245.else
246	@echo "Build started at: ${START_TIME}"
247.for tgt in ${BUILDTARGETS}
248	${MAKEDIRTARGET} . ${tgt}
249.endfor
250	${MAKEDIRTARGET} etc install-etc-release
251	@echo   "Build started at:  ${START_TIME}"
252	@printf "Build finished at: " && date
253.endif
254
255#
256# Build a full distribution, but not a release (i.e. no sets into
257# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
258#
259
260distribution buildworld: .PHONY .MAKE
261.if make(buildworld) && \
262    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
263	@echo "Won't make ${.TARGET} with DESTDIR=/"
264	@false
265.endif
266	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
267	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
268.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
269	${MAKEDIRTARGET} . postinstall-fix-obsolete
270	${MAKEDIRTARGET} distrib/sets checkflist
271.endif
272	@echo   "make ${.TARGET} started at:  ${START_TIME}"
273	@printf "make ${.TARGET} finished at: " && date
274
275#
276# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
277# If installing to /, ensures that the host's operating system is NetBSD and
278# the host's `uname -m` == ${MACHINE}.
279#
280
281HOST_UNAME_S!=	uname -s
282HOST_UNAME_M!=	uname -m
283
284installworld: .PHONY .MAKE
285.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
286	@echo "Can't make ${.TARGET} to DESTDIR=/"
287	@false
288.endif
289.if !defined(INSTALLWORLDDIR) || \
290    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
291.if (${HOST_UNAME_S} != "NetBSD")
292	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
293	@false
294.endif
295.if (${HOST_UNAME_M} != ${MACHINE})
296	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
297	@false
298.endif
299.endif
300	${MAKEDIRTARGET} distrib/sets installsets \
301	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
302	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
303	@echo   "make ${.TARGET} started at:  ${START_TIME}"
304	@printf "make ${.TARGET} finished at: " && date
305
306#
307# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
308#
309
310.for tgt in sets sourcesets syspkgs
311${tgt}: .PHONY .MAKE
312	${MAKEDIRTARGET} distrib/sets ${tgt}
313.endfor
314
315#
316# Build a release or snapshot (implies "make distribution").  Note that
317# in this case, the set lists will be checked before the tar files
318# are made.
319#
320
321release snapshot: .PHONY .MAKE
322	${MAKEDIRTARGET} . distribution
323	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
324	@echo   "make ${.TARGET} started at:  ${START_TIME}"
325	@printf "make ${.TARGET} finished at: " && date
326
327#
328# Create a CD-ROM image.
329#
330
331iso-image: .PHONY
332	${MAKEDIRTARGET} distrib iso_image
333	${MAKEDIRTARGET} etc iso-image
334	@echo   "make ${.TARGET} started at:  ${START_TIME}"
335	@printf "make ${.TARGET} finished at: " && date
336
337iso-image-source: .PHONY
338	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
339	${MAKEDIRTARGET} etc iso-image
340	@echo   "make ${.TARGET} started at:  ${START_TIME}"
341	@printf "make ${.TARGET} finished at: " && date
342
343#
344# Special components of the "make build" process.
345#
346
347check-tools: .PHONY
348.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
349	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
350	@echo '*** May result in a failed build or corrupt binaries!'
351.elif defined(EXTERNAL_TOOLCHAIN)
352	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
353.endif
354.if defined(NBUILDJOBS)
355	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
356.endif
357
358do-distrib-dirs: .PHONY .MAKE
359.if !defined(DESTDIR) || ${DESTDIR} == ""
360	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
361.else
362	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
363.endif
364
365.for targ in cleandir obj includes
366do-${targ}: .PHONY ${targ}
367	@true
368.endfor
369
370.if defined(HAVE_GCC)
371BUILD_CC_LIB= gnu/lib/crtstuff${LIBGCC_EXT}
372BUILD_CC_LIB+= gnu/lib/libgcc${LIBGCC_EXT}
373.elif defined(HAVE_PCC)
374BUILD_CC_LIB+= external/bsd/pcc/crtstuff
375BUILD_CC_LIB+= external/bsd/pcc/libpcc
376.endif
377
378.for dir in tools tools/compat lib/csu ${BUILD_CC_LIB} lib/libc lib/libdes lib gnu/lib external/lib sys/rump/fs/lib
379do-${dir:S/\//-/g}: .PHONY .MAKE
380.for targ in dependall install
381	${MAKEDIRTARGET} ${dir} ${targ}
382.endfor
383.endfor
384
385do-libgcc: .PHONY .MAKE
386.if defined(HAVE_GCC)
387.if ${MKGCC} != "no"
388.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
389	${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT}
390.endif
391	${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT}
392.endif
393.endif
394
395do-libpcc: .PHONY .MAKE
396.if defined(HAVE_PCC)
397.if ${MKPCC} != "no"
398	${MAKEDIRTARGET} . do-pcc-lib-crtstuff
399	${MAKEDIRTARGET} . do-pcc-lib-libpcc
400.endif
401.endif
402
403do-ld.so: .PHONY .MAKE
404.for targ in dependall install
405.if (${OBJECT_FMT} == "a.out")
406	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
407.endif
408.if (${OBJECT_FMT} == "ELF")
409	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
410.endif
411.endfor
412
413do-build: .PHONY .MAKE
414.for targ in dependall install
415	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
416.endfor
417
418do-x11: .PHONY .MAKE
419.if ${MKXORG} != "no"
420	${MAKEDIRTARGET} external/mit/xorg build
421.elif ${MKX11} != "no"
422	${MAKEDIRTARGET} x11 build
423.else
424	@echo "Neither MKX11 or MKXORG is enabled"
425	@false
426.endif
427
428do-obsolete: .PHONY .MAKE
429	${MAKEDIRTARGET} etc install-obsolete-lists
430
431#
432# Speedup stubs for some subtrees that don't need to run these rules.
433# (Tells <bsd.subdir.mk> not to recurse for them.)
434#
435
436.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
437includes-${dir}: .PHONY
438	@true
439.endfor
440.for dir in etc distrib regress
441install-${dir}: .PHONY
442	@true
443.endfor
444
445#
446# XXX this needs to change when distrib Makefiles are recursion compliant
447# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
448#
449dependall-distrib depend-distrib all-distrib: .PHONY
450	@true
451
452.include <bsd.sys.mk>
453.include <bsd.obj.mk>
454.include <bsd.kernobj.mk>
455.include <bsd.subdir.mk>
456
457build-docs: .PHONY ${.CURDIR}/BUILDING
458${.CURDIR}/BUILDING: doc/BUILDING.mdoc
459	${_MKMSG_CREATE} ${.TARGET}
460	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
461
462
463#
464# Display current make(1) parameters
465#
466params: .PHONY .MAKE
467	${MAKEDIRTARGET} etc params
468