Makefile revision 1.221 1 1.221 salo # $NetBSD: Makefile,v 1.221 2003/07/26 17:10:25 salo 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.208 lukem # do-gnu-lib-libgcc: builds and installs prerequisites from gnu/lib/libgcc
72 1.168 tv # do-lib-csu: builds and installs prerequisites from lib/csu.
73 1.186 thorpej # do-lib-libc: builds and installs prerequisites from lib/libc.
74 1.219 lukem # do-lib-libdes: builds and installs prerequisites from lib/libdes.
75 1.143 tv # do-lib: builds and installs prerequisites from lib.
76 1.143 tv # do-gnu-lib: builds and installs prerequisites from gnu/lib.
77 1.189 itohy # do-ld.so: builds and installs prerequisites from libexec/ld.*_so.
78 1.137 tv # do-build: builds and installs the entire system.
79 1.208 lukem # do-obsolete: builds and installs the entire system.
80 1.193 lukem #
81 1.32 cgd
82 1.146 tv .if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
83 1.146 tv .MAKEFLAGS: -m ${.CURDIR}/share/mk
84 1.146 tv .endif
85 1.163 tv
86 1.193 lukem #
87 1.163 tv # If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
88 1.163 tv # not be the top level objdir, because "make obj" can happen in the *middle*
89 1.163 tv # of "make build" (long after <bsd.own.mk> is calculated it). So, pre-set
90 1.163 tv # _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
91 1.193 lukem #
92 1.163 tv _SRC_TOP_OBJ_=
93 1.148 jmc
94 1.146 tv .include <bsd.own.mk>
95 1.4 cgd
96 1.193 lukem #
97 1.137 tv # Sanity check: make sure that "make build" is not invoked simultaneously
98 1.137 tv # with a standard recursive target.
99 1.193 lukem #
100 1.137 tv
101 1.137 tv .if make(build) || make(release) || make(snapshot)
102 1.137 tv .for targ in ${TARGETS:Nobj:Ncleandir}
103 1.137 tv .if make(${targ}) && !target(.BEGIN)
104 1.137 tv .BEGIN:
105 1.137 tv @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
106 1.137 tv @false
107 1.137 tv .endif
108 1.137 tv .endfor
109 1.137 tv .endif
110 1.58 tv
111 1.166 simonb _SUBDIR= tools lib include gnu bin games libexec sbin usr.bin
112 1.205 thorpej _SUBDIR+= usr.sbin share rescue sys etc .WAIT distrib regress
113 1.105 assar
114 1.193 lukem #
115 1.137 tv # Weed out directories that don't exist.
116 1.193 lukem #
117 1.36 explorer
118 1.137 tv .for dir in ${_SUBDIR}
119 1.154 tv .if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
120 1.137 tv SUBDIR+= ${dir}
121 1.36 explorer .endif
122 1.137 tv .endfor
123 1.21 cgd
124 1.13 brezak .if exists(regress)
125 1.10 cgd regression-tests:
126 1.10 cgd @echo Running regression tests...
127 1.152 tv @(cd ${.CURDIR}/regress && ${MAKE} regress)
128 1.13 brezak .endif
129 1.20 cgd
130 1.214 lukem .if ${MKUNPRIVED} != "no"
131 1.179 thorpej NOPOSTINSTALL= # defined
132 1.179 thorpej .endif
133 1.179 thorpej
134 1.176 lukem afterinstall:
135 1.137 tv .if ${MKMAN} != "no"
136 1.152 tv (cd ${.CURDIR}/share/man && ${MAKE} makedb)
137 1.137 tv .endif
138 1.214 lukem .if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
139 1.164 jmc (cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
140 1.176 lukem .endif
141 1.179 thorpej .if !defined(NOPOSTINSTALL)
142 1.180 drochner (cd ${.CURDIR} && ${MAKE} postinstall-check)
143 1.159 perry .endif
144 1.170 lukem
145 1.170 lukem postinstall-check:
146 1.169 lukem @echo " === Post installation checks ==="
147 1.212 lukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
148 1.171 lukem @echo " ================================"
149 1.171 lukem
150 1.171 lukem postinstall-fix: .NOTMAIN
151 1.171 lukem @echo " === Post installation fixes ==="
152 1.212 lukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
153 1.212 lukem @echo " ==============================="
154 1.212 lukem
155 1.212 lukem postinstall-fix-obsolete: .NOTMAIN
156 1.212 lukem @echo " === Removing obsolete files ==="
157 1.212 lukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
158 1.212 lukem @echo " ==============================="
159 1.169 lukem
160 1.108 erh
161 1.193 lukem #
162 1.137 tv # Targets (in order!) called by "make build".
163 1.193 lukem #
164 1.220 mrg .if ${USE_TOOLS_TOOLCHAIN} == "no"
165 1.220 mrg LIBGCC_EXT=3
166 1.220 mrg .else
167 1.220 mrg LIBGCC_EXT=
168 1.220 mrg .endif
169 1.123 mrg
170 1.156 tv BUILDTARGETS+= check-tools
171 1.214 lukem .if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
172 1.155 tv BUILDTARGETS+= cleandir
173 1.155 tv .endif
174 1.149 tv .if ${MKOBJDIRS} != "no"
175 1.137 tv BUILDTARGETS+= obj
176 1.123 mrg .endif
177 1.138 tv .if ${USETOOLS} == "yes"
178 1.152 tv BUILDTARGETS+= do-tools
179 1.131 tv .endif
180 1.137 tv .if !defined(NODISTRIBDIRS)
181 1.137 tv BUILDTARGETS+= do-distrib-dirs
182 1.131 tv .endif
183 1.137 tv .if !defined(NOINCLUDES)
184 1.137 tv BUILDTARGETS+= includes
185 1.131 tv .endif
186 1.202 thorpej BUILDTARGETS+= do-tools-compat
187 1.207 drochner .if ${MKGCC} != "no"
188 1.220 mrg BUILDTARGETS+= do-gnu-lib-libgcc${LIBGCC_EXT}
189 1.207 drochner .endif
190 1.218 fvdl BUILDTARGETS+= do-lib-csu do-lib-libc do-lib-libdes do-lib do-gnu-lib \
191 1.218 fvdl do-ld.so do-build
192 1.200 lukem BUILDTARGETS+= do-obsolete
193 1.131 tv
194 1.193 lukem #
195 1.137 tv # Enforce proper ordering of some rules.
196 1.193 lukem #
197 1.123 mrg
198 1.137 tv .ORDER: ${BUILDTARGETS}
199 1.137 tv includes-lib: includes-include includes-sys
200 1.137 tv includes-gnu: includes-lib
201 1.123 mrg
202 1.193 lukem #
203 1.137 tv # Build the system and install into DESTDIR.
204 1.193 lukem #
205 1.123 mrg
206 1.191 lukem START_TIME!= date
207 1.191 lukem
208 1.137 tv build:
209 1.137 tv .if defined(BUILD_DONE)
210 1.137 tv @echo "Build already installed into ${DESTDIR}"
211 1.137 tv .else
212 1.191 lukem @echo "Build started at: ${START_TIME}"
213 1.145 tv .for tgt in ${BUILDTARGETS}
214 1.173 sommerfe @(cd ${.CURDIR} && ${MAKE} ${tgt})
215 1.145 tv .endfor
216 1.191 lukem @echo "Build started at: ${START_TIME}"
217 1.172 bjh21 @printf "Build finished at: " && date
218 1.71 mycroft .endif
219 1.160 thorpej
220 1.193 lukem #
221 1.160 thorpej # Build a full distribution, but not a release (i.e. no sets into
222 1.193 lukem # ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != /
223 1.193 lukem #
224 1.160 thorpej
225 1.193 lukem distribution buildworld:
226 1.194 lukem .if make(buildworld) && \
227 1.194 lukem (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
228 1.193 lukem @echo "Won't make ${.TARGET} with DESTDIR=/"
229 1.193 lukem @false
230 1.193 lukem .endif
231 1.182 uwe (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
232 1.160 thorpej (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
233 1.181 thorpej .if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
234 1.217 lukem (cd ${.CURDIR} && ${MAKE} postinstall-fix-obsolete)
235 1.181 thorpej (cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
236 1.181 thorpej .endif
237 1.192 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
238 1.185 lukem @printf "make ${.TARGET} finished at: " && date
239 1.123 mrg
240 1.193 lukem #
241 1.193 lukem # Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
242 1.193 lukem # If installing to /, ensures that the host's operating system is NetBSD and
243 1.193 lukem # the host's `uname -m` == ${MACHINE}.
244 1.193 lukem #
245 1.193 lukem
246 1.193 lukem HOST_UNAME_S!= uname -s
247 1.193 lukem HOST_UNAME_M!= uname -m
248 1.193 lukem
249 1.193 lukem installworld:
250 1.194 lukem .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
251 1.193 lukem @echo "Can't make ${.TARGET} to DESTDIR=/"
252 1.193 lukem @false
253 1.193 lukem .endif
254 1.193 lukem .if !defined(INSTALLWORLDDIR) || \
255 1.193 lukem ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
256 1.193 lukem .if (${HOST_UNAME_S} != "NetBSD")
257 1.193 lukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
258 1.193 lukem @false
259 1.193 lukem .endif
260 1.193 lukem .if (${HOST_UNAME_M} != ${MACHINE})
261 1.193 lukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
262 1.193 lukem @false
263 1.193 lukem .endif
264 1.193 lukem .endif
265 1.193 lukem (cd ${.CURDIR}/distrib/sets && \
266 1.193 lukem ${MAKE} INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= installsets)
267 1.193 lukem (cd ${.CURDIR} && \
268 1.193 lukem ${MAKE} DESTDIR=${INSTALLWORLDDIR} postinstall-check)
269 1.193 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
270 1.193 lukem @printf "make ${.TARGET} finished at: " && date
271 1.199 lukem
272 1.199 lukem #
273 1.206 lukem # Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
274 1.199 lukem #
275 1.199 lukem
276 1.206 lukem .for tgt in sets sourcesets
277 1.206 lukem ${tgt}:
278 1.206 lukem (cd ${.CURDIR}/distrib/sets && ${MAKE} $@)
279 1.206 lukem .endfor
280 1.193 lukem
281 1.193 lukem #
282 1.181 thorpej # Build a release or snapshot (implies "make build"). Note that
283 1.181 thorpej # in this case, the set lists will be checked before the tar files
284 1.181 thorpej # are made.
285 1.193 lukem #
286 1.123 mrg
287 1.179 thorpej release snapshot:
288 1.179 thorpej (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
289 1.152 tv (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
290 1.192 lukem @echo "make ${.TARGET} started at: ${START_TIME}"
291 1.185 lukem @printf "make ${.TARGET} finished at: " && date
292 1.123 mrg
293 1.193 lukem #
294 1.137 tv # Special components of the "make build" process.
295 1.193 lukem #
296 1.156 tv
297 1.156 tv check-tools:
298 1.187 thorpej .if ${TOOLCHAIN_MISSING} == "yes" && !defined(EXTERNAL_TOOLCHAIN)
299 1.187 thorpej @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.'
300 1.187 thorpej @echo '*** May result in a failed build or corrupt binaries!'
301 1.187 thorpej .elif defined(EXTERNAL_TOOLCHAIN)
302 1.187 thorpej @echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
303 1.156 tv .endif
304 1.173 sommerfe .if defined(NBUILDJOBS)
305 1.173 sommerfe @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
306 1.173 sommerfe .endif
307 1.123 mrg
308 1.137 tv do-distrib-dirs:
309 1.147 jmc .if !defined(DESTDIR) || ${DESTDIR} == ""
310 1.152 tv (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
311 1.147 jmc .else
312 1.152 tv (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
313 1.147 jmc .endif
314 1.190 lukem
315 1.190 lukem .for targ in cleandir obj includes
316 1.190 lukem do-${targ}: ${targ}
317 1.190 lukem @true
318 1.190 lukem .endfor
319 1.123 mrg
320 1.220 mrg .for dir in tools tools/compat lib/csu gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib
321 1.207 drochner do-${dir:S/\//-/g}:
322 1.137 tv .for targ in dependall install
323 1.173 sommerfe (cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
324 1.137 tv .endfor
325 1.184 lukem .endfor
326 1.184 lukem
327 1.189 itohy do-ld.so:
328 1.184 lukem .for targ in dependall install
329 1.189 itohy .if (${OBJECT_FMT} == "a.out")
330 1.189 itohy (cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ})
331 1.189 itohy .endif
332 1.189 itohy .if (${OBJECT_FMT} == "ELF")
333 1.184 lukem (cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ})
334 1.189 itohy .endif
335 1.137 tv .endfor
336 1.143 tv
337 1.143 tv do-build:
338 1.154 tv .for targ in dependall install
339 1.173 sommerfe (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
340 1.154 tv .endfor
341 1.200 lukem
342 1.200 lukem do-obsolete:
343 1.200 lukem (cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists)
344 1.87 cjs
345 1.193 lukem #
346 1.137 tv # Speedup stubs for some subtrees that don't need to run these rules.
347 1.137 tv # (Tells <bsd.subdir.mk> not to recurse for them.)
348 1.193 lukem #
349 1.129 tv
350 1.152 tv .for dir in bin etc distrib games libexec regress sbin usr.sbin tools
351 1.152 tv includes-${dir}:
352 1.152 tv @true
353 1.152 tv .endfor
354 1.152 tv .for dir in etc distrib regress
355 1.152 tv install-${dir}:
356 1.152 tv @true
357 1.152 tv .endfor
358 1.152 tv
359 1.193 lukem #
360 1.152 tv # XXX this needs to change when distrib Makefiles are recursion compliant
361 1.193 lukem # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
362 1.193 lukem #
363 1.152 tv dependall-distrib depend-distrib all-distrib:
364 1.136 nathanw @true
365 1.130 tv
366 1.211 lukem .include <bsd.sys.mk>
367 1.151 tv .include <bsd.obj.mk>
368 1.209 lukem .include <bsd.kernobj.mk>
369 1.146 tv .include <bsd.subdir.mk>
370 1.144 tv
371 1.150 tv build-docs: ${.CURDIR}/BUILDING
372 1.188 lukem ${.CURDIR}/BUILDING: doc/BUILDING.mdoc
373 1.216 lukem ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
374 1.209 lukem
375 1.209 lukem
376 1.209 lukem #
377 1.209 lukem # Display current make(1) parameters
378 1.209 lukem #
379 1.209 lukem params:
380 1.209 lukem .for var in BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \
381 1.209 lukem KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
382 1.210 lukem MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \
383 1.214 lukem MAKEOBJDIR MAKEOBJDIRPREFIX \
384 1.214 lukem MKOBJDIRS MKUNPRIVED MKUPDATE \
385 1.210 lukem RELEASEDIR TOOLCHAIN_MISSING TOOLDIR \
386 1.214 lukem USETOOLS
387 1.209 lukem .if defined(${var})
388 1.209 lukem @printf "%20s = '%-s'\n" ${var} ${${var}:Q}
389 1.209 lukem .else
390 1.209 lukem @printf "%20s = (undefined)\n" ${var}
391 1.209 lukem .endif
392 1.209 lukem .endfor
393