Makefile revision 1.252
1#	$NetBSD: Makefile,v 1.252 2008/03/18 04:24:38 lukem 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-lib-libc:     builds and installs prerequisites from lib/libc.
88#   do-lib:          builds and installs prerequisites from lib.
89#   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
90#   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
91#   do-build:        builds and installs the entire system.
92#   do-x11:          builds and installs X11R6 from src/x11 if ${MKX11} != "no"
93#   do-obsolete:     installs the obsolete sets (for the postinstall-* targets).
94#
95
96.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
97.MAKEFLAGS: -m ${.CURDIR}/share/mk
98.endif
99
100#
101# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
102# not be the top level objdir, because "make obj" can happen in the *middle*
103# of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
104# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
105#
106_SRC_TOP_OBJ_=
107
108.include <bsd.own.mk>
109
110#
111# Sanity check: make sure that "make build" is not invoked simultaneously
112# with a standard recursive target.
113#
114
115.if make(build) || make(release) || make(snapshot)
116.for targ in ${TARGETS:Nobj:Ncleandir}
117.if make(${targ}) && !target(.BEGIN)
118.BEGIN:
119	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
120	@false
121.endif
122.endfor
123.endif
124
125_SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
126_SUBDIR+=	usr.sbin share rescue sys etc tests .WAIT distrib regress
127
128#
129# Weed out directories that don't exist.
130#
131
132.for dir in ${_SUBDIR}
133.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
134SUBDIR+=	${dir}
135.endif
136.endfor
137
138.if exists(regress)
139regression-tests: .PHONY .MAKE
140	@echo Running regression tests...
141	${MAKEDIRTARGET} regress regress
142.endif
143
144.if ${MKUNPRIVED} != "no"
145NOPOSTINSTALL=	# defined
146.endif
147
148afterinstall: .PHONY .MAKE
149.if ${MKMAN} != "no"
150	${MAKEDIRTARGET} share/man makedb
151.endif
152.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
153	${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
154.endif
155.if !defined(NOPOSTINSTALL)
156	${MAKEDIRTARGET} . postinstall-check
157.endif
158
159_POSTINSTALL=	${.CURDIR}/usr.sbin/postinstall/postinstall
160
161postinstall-check: .PHONY
162	@echo "   === Post installation checks ==="
163	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi
164	@echo "   ================================"
165
166postinstall-fix: .NOTMAIN .PHONY
167	@echo "   === Post installation fixes ==="
168	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
169	@echo "   ==============================="
170
171postinstall-fix-obsolete: .NOTMAIN .PHONY
172	@echo "   === Removing obsolete files ==="
173	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
174	@echo "   ==============================="
175
176
177#
178# Targets (in order!) called by "make build".
179#
180.if ${HAVE_GCC} == "3"
181LIBGCC_EXT=3
182.else
183LIBGCC_EXT=4
184.endif
185
186BUILDTARGETS+=	check-tools
187.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
188BUILDTARGETS+=	cleandir
189.endif
190.if ${MKOBJDIRS} != "no"
191BUILDTARGETS+=	obj
192.endif
193.if ${USETOOLS} == "yes"
194BUILDTARGETS+=	do-tools
195.endif
196.if !defined(NODISTRIBDIRS)
197BUILDTARGETS+=	do-distrib-dirs
198.endif
199.if !defined(NOINCLUDES)
200BUILDTARGETS+=	includes
201.endif
202BUILDTARGETS+=	do-tools-compat
203BUILDTARGETS+=	do-lib-csu
204.if ${MKGCC} != "no"
205BUILDTARGETS+=	do-libgcc
206.endif
207BUILDTARGETS+=	do-lib-libc
208BUILDTARGETS+=	do-lib do-gnu-lib
209BUILDTARGETS+=	do-ld.so
210BUILDTARGETS+=	do-build
211.if ${MKX11} != "no"
212BUILDTARGETS+=	do-x11
213.endif
214BUILDTARGETS+=	do-obsolete
215
216#
217# Enforce proper ordering of some rules.
218#
219
220.ORDER:		${BUILDTARGETS}
221includes-lib:	.PHONY includes-include includes-sys
222includes-gnu:	.PHONY includes-lib
223
224#
225# Build the system and install into DESTDIR.
226#
227
228START_TIME!=	date
229
230build: .PHONY .MAKE
231.if defined(BUILD_DONE)
232	@echo "Build already installed into ${DESTDIR}"
233.else
234	@echo "Build started at: ${START_TIME}"
235.for tgt in ${BUILDTARGETS}
236	${MAKEDIRTARGET} . ${tgt}
237.endfor
238	${MAKEDIRTARGET} etc install-etc-release
239	@echo   "Build started at:  ${START_TIME}"
240	@printf "Build finished at: " && date
241.endif
242
243#
244# Build a full distribution, but not a release (i.e. no sets into
245# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
246#
247
248distribution buildworld: .PHONY .MAKE
249.if make(buildworld) && \
250    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
251	@echo "Won't make ${.TARGET} with DESTDIR=/"
252	@false
253.endif
254	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
255	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
256.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
257	${MAKEDIRTARGET} . postinstall-fix-obsolete
258	${MAKEDIRTARGET} distrib/sets checkflist
259.endif
260	@echo   "make ${.TARGET} started at:  ${START_TIME}"
261	@printf "make ${.TARGET} finished at: " && date
262
263#
264# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
265# If installing to /, ensures that the host's operating system is NetBSD and
266# the host's `uname -m` == ${MACHINE}.
267#
268
269HOST_UNAME_S!=	uname -s
270HOST_UNAME_M!=	uname -m
271
272installworld: .PHONY .MAKE
273.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
274	@echo "Can't make ${.TARGET} to DESTDIR=/"
275	@false
276.endif
277.if !defined(INSTALLWORLDDIR) || \
278    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
279.if (${HOST_UNAME_S} != "NetBSD")
280	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
281	@false
282.endif
283.if (${HOST_UNAME_M} != ${MACHINE})
284	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
285	@false
286.endif
287.endif
288	${MAKEDIRTARGET} distrib/sets installsets \
289	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
290	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
291	@echo   "make ${.TARGET} started at:  ${START_TIME}"
292	@printf "make ${.TARGET} finished at: " && date
293
294#
295# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
296#
297
298.for tgt in sets sourcesets syspkgs
299${tgt}: .PHONY .MAKE
300	${MAKEDIRTARGET} distrib/sets ${tgt}
301.endfor
302
303#
304# Build a release or snapshot (implies "make distribution").  Note that
305# in this case, the set lists will be checked before the tar files
306# are made.
307#
308
309release snapshot: .PHONY .MAKE
310	${MAKEDIRTARGET} . distribution
311	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
312	@echo   "make ${.TARGET} started at:  ${START_TIME}"
313	@printf "make ${.TARGET} finished at: " && date
314
315#
316# Create a CD-ROM image.
317#
318
319iso-image: .PHONY
320	${MAKEDIRTARGET} distrib iso_image
321	${MAKEDIRTARGET} etc iso-image
322	@echo   "make ${.TARGET} started at:  ${START_TIME}"
323	@printf "make ${.TARGET} finished at: " && date
324
325iso-image-source: .PHONY
326	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
327	${MAKEDIRTARGET} etc iso-image
328	@echo   "make ${.TARGET} started at:  ${START_TIME}"
329	@printf "make ${.TARGET} finished at: " && date
330
331#
332# Special components of the "make build" process.
333#
334
335check-tools: .PHONY
336.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
337	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
338	@echo '*** May result in a failed build or corrupt binaries!'
339.elif defined(EXTERNAL_TOOLCHAIN)
340	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
341.endif
342.if defined(NBUILDJOBS)
343	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
344.endif
345
346do-distrib-dirs: .PHONY .MAKE
347.if !defined(DESTDIR) || ${DESTDIR} == ""
348	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
349.else
350	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
351.endif
352
353.for targ in cleandir obj includes
354do-${targ}: .PHONY ${targ}
355	@true
356.endfor
357
358.for dir in tools tools/compat lib/csu gnu/lib/crtstuff${LIBGCC_EXT} gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib
359do-${dir:S/\//-/g}: .PHONY .MAKE
360.for targ in dependall install
361	${MAKEDIRTARGET} ${dir} ${targ}
362.endfor
363.endfor
364
365do-libgcc: .PHONY .MAKE
366.if ${MKGCC} != "no"
367.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
368	${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT}
369.endif
370	${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT}
371.endif
372
373do-ld.so: .PHONY .MAKE
374.for targ in dependall install
375.if (${OBJECT_FMT} == "a.out")
376	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
377.endif
378.if (${OBJECT_FMT} == "ELF")
379	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
380.endif
381.endfor
382
383do-build: .PHONY .MAKE
384.for targ in dependall install
385	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
386.endfor
387
388do-x11: .PHONY .MAKE
389	${MAKEDIRTARGET} x11 build
390
391do-obsolete: .PHONY .MAKE
392	${MAKEDIRTARGET} etc install-obsolete-lists
393
394#
395# Speedup stubs for some subtrees that don't need to run these rules.
396# (Tells <bsd.subdir.mk> not to recurse for them.)
397#
398
399.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
400includes-${dir}: .PHONY
401	@true
402.endfor
403.for dir in etc distrib regress
404install-${dir}: .PHONY
405	@true
406.endfor
407
408#
409# XXX this needs to change when distrib Makefiles are recursion compliant
410# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
411#
412dependall-distrib depend-distrib all-distrib: .PHONY
413	@true
414
415.include <bsd.sys.mk>
416.include <bsd.obj.mk>
417.include <bsd.kernobj.mk>
418.include <bsd.subdir.mk>
419
420build-docs: .PHONY ${.CURDIR}/BUILDING
421${.CURDIR}/BUILDING: doc/BUILDING.mdoc
422	${_MKMSG_CREATE} ${.TARGET}
423	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
424
425
426#
427# Display current make(1) parameters
428#
429params: .PHONY .MAKE
430	${MAKEDIRTARGET} etc params
431