Makefile revision 1.140 1 # $NetBSD: Makefile,v 1.140 2001/10/21 08:03:01 jmc Exp $
2
3 # This is the top-level makefile for building NetBSD. For an outline of
4 # how to build a snapshot or release, as well as other release engineering
5 # information, see http://www.netbsd.org/developers/releng/index.html
6 #
7 # Not everything you can set or do is documented in this makefile. In
8 # particular, you should review the files in /usr/share/mk (especially
9 # bsd.README) for general information on building programs and writing
10 # Makefiles within this structure, and see the comments in src/etc/Makefile
11 # for further information on installation and release set options.
12 #
13 # Variables listed below can be set on the make command line (highest
14 # priority), in /etc/mk.conf (middle priority), or in the environment
15 # (lowest priority).
16 #
17 # Variables:
18 # DESTDIR is the target directory for installation of the compiled
19 # software. It defaults to /. Note that programs are built against
20 # libraries installed in DESTDIR.
21 # MKMAN, if set to `no', will prevent building of manual pages.
22 # MKOBJDIRS, if not set to `no', will build object directories at
23 # an appropriate point in a build.
24 # MKSHARE, if set to `no', will prevent building and installing
25 # anything in /usr/share.
26 # NBUILDJOBS is the number of jobs to start in parallel during a
27 # `make build'. It defaults to 1.
28 # UPDATE, if defined, will avoid a `make cleandir' at the start of
29 # `make build', as well as having the effects listed in
30 # /usr/share/mk/bsd.README.
31 # NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
32 # of the `make build'.
33 # NOINCLUDES will avoid the `make includes' usually done by `make build'.
34 #
35 # Targets:
36 # build:
37 # Builds a full release of NetBSD in DESTDIR. If BUILD_DONE is
38 # set, this is an empty target.
39 # release:
40 # Does a `make build,' and then tars up the DESTDIR files
41 # into RELEASEDIR, in release(7) format. (See etc/Makefile for
42 # more information on this.)
43 # regression-tests:
44 # Runs the regression tests in "regress" on this host.
45 #
46 # Targets invoked by `make build,' in order:
47 # obj: creates object directories.
48 # cleandir: cleans the tree.
49 # do-make-tools: builds host toolchain.
50 # do-distrib-dirs: creates the distribution directories.
51 # includes: installs include files.
52 # do-build: builds and installs the entire system.
53
54 .include "${.CURDIR}/share/mk/bsd.own.mk"
55
56 # Sanity check: make sure that "make build" is not invoked simultaneously
57 # with a standard recursive target.
58
59 .if make(build) || make(release) || make(snapshot)
60 .for targ in ${TARGETS:Nobj:Ncleandir}
61 .if make(${targ}) && !target(.BEGIN)
62 .BEGIN:
63 @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
64 @false
65 .endif
66 .endfor
67 .endif
68
69 .if defined(NBUILDJOBS)
70 _J= -j${NBUILDJOBS}
71 .endif
72
73 .if ${USETOOLS} == "yes"
74 _SUBDIR+= tools
75 .endif
76 # NOTE THAT etc *DOES NOT* BELONG IN THE LIST BELOW
77
78 _SUBDIR+= lib include gnu bin games libexec sbin usr.bin \
79 usr.sbin share sys regress
80
81 .if make(cleandir) || make(obj)
82 _SUBDIR+= distrib
83 .ifdef MAKEOBJDIRPREFIX
84 _SUBDIR+= etc
85 .endif
86 .endif
87
88 # Weed out directories that don't exist.
89
90 .for dir in ${_SUBDIR}
91 .if exists(${dir}/Makefile)
92 SUBDIR+= ${dir}
93 .endif
94 .endfor
95
96 .if exists(regress)
97 regression-tests:
98 @echo Running regression tests...
99 @cd ${.CURDIR}/regress && ${MAKE} ${_M} regress
100 .endif
101
102 .if ${MKMAN} != "no"
103 afterinstall: whatis.db
104 whatis.db:
105 cd ${.CURDIR}/share/man && ${MAKE} ${_M} makedb
106 .endif
107
108 # Targets (in order!) called by "make build".
109
110 .if ${MKOBJDIRS:Uno} != "no"
111 BUILDTARGETS+= obj
112 .endif
113 .if !defined(UPDATE) && !defined(NOCLEANDIR)
114 BUILDTARGETS+= cleandir
115 .endif
116 .if ${USETOOLS} == "yes"
117 BUILDTARGETS+= do-make-tools
118 .endif
119 .if !defined(NODISTRIBDIRS)
120 BUILDTARGETS+= do-distrib-dirs
121 .endif
122 .if !defined(NOINCLUDES)
123 BUILDTARGETS+= includes
124 .endif
125 BUILDTARGETS+= do-build
126
127 # Enforce proper ordering of some rules.
128
129 .ORDER: ${BUILDTARGETS}
130 includes-lib: includes-include includes-sys
131 includes-gnu: includes-lib
132
133 # Build the system and install into DESTDIR.
134
135 build:
136 .if defined(BUILD_DONE)
137 @echo "Build already installed into ${DESTDIR}"
138 .else
139 @echo -n "Build started at: " && date
140 @${MAKE} ${_J} ${_M} ${BUILDTARGETS}
141 @echo -n "Build finished at: " && date
142 .endif
143
144 # Build a release or snapshot (implies "make build").
145
146 release snapshot: build
147 cd ${.CURDIR}/etc && ${MAKE} ${_M} INSTALL_DONE=1 release
148
149 # Special components of the "make build" process.
150
151 do-make-tools:
152 cd ${.CURDIR}/tools && ${MAKE} ${_M} build
153
154 do-distrib-dirs:
155 cd ${.CURDIR}/etc && ${MAKE} ${_M} DESTDIR=${DESTDIR} distrib-dirs
156
157 do-build:
158 .for dir in lib/csu lib gnu/lib
159 .for targ in dependall install
160 cd ${.CURDIR}/${dir} && \
161 ${MAKE} ${_M} ${_J} MKSHARE=no MKLINT=no ${targ}
162 .endfor
163 .endfor
164 ${MAKE} ${_M} ${_J} dependall
165 ${MAKE} ${_M} ${_J} install
166
167 # Speedup stubs for some subtrees that don't need to run these rules.
168 # (Tells <bsd.subdir.mk> not to recurse for them.)
169
170 includes-bin includes-games includes-libexec includes-regress \
171 includes-sbin includes-usr.sbin includes-tools \
172 dependall-tools depend-tools all-tools install-tools install-regress:
173 @true
174
175 .include "${.CURDIR}/share/mk/bsd.subdir.mk"
176
177 _M:= -m ${.CURDIR}/share/mk
178