Makefile revision 1.239 1 1.239 lukem # $NetBSD: Makefile,v 1.239 2005/04/17 15:18:34 lukem Exp $
2 1.95 cjs
3 1.193 lukem #
4 1.95 cjs # This is the top-level makefile for building NetBSD. For an outline of
5 1.95 cjs # how to build a snapshot or release, as well as other release engineering
6 1.221 salo # information, see http://www.NetBSD.org/developers/releng/index.html
7 1.95 cjs #
8 1.95 cjs # Not everything you can set or do is documented in this makefile. In
9 1.95 cjs # particular, you should review the files in /usr/share/mk (especially
10 1.95 cjs # bsd.README) for general information on building programs and writing
11 1.95 cjs # Makefiles within this structure, and see the comments in src/etc/Makefile
12 1.95 cjs # for further information on installation and release set options.
13 1.95 cjs #
14 1.95 cjs # Variables listed below can be set on the make command line (highest
15 1.95 cjs # priority), in /etc/mk.conf (middle priority), or in the environment
16 1.95 cjs # (lowest priority).
17 1.95 cjs #
18 1.95 cjs # Variables:
19 1.101 sommerfe # DESTDIR is the target directory for installation of the compiled
20 1.101 sommerfe # software. It defaults to /. Note that programs are built against
21 1.101 sommerfe # libraries installed in DESTDIR.
22 1.214 lukem # MKMAN, if `no', will prevent building of manual pages.
23 1.214 lukem # MKOBJDIRS, if not `no', will build object directories at
24 1.101 sommerfe # an appropriate point in a build.
25 1.214 lukem # MKSHARE, if `no', will prevent building and installing
26 1.95 cjs # anything in /usr/share.
27 1.214 lukem # MKUPDATE, if not `no', will avoid a `make cleandir' at the start of
28 1.178 enami # `make build', as well as having the effects listed in
29 1.178 enami # /usr/share/mk/bsd.README.
30 1.125 mrg # NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
31 1.178 enami # of the `make build'.
32 1.119 toddpw # NOINCLUDES will avoid the `make includes' usually done by `make build'.
33 1.95 cjs #
34 1.214 lukem # See mk.conf(5) for more details.
35 1.214 lukem #
36 1.214 lukem #
37 1.95 cjs # Targets:
38 1.137 tv # build:
39 1.196 lukem # Builds a full release of NetBSD in DESTDIR, except for the
40 1.196 lukem # /etc configuration files.
41 1.196 lukem # If BUILD_DONE is set, this is an empty target.
42 1.196 lukem # distribution:
43 1.196 lukem # Builds a full release of NetBSD in DESTDIR, including the /etc
44 1.196 lukem # configuration files.
45 1.196 lukem # buildworld:
46 1.196 lukem # As per `make distribution', except that it ensures that DESTDIR
47 1.196 lukem # is not the root directory.
48 1.196 lukem # installworld:
49 1.196 lukem # Install the distribution from DESTDIR to INSTALLWORLDDIR (which
50 1.196 lukem # defaults to the root directory). Ensures that INSTALLWORLDDIR
51 1.196 lukem # is the not root directory if cross compiling.
52 1.137 tv # release:
53 1.196 lukem # Does a `make build', and then tars up the DESTDIR files
54 1.196 lukem # into RELEASEDIR/${MACHINE}, in release(7) format.
55 1.196 lukem # (See etc/Makefile for more information on this.)
56 1.137 tv # regression-tests:
57 1.137 tv # Runs the regression tests in "regress" on this host.
58 1.206 lukem # sets:
59 1.206 lukem # Populate ${RELEASEDIR}/${MACHINE}/binary/sets from ${DESTDIR}
60 1.206 lukem # sourcesets:
61 1.206 lukem # Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
62 1.123 mrg #
63 1.137 tv # Targets invoked by `make build,' in order:
64 1.155 tv # cleandir: cleans the tree.
65 1.137 tv # obj: creates object directories.
66 1.152 tv # do-tools: builds host toolchain.
67 1.208 lukem # do-distrib-dirs: creates the distribution directories.
68 1.208 lukem # includes: installs include files.
69 1.202 thorpej # do-tools-compat: builds the "libnbcompat" library; needed for some
70 1.202 thorpej # random host tool programs in the source tree.
71 1.238 lukem # do-lib-csu: builds and installs prerequisites from lib/csu.
72 1.236 thorpej # do-gnu-lib-crtstuff3: builds and installs prerequisites from
73 1.236 thorpej # gnu/lib/crtstuff3
74 1.222 lukem # do-gnu-lib-libgcc3: builds and installs prerequisites from gnu/lib/libgcc3
75 1.186 thorpej # do-lib-libc: builds and installs prerequisites from lib/libc.
76 1.143 tv # do-lib: builds and installs prerequisites from lib.
77 1.143 tv # do-gnu-lib: builds and installs prerequisites from gnu/lib.
78 1.189 itohy # do-ld.so: builds and installs prerequisites from libexec/ld.*_so.
79 1.137 tv # do-build: builds and installs the entire system.
80 1.227 lukem # do-x11: builds and installs X11R6 from src/x11 if ${MKX11} != "no"
81 1.222 lukem # do-obsolete: installs the obsolete sets (for the postinstall-* targets).
82 1.193 lukem #
83 1.32 cgd
84 1.146 tv .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
85 1.146 tv .MAKEFLAGS: -m ${.CURDIR}/share/mk
86 1.146 tv .endif
87 1.163 tv
88 1.193 lukem #
89 1.163 tv # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
90 1.163 tv # not be the top level objdir, because "make obj" can happen in the *middle*
91 1.163 tv # of "make build" (long after <bsd.own.mk> is calculated it). So, pre-set
92 1.163 tv # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
93 1.193 lukem #
94 1.163 tv _SRC_TOP_OBJ_=
95 1.148 jmc
96 1.146 tv .include <bsd.own.mk>
97 1.4 cgd
98 1.193 lukem #
99 1.137 tv # Sanity check: make sure that "make build" is not invoked simultaneously
100 1.137 tv # with a standard recursive target.
101 1.193 lukem #
102 1.137 tv
103 1.137 tv .if make(build) || make(release) || make(snapshot)
104 1.137 tv .for targ in ${TARGETS:Nobj:Ncleandir}
105 1.137 tv .if make(${targ}) && !target(.BEGIN)
106 1.137 tv .BEGIN:
107 1.137 tv @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
108 1.137 tv @false
109 1.137 tv .endif
110 1.137 tv .endfor
111 1.137 tv .endif
112 1.58 tv
113 1.166 simonb _SUBDIR= tools lib include gnu bin games libexec sbin usr.bin
114 1.205 thorpej _SUBDIR+= usr.sbin share rescue sys etc .WAIT distrib regress
115 1.105 assar
116 1.193 lukem #
117 1.137 tv # Weed out directories that don't exist.
118 1.193 lukem #
119 1.36 explorer
120 1.137 tv .for dir in ${_SUBDIR}
121 1.154 tv .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
122 1.137 tv SUBDIR+= ${dir}
123 1.36 explorer .endif
124 1.137 tv .endfor
125 1.21 cgd
126 1.13 brezak .if exists(regress)
127 1.228 lukem regression-tests: .PHONY
128 1.10 cgd @echo Running regression tests...
129 1.232 lukem ${MAKEDIRTARGET} regress regress
130 1.13 brezak .endif
131 1.20 cgd
132 1.214 lukem .if ${MKUNPRIVED} != "no"
133 1.179 thorpej NOPOSTINSTALL= # defined
134 1.179 thorpej .endif
135 1.179 thorpej
136 1.228 lukem afterinstall: .PHONY
137 1.137 tv .if ${MKMAN} != "no"
138 1.232 lukem ${MAKEDIRTARGET} share/man makedb
139 1.137 tv .endif
140 1.214 lukem .if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
141 1.232 lukem ${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
142 1.176 lukem .endif
143 1.179 thorpej .if !defined(NOPOSTINSTALL)
144 1.232 lukem ${MAKEDIRTARGET} . postinstall-check
145 1.159 perry .endif
146 1.170 lukem
147 1.239 lukem _POSTINSTALL= ${.CURDIR}/usr.sbin/postinstall/postinstall
148 1.239 lukem
149 1.228 lukem postinstall-check: .PHONY
150 1.169 lukem @echo " === Post installation checks ==="
151 1.239 lukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check
152 1.171 lukem @echo " ================================"
153 1.171 lukem
154 1.228 lukem postinstall-fix: .NOTMAIN .PHONY
155 1.171 lukem @echo " === Post installation fixes ==="
156 1.239 lukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
157 1.212 lukem @echo " ==============================="
158 1.212 lukem
159 1.228 lukem postinstall-fix-obsolete: .NOTMAIN .PHONY
160 1.212 lukem @echo " === Removing obsolete files ==="
161 1.239 lukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
162 1.212 lukem @echo " ==============================="
163 1.169 lukem
164 1.108 erh
165 1.193 lukem #
166 1.137 tv # Targets (in order!) called by "make build".
167 1.193 lukem #
168 1.220 mrg .if ${USE_TOOLS_TOOLCHAIN} == "no"
169 1.220 mrg LIBGCC_EXT=3
170 1.220 mrg .else
171 1.220 mrg LIBGCC_EXT=
172 1.220 mrg .endif
173 1.123 mrg
174 1.156 tv BUILDTARGETS+= check-tools
175 1.214 lukem .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
176 1.155 tv BUILDTARGETS+= cleandir
177 1.155 tv .endif
178 1.149 tv .if ${MKOBJDIRS} != "no"
179 1.137 tv BUILDTARGETS+= obj
180 1.123 mrg .endif
181 1.138 tv .if ${USETOOLS} == "yes"
182 1.152 tv BUILDTARGETS+= do-tools
183 1.131 tv .endif
184 1.137 tv .if !defined(NODISTRIBDIRS)
185 1.137 tv BUILDTARGETS+= do-distrib-dirs
186 1.131 tv .endif
187 1.137 tv .if !defined(NOINCLUDES)
188 1.137 tv BUILDTARGETS+= includes
189 1.131 tv .endif
190 1.202 thorpej BUILDTARGETS+= do-tools-compat
191 1.231 skrll BUILDTARGETS+= do-lib-csu
192 1.207 drochner .if ${MKGCC} != "no"
193 1.237 tacha .if ${HAVE_GCC3} != "no"
194 1.236 thorpej BUILDTARGETS+= do-gnu-lib-crtstuff${LIBGCC_EXT}
195 1.237 tacha .endif
196 1.220 mrg BUILDTARGETS+= do-gnu-lib-libgcc${LIBGCC_EXT}
197 1.207 drochner .endif
198 1.231 skrll BUILDTARGETS+= do-lib-libc
199 1.224 lukem BUILDTARGETS+= do-lib do-gnu-lib
200 1.224 lukem BUILDTARGETS+= do-ld.so
201 1.224 lukem BUILDTARGETS+= do-build
202 1.227 lukem .if ${MKX11} != "no"
203 1.227 lukem BUILDTARGETS+= do-x11
204 1.227 lukem .endif
205 1.200 lukem BUILDTARGETS+= do-obsolete
206 1.131 tv
207 1.193 lukem #
208 1.137 tv # Enforce proper ordering of some rules.
209 1.193 lukem #
210 1.123 mrg
211 1.137 tv .ORDER: ${BUILDTARGETS}
212 1.228 lukem includes-lib: .PHONY includes-include includes-sys
213 1.228 lukem includes-gnu: .PHONY includes-lib
214 1.123 mrg
215 1.193 lukem #
216 1.137 tv # Build the system and install into DESTDIR.
217 1.193 lukem #
218 1.123 mrg
219 1.191 lukem START_TIME!= date
220 1.191 lukem
221 1.228 lukem build: .PHONY
222 1.137 tv .if defined(BUILD_DONE)
223 1.137 tv @echo "Build already installed into ${DESTDIR}"
224 1.137 tv .else
225 1.191 lukem @echo "Build started at: ${START_TIME}"
226 1.145 tv .for tgt in ${BUILDTARGETS}
227 1.232 lukem ${MAKEDIRTARGET} . ${tgt}
228 1.145 tv .endfor
229 1.232 lukem ${MAKEDIRTARGET} etc install-etc-release
230 1.191 lukem @echo "Build started at: ${START_TIME}"
231 1.172 bjh21 @printf "Build finished at: " && date
232 1.71 mycroft .endif
233 1.160 thorpej
234 1.193 lukem #
235 1.160 thorpej # Build a full distribution, but not a release (i.e. no sets into
236 1.193 lukem # ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != /
237 1.193 lukem #
238 1.160 thorpej
239 1.228 lukem distribution buildworld: .PHONY
240 1.194 lukem .if make(buildworld) && \
241 1.194 lukem (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
242 1.193 lukem @echo "Won't make ${.TARGET} with DESTDIR=/"
243 1.193 lukem @false
244 1.193 lukem .endif
245 1.232 lukem ${MAKEDIRTARGET} . build NOPOSTINSTALL=1
246 1.232 lukem ${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
247 1.181 thorpej .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
248 1.232 lukem ${MAKEDIRTARGET} . postinstall-fix-obsolete
249 1.232 lukem ${MAKEDIRTARGET} distrib/sets checkflist
250 1.181 thorpej .endif
251 1.192 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
252 1.185 lukem @printf "make ${.TARGET} finished at: " && date
253 1.123 mrg
254 1.193 lukem #
255 1.193 lukem # Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
256 1.193 lukem # If installing to /, ensures that the host's operating system is NetBSD and
257 1.193 lukem # the host's `uname -m` == ${MACHINE}.
258 1.193 lukem #
259 1.193 lukem
260 1.193 lukem HOST_UNAME_S!= uname -s
261 1.193 lukem HOST_UNAME_M!= uname -m
262 1.193 lukem
263 1.228 lukem installworld: .PHONY
264 1.194 lukem .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
265 1.193 lukem @echo "Can't make ${.TARGET} to DESTDIR=/"
266 1.193 lukem @false
267 1.193 lukem .endif
268 1.193 lukem .if !defined(INSTALLWORLDDIR) || \
269 1.193 lukem ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
270 1.193 lukem .if (${HOST_UNAME_S} != "NetBSD")
271 1.193 lukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
272 1.193 lukem @false
273 1.193 lukem .endif
274 1.193 lukem .if (${HOST_UNAME_M} != ${MACHINE})
275 1.193 lukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
276 1.193 lukem @false
277 1.193 lukem .endif
278 1.193 lukem .endif
279 1.232 lukem ${MAKEDIRTARGET} distrib/sets installsets \
280 1.232 lukem INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
281 1.232 lukem ${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
282 1.193 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
283 1.193 lukem @printf "make ${.TARGET} finished at: " && date
284 1.199 lukem
285 1.199 lukem #
286 1.206 lukem # Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
287 1.199 lukem #
288 1.199 lukem
289 1.206 lukem .for tgt in sets sourcesets
290 1.228 lukem ${tgt}: .PHONY
291 1.232 lukem ${MAKEDIRTARGET} distrib/sets ${tgt}
292 1.206 lukem .endfor
293 1.193 lukem
294 1.193 lukem #
295 1.181 thorpej # Build a release or snapshot (implies "make build"). Note that
296 1.181 thorpej # in this case, the set lists will be checked before the tar files
297 1.181 thorpej # are made.
298 1.193 lukem #
299 1.123 mrg
300 1.228 lukem release snapshot: .PHONY
301 1.232 lukem ${MAKEDIRTARGET} . build NOPOSTINSTALL=1
302 1.232 lukem ${MAKEDIRTARGET} etc release INSTALL_DONE=1
303 1.192 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
304 1.185 lukem @printf "make ${.TARGET} finished at: " && date
305 1.123 mrg
306 1.193 lukem #
307 1.137 tv # Special components of the "make build" process.
308 1.193 lukem #
309 1.156 tv
310 1.228 lukem check-tools: .PHONY
311 1.223 lukem .if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
312 1.187 thorpej @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.'
313 1.187 thorpej @echo '*** May result in a failed build or corrupt binaries!'
314 1.187 thorpej .elif defined(EXTERNAL_TOOLCHAIN)
315 1.187 thorpej @echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
316 1.156 tv .endif
317 1.173 sommerfe .if defined(NBUILDJOBS)
318 1.173 sommerfe @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
319 1.173 sommerfe .endif
320 1.123 mrg
321 1.228 lukem do-distrib-dirs: .PHONY
322 1.147 jmc .if !defined(DESTDIR) || ${DESTDIR} == ""
323 1.232 lukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
324 1.147 jmc .else
325 1.232 lukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
326 1.147 jmc .endif
327 1.190 lukem
328 1.190 lukem .for targ in cleandir obj includes
329 1.228 lukem do-${targ}: .PHONY ${targ}
330 1.190 lukem @true
331 1.190 lukem .endfor
332 1.123 mrg
333 1.236 thorpej .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
334 1.228 lukem do-${dir:S/\//-/g}: .PHONY
335 1.137 tv .for targ in dependall install
336 1.232 lukem ${MAKEDIRTARGET} ${dir} ${targ}
337 1.137 tv .endfor
338 1.184 lukem .endfor
339 1.184 lukem
340 1.228 lukem do-ld.so: .PHONY
341 1.184 lukem .for targ in dependall install
342 1.189 itohy .if (${OBJECT_FMT} == "a.out")
343 1.232 lukem ${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
344 1.189 itohy .endif
345 1.189 itohy .if (${OBJECT_FMT} == "ELF")
346 1.232 lukem ${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
347 1.189 itohy .endif
348 1.137 tv .endfor
349 1.143 tv
350 1.228 lukem do-build: .PHONY
351 1.154 tv .for targ in dependall install
352 1.232 lukem ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
353 1.154 tv .endfor
354 1.200 lukem
355 1.228 lukem do-x11: .PHONY
356 1.232 lukem ${MAKEDIRTARGET} x11 build
357 1.227 lukem
358 1.228 lukem do-obsolete: .PHONY
359 1.232 lukem ${MAKEDIRTARGET} etc install-obsolete-lists
360 1.87 cjs
361 1.193 lukem #
362 1.137 tv # Speedup stubs for some subtrees that don't need to run these rules.
363 1.137 tv # (Tells <bsd.subdir.mk> not to recurse for them.)
364 1.193 lukem #
365 1.129 tv
366 1.152 tv .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
367 1.228 lukem includes-${dir}: .PHONY
368 1.152 tv @true
369 1.152 tv .endfor
370 1.152 tv .for dir in etc distrib regress
371 1.228 lukem install-${dir}: .PHONY
372 1.152 tv @true
373 1.152 tv .endfor
374 1.152 tv
375 1.193 lukem #
376 1.152 tv # XXX this needs to change when distrib Makefiles are recursion compliant
377 1.193 lukem # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
378 1.193 lukem #
379 1.228 lukem dependall-distrib depend-distrib all-distrib: .PHONY
380 1.136 nathanw @true
381 1.130 tv
382 1.211 lukem .include <bsd.sys.mk>
383 1.151 tv .include <bsd.obj.mk>
384 1.209 lukem .include <bsd.kernobj.mk>
385 1.146 tv .include <bsd.subdir.mk>
386 1.144 tv
387 1.228 lukem build-docs: .PHONY ${.CURDIR}/BUILDING
388 1.188 lukem ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
389 1.230 lukem ${_MKMSG_CREATE} ${.TARGET}
390 1.216 lukem ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
391 1.209 lukem
392 1.209 lukem
393 1.209 lukem #
394 1.209 lukem # Display current make(1) parameters
395 1.209 lukem #
396 1.228 lukem params: .PHONY
397 1.232 lukem ${MAKEDIRTARGET} etc params
398