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