Makefile revision 1.262 1 # $NetBSD: Makefile,v 1.262 2008/10/27 22:32:51 mrg 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; either
107 # X11R7 from src/external/mit/xorg if ${MKXORG} != "no"
108 # or X11R6 from src/x11 if ${MKX11} != "no"
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))
151 SUBDIR+= ${dir}
152 .endif
153 .endfor
154
155 .if exists(regress)
156 regression-tests: .PHONY .MAKE
157 @echo Running regression tests...
158 ${MAKEDIRTARGET} regress regress
159 .endif
160
161 .if ${MKUNPRIVED} != "no"
162 NOPOSTINSTALL= # defined
163 .endif
164
165 afterinstall: .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
178 postinstall-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
183 postinstall-fix: .NOTMAIN .PHONY
184 @echo " === Post installation fixes ==="
185 ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
186 @echo " ==============================="
187
188 postinstall-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"
199 LIBGCC_EXT=3
200 .else
201 LIBGCC_EXT=4
202 .endif
203 .endif
204
205 BUILDTARGETS+= check-tools
206 .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
207 BUILDTARGETS+= cleandir
208 .endif
209 .if ${MKOBJDIRS} != "no"
210 BUILDTARGETS+= do-top-obj
211 .endif
212 .if ${USETOOLS} == "yes" # {
213 .if ${MKOBJDIRS} != "no"
214 BUILDTARGETS+= do-tools-obj
215 .endif
216 BUILDTARGETS+= do-tools
217 .endif # USETOOLS # }
218 .if ${MKOBJDIRS} != "no"
219 BUILDTARGETS+= obj
220 .endif
221 .if !defined(NODISTRIBDIRS)
222 BUILDTARGETS+= do-distrib-dirs
223 .endif
224 .if !defined(NOINCLUDES)
225 BUILDTARGETS+= includes
226 .endif
227 BUILDTARGETS+= do-tools-compat
228 BUILDTARGETS+= do-lib-csu
229 .if ${MKGCC} != "no"
230 BUILDTARGETS+= do-libgcc
231 .endif
232 .if ${MKPCC} != "no"
233 BUILDTARGET+= do-libpcc
234 .endif
235 BUILDTARGETS+= do-lib-libc
236 BUILDTARGETS+= do-lib do-gnu-lib do-external-lib
237 BUILDTARGETS+= do-sys-rump-fs-lib do-sys-rump-net-lib
238 .if ${MKCOMPAT} != "no"
239 BUILDTARGETS+= do-compat-lib-csu
240 BUILDTARGETS+= do-compat-libgcc
241 BUILDTARGETS+= do-compat-lib-libc
242 .endif
243 BUILDTARGETS+= do-ld.so
244 BUILDTARGETS+= do-build
245 .if ${MKX11} != "no" || ${MKXORG} != "no"
246 BUILDTARGETS+= do-x11
247 .endif
248 BUILDTARGETS+= do-obsolete
249
250 #
251 # Enforce proper ordering of some rules.
252 #
253
254 .ORDER: ${BUILDTARGETS}
255 includes-lib: .PHONY includes-include includes-sys
256 includes-gnu: .PHONY includes-lib
257
258 #
259 # Build the system and install into DESTDIR.
260 #
261
262 START_TIME!= date
263
264 build: .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
282 distribution 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
303 HOST_UNAME_S!= uname -s
304 HOST_UNAME_M!= uname -m
305
306 installworld: .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
343 release 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
353 iso-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
359 iso-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
369 check-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
380 do-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
388 do-${targ}: .PHONY ${targ}
389 @true
390 .endfor
391
392 .if defined(HAVE_GCC)
393 BUILD_CC_LIB= gnu/lib/crtstuff${LIBGCC_EXT}
394 BUILD_CC_LIB+= gnu/lib/libgcc${LIBGCC_EXT}
395 .elif defined(HAVE_PCC)
396 BUILD_CC_LIB+= external/bsd/pcc/crtstuff
397 BUILD_CC_LIB+= external/bsd/pcc/libpcc
398 .endif
399
400 .if ${MKCOMPAT} != "no"
401 BUILD_COMPAT_LIBS= compat/lib/csu ${BUILD_CC_LIB:S/^/compat\//} compat/lib/libc
402 .else
403 BUILD_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}
407 do-${dir:S/\//-/g}: .PHONY .MAKE
408 .for targ in dependall install
409 ${MAKEDIRTARGET} ${dir} ${targ}
410 .endfor
411 .endfor
412
413 do-top-obj: .PHONY .MAKE
414 ${MAKEDIRTARGET} . obj NOSUBDIR=
415
416 do-tools-obj: .PHONY .MAKE
417 ${MAKEDIRTARGET} tools obj
418
419 do-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
429 do-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
437 do-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
445 do-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
455 do-build: .PHONY .MAKE
456 .for targ in dependall install
457 ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
458 .endfor
459
460 do-x11: .PHONY .MAKE
461 .if ${MKXORG} != "no"
462 ${MAKEDIRTARGET} external/mit/xorg build
463 .elif ${MKX11} != "no"
464 ${MAKEDIRTARGET} x11 build
465 .else
466 @echo "Neither MKX11 or MKXORG is enabled"
467 @false
468 .endif
469
470 do-obsolete: .PHONY .MAKE
471 ${MAKEDIRTARGET} etc install-obsolete-lists
472
473 #
474 # Speedup stubs for some subtrees that don't need to run these rules.
475 # (Tells <bsd.subdir.mk> not to recurse for them.)
476 #
477
478 .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
479 includes-${dir}: .PHONY
480 @true
481 .endfor
482 .for dir in etc distrib regress
483 install-${dir}: .PHONY
484 @true
485 .endfor
486
487 #
488 # XXX this needs to change when distrib Makefiles are recursion compliant
489 # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
490 #
491 dependall-distrib depend-distrib all-distrib: .PHONY
492 @true
493
494 .include <bsd.sys.mk>
495 .include <bsd.obj.mk>
496 .include <bsd.kernobj.mk>
497 .include <bsd.subdir.mk>
498
499 build-docs: .PHONY ${.CURDIR}/BUILDING
500 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
501 ${_MKMSG_CREATE} ${.TARGET}
502 ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
503
504
505 #
506 # Display current make(1) parameters
507 #
508 params: .PHONY .MAKE
509 ${MAKEDIRTARGET} etc params
510