Commit | Line | Data |
---|---|---|
984263bc MD |
1 | # |
2 | # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $ | |
603cdb58 | 3 | # $DragonFly: src/Makefile.inc1,v 1.90 2006/10/22 16:26:44 dillon Exp $ |
cecff5c1 MD |
4 | # |
5 | # Build-time options are documented in make.conf(5). | |
984263bc MD |
6 | # |
7 | # The intended user-driven targets are: | |
1397f94a | 8 | # |
984263bc | 9 | # buildworld - rebuild *everything*, including glue to help do upgrades |
1397f94a MD |
10 | # quickworld - skip the glue and do a depend+build on the meat |
11 | # realquickworld - skip the glue and depend stages and just build the meat | |
12 | # crossworld - only build the glue (particularly the cross-build environment) | |
984263bc MD |
13 | # installworld- install everything built by "buildworld" |
14 | # update - convenient way to update your source tree (eg: sup/cvs) | |
15 | # most - build user commands, no libraries or include files | |
16 | # installmost - install user commands, no libraries or include files | |
17 | # | |
18 | # Standard targets (not defined here) are documented in the makefiles in | |
19 | # /usr/share/mk. These include: | |
20 | # obj depend all install clean cleandepend cleanobj | |
21 | ||
22 | # Put initial settings here. | |
23 | SUBDIR= | |
24 | ||
25 | # We must do share/info early so that installation of info `dir' | |
26 | # entries works correctly. Do it first since it is less likely to | |
27 | # grow dependencies on include and lib than vice versa. | |
28 | .if exists(${.CURDIR}/share/info) | |
29 | SUBDIR+= share/info | |
30 | .endif | |
31 | ||
32 | # We must do include and lib early so that the perl *.ph generation | |
33 | # works correctly as it uses the header files installed by this. | |
34 | .if exists(${.CURDIR}/include) | |
35 | SUBDIR+= include | |
36 | .endif | |
37 | .if exists(${.CURDIR}/lib) | |
38 | SUBDIR+= lib | |
39 | .endif | |
17d0fefe MD |
40 | # This exists simply to ensure that the obj dir hierarchy is |
41 | # intact for nrelease, allowing the nrelease Makefile's to | |
42 | # reference ${.OBJDIR}. | |
43 | # | |
44 | .if exists(${.CURDIR}/nrelease) | |
45 | SUBDIR+= nrelease | |
46 | .endif | |
984263bc MD |
47 | |
48 | .if exists(${.CURDIR}/bin) | |
49 | SUBDIR+= bin | |
50 | .endif | |
cecff5c1 | 51 | .if exists(${.CURDIR}/games) && !defined(NO_GAMES) |
984263bc MD |
52 | SUBDIR+= games |
53 | .endif | |
54 | .if exists(${.CURDIR}/gnu) | |
55 | SUBDIR+= gnu | |
56 | .endif | |
984263bc | 57 | .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ |
cecff5c1 | 58 | !defined(NO_CRYPT) && !defined(NO_OPENSSL) && defined(WANT_KERBEROS) |
984263bc MD |
59 | SUBDIR+= kerberos5 |
60 | .endif | |
61 | .if exists(${.CURDIR}/libexec) | |
62 | SUBDIR+= libexec | |
63 | .endif | |
64 | .if exists(${.CURDIR}/sbin) | |
65 | SUBDIR+= sbin | |
66 | .endif | |
cecff5c1 | 67 | .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT) |
984263bc MD |
68 | SUBDIR+= secure |
69 | .endif | |
cecff5c1 | 70 | .if exists(${.CURDIR}/share) && !defined(NO_SHARE) |
984263bc MD |
71 | SUBDIR+= share |
72 | .endif | |
73 | .if exists(${.CURDIR}/sys) | |
74 | SUBDIR+= sys | |
75 | .endif | |
76 | .if exists(${.CURDIR}/usr.bin) | |
77 | SUBDIR+= usr.bin | |
78 | .endif | |
79 | .if exists(${.CURDIR}/usr.sbin) | |
80 | SUBDIR+= usr.sbin | |
81 | .endif | |
82 | ||
83 | # etc must be last for "distribute" to work | |
84 | .if exists(${.CURDIR}/etc) | |
85 | SUBDIR+= etc | |
86 | .endif | |
87 | ||
88 | # These are last, since it is nice to at least get the base system | |
89 | # rebuilt before you do them. | |
90 | .if defined(LOCAL_DIRS) | |
91 | .for _DIR in ${LOCAL_DIRS} | |
92 | .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile) | |
93 | SUBDIR+= ${_DIR} | |
94 | .endif | |
95 | .endfor | |
96 | .endif | |
97 | ||
98 | .if defined(SUBDIR_OVERRIDE) | |
99 | SUBDIR= ${SUBDIR_OVERRIDE} | |
100 | .endif | |
101 | ||
102 | .if defined(NOCLEANDIR) | |
103 | CLEANDIR= clean cleandepend | |
104 | .else | |
105 | CLEANDIR= cleandir | |
106 | .endif | |
107 | ||
108 | SUP?= /usr/local/bin/cvsup | |
109 | SUPFLAGS?= -g -L 2 -P - | |
110 | .if defined(SUPHOST) | |
111 | SUPFLAGS+= -h ${SUPHOST} | |
112 | .endif | |
113 | ||
9974d917 SS |
114 | .if defined(NO_CLEAN) |
115 | NOCLEAN= # defined | |
116 | .endif | |
d0a8f509 | 117 | |
1397f94a MD |
118 | # Object directory base in primary make. Note that when we rerun make |
119 | # from inside this file we change MAKEOBJDIRPREFIX to the appropriate | |
120 | # subdirectory because the rest of the build system needs it that way. | |
121 | # The original object directory base is saved in OBJTREE. | |
122 | # | |
984263bc | 123 | MAKEOBJDIRPREFIX?= /usr/obj |
1397f94a MD |
124 | OBJTREE?= ${MAKEOBJDIRPREFIX} |
125 | ||
126 | # Used for stage installs and pathing | |
127 | # | |
128 | DESTDIRBASE?= ${OBJTREE}${.CURDIR} | |
129 | ||
c89fd520 SS |
130 | # Remove DESTDIR from MAKEFLAGS. It is present in the environment |
131 | # anyhow, and we need to be able to override it for stage installs | |
132 | .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*} | |
133 | ||
984263bc MD |
134 | TARGET_ARCH?= ${MACHINE_ARCH} |
135 | .if ${TARGET_ARCH} == ${MACHINE_ARCH} | |
136 | TARGET?= ${MACHINE} | |
137 | .else | |
138 | TARGET?= ${TARGET_ARCH} | |
139 | .endif | |
140 | .if make(buildworld) | |
141 | BUILD_ARCH!= sysctl -n hw.machine_arch | |
142 | .if ${MACHINE_ARCH} != ${BUILD_ARCH} | |
143 | .error To cross-build, set TARGET_ARCH. | |
144 | .endif | |
145 | .endif | |
1397f94a MD |
146 | |
147 | # BTOOLS (Natively built) All non-cross-development tools that the | |
148 | # main build needs. This includes things like 'mkdir' and 'rm'. | |
149 | # We will not use the native system's exec path once we start | |
150 | # on WORLD. (bootstrap-tools and build-tools or BTOOLS) | |
151 | # | |
152 | # CTOOLS (Natively built) Cross development tools which are specific | |
153 | # to the target architecture. | |
154 | # | |
155 | # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and | |
156 | # CTOOLS. | |
157 | # | |
158 | # MACHINE_ARCH Architecture we are building on | |
159 | # TARGET_ARCH Architecture we are building for | |
160 | # | |
161 | BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH} | |
162 | CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH} | |
163 | WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH} | |
164 | ||
79aa78bc MD |
165 | # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and |
166 | # cross-tools stages to augment the existing command path to access newer | |
167 | # versions of certain utilities such as 'patch' that the cross-tools stage | |
168 | # might expect. | |
169 | # | |
170 | BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games | |
171 | ||
1397f94a MD |
172 | # The strict temporary command path contains all binaries required |
173 | # by the buildworld system after the cross-tools stage. | |
174 | # | |
175 | STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games | |
984263bc MD |
176 | |
177 | TMPDIR?= /tmp | |
178 | TMPPID!= echo $$$$ | |
984263bc MD |
179 | |
180 | # | |
181 | # Building a world goes through the following stages | |
182 | # | |
183 | # 1. bootstrap-tool stage [BMAKE] | |
184 | # This stage is responsible for creating programs that | |
185 | # are needed for backward compatibility reasons. They | |
186 | # are not built as cross-tools. | |
187 | # 2. build-tool stage [TMAKE] | |
188 | # This stage is responsible for creating the object | |
189 | # tree and building any tools that are needed during | |
190 | # the build process. | |
191 | # 3. cross-tool stage [XMAKE] | |
192 | # This stage is responsible for creating any tools that | |
193 | # are needed for cross-builds. A cross-compiler is one | |
194 | # of them. | |
195 | # 4. world stage [WMAKE] | |
196 | # This stage actually builds the world. | |
197 | # 5. install stage (optional) [IMAKE] | |
198 | # This stage installs a previously built world. | |
199 | # | |
200 | ||
984263bc | 201 | # bootstrap-tool stage |
1397f94a MD |
202 | # |
203 | BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \ | |
204 | OBJTREE=${OBJTREE} \ | |
44831353 | 205 | DESTDIR=${BTOOLSDEST} \ |
79aa78bc | 206 | PATH=${BTOOLSPATH}:${PATH} \ |
984263bc | 207 | INSTALL="sh ${.CURDIR}/tools/install.sh" |
1397f94a | 208 | |
984263bc | 209 | BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ |
e486d225 SS |
210 | -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \ |
211 | -DNO_WERROR -DNO_NLS | |
984263bc MD |
212 | |
213 | # build-tool stage | |
1397f94a MD |
214 | # |
215 | TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \ | |
216 | OBJTREE=${OBJTREE} \ | |
984263bc | 217 | DESTDIR= \ |
79aa78bc | 218 | PATH=${BTOOLSPATH}:${PATH} \ |
984263bc | 219 | INSTALL="sh ${.CURDIR}/tools/install.sh" |
1397f94a MD |
220 | |
221 | TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \ | |
e486d225 | 222 | -DNO_FORTRAN -DNOSHARED |
984263bc MD |
223 | |
224 | # cross-tool stage | |
1397f94a MD |
225 | # |
226 | # note: TOOLS_PREFIX points to the obj root holding the cross | |
44831353 MD |
227 | # compiler binaries, while USRDATA_PREFIX points to the obj root |
228 | # holding the target environment (and also determines where cross-built | |
229 | # libraries, crt*.o, and include files are installed). | |
1397f94a MD |
230 | # |
231 | XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \ | |
232 | OBJTREE=${OBJTREE} \ | |
233 | DESTDIR=${CTOOLSDEST} \ | |
234 | INSTALL="sh ${.CURDIR}/tools/install.sh" \ | |
235 | TOOLS_PREFIX=${CTOOLSDEST} \ | |
79aa78bc MD |
236 | USRDATA_PREFIX=${WORLDDEST} \ |
237 | PATH=${BTOOLSPATH}:${PATH} | |
1397f94a | 238 | |
44831353 | 239 | XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \ |
e486d225 | 240 | -DBOOTSTRAPPING -DNOSHARED |
1397f94a MD |
241 | |
242 | # world stage, note the strict path and note that TOOLS_PREFIX is left | |
243 | # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty, | |
244 | # which is primarily for the compiler so it targets / (e.g. /usr/<blah>) | |
245 | # for both binary and library paths, even though it is being compiled to | |
246 | # WORLDDEST. None of the programs in the world stage are ever actually | |
247 | # executed during the buildworld/installworld. | |
248 | # | |
249 | CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \ | |
250 | OBJTREE=${OBJTREE} \ | |
251 | MACHINE_ARCH=${TARGET_ARCH} \ | |
252 | MACHINE=${TARGET} \ | |
82cda618 | 253 | OBJFORMAT_PATH=${CTOOLSDEST} |
984263bc | 254 | |
984263bc | 255 | WMAKEENV= ${CROSSENV} \ |
1397f94a | 256 | DESTDIR=${WORLDDEST} \ |
984263bc | 257 | INSTALL="sh ${.CURDIR}/tools/install.sh" \ |
1397f94a MD |
258 | PATH=${STRICTTMPPATH} |
259 | ||
984263bc MD |
260 | WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 |
261 | ||
262 | # install stage | |
b07b69cc | 263 | # |
984263bc | 264 | IMAKEENV= ${CROSSENV} \ |
1397f94a | 265 | PATH=${STRICTTMPPATH} |
984263bc MD |
266 | IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 |
267 | ||
268 | # kernel stage | |
b07b69cc MD |
269 | # |
270 | KMAKEENV= ${WMAKEENV} | |
984263bc | 271 | |
984263bc MD |
272 | # buildworld |
273 | # | |
274 | # Attempt to rebuild the entire system, with reasonable chance of | |
275 | # success, regardless of how old your existing system is. | |
276 | # | |
277 | _worldtmp: | |
278 | @echo | |
279 | @echo "--------------------------------------------------------------" | |
280 | @echo ">>> Rebuilding the temporary build tree" | |
281 | @echo "--------------------------------------------------------------" | |
282 | .if !defined(NOCLEAN) | |
1397f94a | 283 | rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST} |
984263bc MD |
284 | .else |
285 | # XXX - These two can depend on any header file. | |
286 | rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c | |
287 | rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c | |
288 | .endif | |
1397f94a MD |
289 | mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST} |
290 | .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST} | |
291 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \ | |
292 | -p ${_dir}/ > /dev/null | |
293 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ | |
294 | -p ${_dir}/usr > /dev/null | |
984263bc | 295 | .endfor |
1397f94a MD |
296 | mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ |
297 | -p ${WORLDDEST}/usr/include > /dev/null | |
062db326 | 298 | ${LN} -sf ${.CURDIR}/sys ${WORLDDEST} |
1397f94a | 299 | |
984263bc MD |
300 | _bootstrap-tools: |
301 | @echo | |
302 | @echo "--------------------------------------------------------------" | |
303 | @echo ">>> stage 1: bootstrap tools" | |
304 | @echo "--------------------------------------------------------------" | |
305 | cd ${.CURDIR}; ${BMAKE} bootstrap-tools | |
306 | _cleanobj: | |
984263bc MD |
307 | @echo |
308 | @echo "--------------------------------------------------------------" | |
1397f94a | 309 | @echo ">>> stage 2a: cleaning up the object tree" |
984263bc MD |
310 | @echo "--------------------------------------------------------------" |
311 | cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} | |
984263bc MD |
312 | _obj: |
313 | @echo | |
314 | @echo "--------------------------------------------------------------" | |
1397f94a | 315 | @echo ">>> stage 2b: rebuilding the object tree" |
984263bc MD |
316 | @echo "--------------------------------------------------------------" |
317 | cd ${.CURDIR}; ${WMAKE} par-obj | |
318 | _build-tools: | |
319 | @echo | |
320 | @echo "--------------------------------------------------------------" | |
1397f94a | 321 | @echo ">>> stage 2c: build tools" |
984263bc MD |
322 | @echo "--------------------------------------------------------------" |
323 | cd ${.CURDIR}; ${TMAKE} build-tools | |
324 | _cross-tools: | |
325 | @echo | |
326 | @echo "--------------------------------------------------------------" | |
327 | @echo ">>> stage 3: cross tools" | |
328 | @echo "--------------------------------------------------------------" | |
329 | cd ${.CURDIR}; ${XMAKE} cross-tools | |
330 | _includes: | |
331 | @echo | |
332 | @echo "--------------------------------------------------------------" | |
1397f94a | 333 | @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include" |
984263bc MD |
334 | @echo "--------------------------------------------------------------" |
335 | cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes | |
336 | _libraries: | |
337 | @echo | |
338 | @echo "--------------------------------------------------------------" | |
1397f94a | 339 | @echo ">>> stage 4b: building libraries" |
984263bc MD |
340 | @echo "--------------------------------------------------------------" |
341 | cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries | |
342 | _depend: | |
343 | @echo | |
344 | @echo "--------------------------------------------------------------" | |
1397f94a | 345 | @echo ">>> stage 4c: make dependencies" |
984263bc MD |
346 | @echo "--------------------------------------------------------------" |
347 | cd ${.CURDIR}; ${WMAKE} par-depend | |
348 | everything: | |
349 | @echo | |
350 | @echo "--------------------------------------------------------------" | |
1397f94a | 351 | @echo ">>> stage 4d: building everything.." |
984263bc MD |
352 | @echo "--------------------------------------------------------------" |
353 | cd ${.CURDIR}; ${WMAKE} all | |
354 | ||
1397f94a MD |
355 | # note: buildworld no longer depends on _cleanobj because we rm -rf the |
356 | # entire object tree and built the bootstrap tools in a different location. | |
357 | # | |
358 | # buildworld - build everything from scratch | |
359 | # quickworld - skip the bootstrap, build, and cross-build steps | |
360 | # realquickworld - skip the bootstrap, build, crossbuild, and depend step. | |
361 | # | |
362 | # note: we include _obj in realquickworld to prevent accidental creation | |
363 | # of files in /usr/src. | |
984263bc MD |
364 | |
365 | WMAKE_TGTS= | |
366 | .if !defined(SUBDIR_OVERRIDE) | |
367 | WMAKE_TGTS+= _worldtmp _bootstrap-tools | |
368 | .endif | |
1397f94a | 369 | WMAKE_TGTS+= _obj _build-tools |
984263bc MD |
370 | .if !defined(SUBDIR_OVERRIDE) |
371 | WMAKE_TGTS+= _cross-tools | |
372 | .endif | |
373 | WMAKE_TGTS+= _includes _libraries _depend everything | |
374 | ||
375 | buildworld: ${WMAKE_TGTS} | |
1397f94a MD |
376 | |
377 | quickworld: _obj _includes _libraries _depend everything | |
378 | ||
379 | realquickworld: _obj _includes _libraries everything | |
380 | ||
381 | crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools | |
382 | ||
984263bc MD |
383 | .ORDER: ${WMAKE_TGTS} |
384 | ||
385 | # | |
386 | # installcheck | |
387 | # | |
388 | # Checks to be sure system is ready for installworld | |
389 | # | |
390 | installcheck: | |
391 | .if !defined(NO_SENDMAIL) | |
f35282e3 MD |
392 | @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1) |
393 | @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
984263bc | 394 | .endif |
f35282e3 MD |
395 | @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1) |
396 | @pw usershow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
397 | @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
398 | @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
399 | @pw groupshow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1) | |
9b815a46 | 400 | .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/" |
f7ed9937 | 401 | @case `uname -r` in 1.2*|1.3-*|1.3.*|1.4.*|1.5.0-*|1.5.1-*|1.5.2-*|1.5.3-*) echo "You must upgrade your kernel to at least 1.5.4 and reboot before you can safely installworld, due to libc/system call ABI changes" ; exit 1;; esac |
9b815a46 | 402 | .endif |
f35282e3 | 403 | |
984263bc MD |
404 | # distributeworld |
405 | # | |
406 | # Distributes everything compiled by a `buildworld'. | |
407 | # | |
408 | # installworld | |
409 | # | |
410 | # Installs everything compiled by a 'buildworld'. | |
411 | # | |
412 | distributeworld installworld: installcheck | |
984263bc | 413 | cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//} |
984263bc MD |
414 | |
415 | # | |
416 | # reinstall | |
417 | # | |
418 | # If you have a build server, you can NFS mount the source and obj directories | |
419 | # and do a 'make reinstall' on the *client* to install new binaries from the | |
420 | # most recent server build. | |
421 | # | |
422 | reinstall: | |
423 | @echo "--------------------------------------------------------------" | |
424 | @echo ">>> Making hierarchy" | |
425 | @echo "--------------------------------------------------------------" | |
426 | cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy | |
427 | @echo | |
428 | @echo "--------------------------------------------------------------" | |
429 | @echo ">>> Installing everything.." | |
430 | @echo "--------------------------------------------------------------" | |
431 | cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install | |
432 | .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN) | |
433 | @echo | |
434 | @echo "--------------------------------------------------------------" | |
435 | @echo ">>> Rebuilding man page indices" | |
436 | @echo "--------------------------------------------------------------" | |
437 | cd ${.CURDIR}/share/man; ${MAKE} makedb | |
438 | .endif | |
439 | ||
440 | redistribute: | |
441 | @echo "--------------------------------------------------------------" | |
442 | @echo ">>> Distributing everything.." | |
443 | @echo "--------------------------------------------------------------" | |
444 | cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute | |
445 | ||
446 | # | |
fc7aca3e | 447 | # buildkernel, nativekernel, quickkernel, and installkernel |
984263bc MD |
448 | # |
449 | # Which kernels to build and/or install is specified by setting | |
450 | # KERNCONF. If not defined a GENERIC kernel is built/installed. | |
451 | # Only the existing (depending TARGET) config files are used | |
452 | # for building kernels and only the first of these is designated | |
453 | # as the one being installed. | |
454 | # | |
c2c83759 MD |
455 | # You can specify INSTALLSTRIPPED=1 if you wish the installed |
456 | # kernel and modules to be stripped of its debug info (required | |
457 | # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES | |
458 | # if you only want to strip the modules of their debug info. These | |
459 | # only apply if you have DEBUG=-g in your kernel config or make line. | |
460 | # | |
984263bc MD |
461 | # Note that we have to use TARGET instead of TARGET_ARCH when |
462 | # we're in kernel-land. Since only TARGET_ARCH is (expected) to | |
463 | # be set to cross-build, we have to make sure TARGET is set | |
464 | # properly. | |
465 | ||
466 | .if !defined(KERNCONF) && defined(KERNEL) | |
467 | KERNCONF= ${KERNEL} | |
468 | KERNWARN= yes | |
469 | .else | |
470 | KERNCONF?= GENERIC | |
471 | .endif | |
472 | INSTKERNNAME?= kernel | |
473 | ||
474 | KRNLSRCDIR= ${.CURDIR}/sys | |
4e54470f | 475 | KRNLCONFDIR= ${KRNLSRCDIR}/config |
984263bc MD |
476 | KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR} |
477 | KERNCONFDIR?= ${KRNLCONFDIR} | |
478 | ||
479 | BUILDKERNELS= | |
480 | INSTALLKERNEL= | |
481 | .for _kernel in ${KERNCONF} | |
482 | .if exists(${KERNCONFDIR}/${_kernel}) | |
483 | BUILDKERNELS+= ${_kernel} | |
484 | .if empty(INSTALLKERNEL) | |
485 | INSTALLKERNEL= ${_kernel} | |
486 | .endif | |
487 | .endif | |
488 | .endfor | |
489 | ||
9a359590 MD |
490 | # kernel version numbers survive rm -rf |
491 | # | |
492 | .for _kernel in ${BUILDKERNELS} | |
493 | .if exists(${KRNLOBJDIR}/${_kernel}/version) | |
494 | KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version | |
495 | .endif | |
496 | .endfor | |
497 | ||
984263bc MD |
498 | # |
499 | # buildkernel | |
500 | # | |
501 | # Builds all kernels defined by BUILDKERNELS. | |
502 | # | |
fc7aca3e | 503 | bk_tools: |
e05c8c84 MD |
504 | @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \ |
505 | echo "You must buildworld before buildkernel. If you wish"; \ | |
506 | echo "to build a kernel using native tools, config it manually"; \ | |
507 | echo "or use the nativekernel target if you are in a rush"; \ | |
508 | exit 1; \ | |
c2c83759 MD |
509 | fi |
510 | ||
511 | maybe_bk_tools: | |
512 | .for _kernel in ${BUILDKERNELS} | |
513 | @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \ | |
514 | if [ ! -f ${WORLDDEST}/.libraries_done ]; then \ | |
515 | echo "The kernel was build using buildworld tools which no" ; \ | |
516 | echo "longer appear to exist, quickkernel failed!" ; \ | |
517 | exit 1; \ | |
518 | fi; \ | |
519 | fi | |
520 | .endfor | |
e05c8c84 | 521 | |
fc7aca3e | 522 | bk_build_list: |
984263bc MD |
523 | .if empty(BUILDKERNELS) |
524 | @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})." | |
603cdb58 | 525 | @echo ">>> Did you move your kernel configs from i386/conf to config/?" |
984263bc MD |
526 | @false |
527 | .endif | |
fc7aca3e MD |
528 | |
529 | bk_kernwarn: | |
984263bc MD |
530 | .if defined(KERNWARN) |
531 | @echo "--------------------------------------------------------------" | |
532 | @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" | |
533 | @echo "--------------------------------------------------------------" | |
534 | @sleep 3 | |
535 | .endif | |
536 | @echo | |
fc7aca3e MD |
537 | |
538 | # The buildkernel target rebuilds the specified kernels from scratch | |
539 | # using the crossbuild tools generated by the last buildworld. It is | |
540 | # the safest (but also the most time consuming) way to build a new kernel. | |
541 | # | |
542 | buildkernel: bk_tools bk_build_list bk_kernwarn | |
984263bc MD |
543 | .for _kernel in ${BUILDKERNELS} |
544 | @echo "--------------------------------------------------------------" | |
545 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
546 | @echo "--------------------------------------------------------------" | |
547 | @echo "===> ${_kernel}" | |
fc7aca3e MD |
548 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) |
549 | rm -rf ${KRNLOBJDIR}/${_kernel} | |
550 | .else | |
e05c8c84 | 551 | @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \ |
fc7aca3e | 552 | echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \ |
e05c8c84 | 553 | rm -rf ${KRNLOBJDIR}/${_kernel}; fi |
fc7aca3e | 554 | .endif |
984263bc MD |
555 | mkdir -p ${KRNLOBJDIR} |
556 | .if !defined(NO_KERNELCONFIG) | |
557 | cd ${KRNLCONFDIR}; \ | |
1397f94a | 558 | PATH=${STRICTTMPPATH} \ |
984263bc MD |
559 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ |
560 | ${KERNCONFDIR}/${_kernel} | |
9a359590 MD |
561 | .endif |
562 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel}) | |
563 | echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version | |
984263bc | 564 | .endif |
e05c8c84 | 565 | touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run |
984263bc | 566 | cd ${KRNLOBJDIR}/${_kernel}; \ |
9f3906fd MD |
567 | MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \ |
568 | ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile | |
984263bc MD |
569 | .if !defined(NO_KERNELDEPEND) |
570 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
571 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend | |
572 | .endif | |
573 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
574 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all | |
575 | @echo "--------------------------------------------------------------" | |
576 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
577 | @echo "--------------------------------------------------------------" | |
578 | .endfor | |
579 | ||
fc7aca3e | 580 | # The nativekernel target rebuilds the specified kernels from scratch |
114580ac | 581 | # using the system's standard compiler rather than using the crossbuild |
fc7aca3e MD |
582 | # tools generated by the last buildworld. This is fairly safe if your |
583 | # system is reasonable up-to-date. | |
e05c8c84 | 584 | # |
fc7aca3e | 585 | nativekernel: bk_build_list bk_kernwarn |
e05c8c84 MD |
586 | .for _kernel in ${BUILDKERNELS} |
587 | @echo "--------------------------------------------------------------" | |
588 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
589 | @echo "--------------------------------------------------------------" | |
590 | @echo "===> ${_kernel}" | |
fc7aca3e MD |
591 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) |
592 | rm -rf ${KRNLOBJDIR}/${_kernel} | |
593 | .else | |
e05c8c84 | 594 | @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \ |
fc7aca3e | 595 | echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \ |
e05c8c84 | 596 | rm -rf ${KRNLOBJDIR}/${_kernel}; fi |
fc7aca3e | 597 | .endif |
e05c8c84 MD |
598 | mkdir -p ${KRNLOBJDIR} |
599 | .if !defined(NO_KERNELCONFIG) | |
600 | cd ${KRNLCONFDIR}; \ | |
601 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
602 | ${KERNCONFDIR}/${_kernel} | |
9a359590 MD |
603 | .endif |
604 | .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel}) | |
605 | echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version | |
e05c8c84 MD |
606 | .endif |
607 | touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run | |
e05c8c84 MD |
608 | cd ${KRNLOBJDIR}/${_kernel}; \ |
609 | MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \ | |
610 | ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile | |
611 | .if !defined(NO_KERNELDEPEND) | |
612 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
613 | ${MAKE} KERNEL=${INSTKERNNAME} depend | |
614 | .endif | |
615 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
616 | ${MAKE} KERNEL=${INSTKERNNAME} all | |
617 | @echo "--------------------------------------------------------------" | |
618 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
619 | @echo "--------------------------------------------------------------" | |
620 | .endfor | |
621 | ||
fc7aca3e MD |
622 | # The quickkernel target rebuilds the specified kernels as quickly |
623 | # as possible. It will use the native tools or the buildworld cross tools | |
624 | # based on whether the kernel was originally generated via buildkernel or | |
625 | # nativekernel. Config is rerun but the object hierarchy is not rebuilt, | |
626 | # nor is the make depend step run. | |
984263bc | 627 | # |
c2c83759 | 628 | quickkernel: maybe_bk_tools bk_build_list bk_kernwarn |
fc7aca3e MD |
629 | .for _kernel in ${BUILDKERNELS} |
630 | @echo "--------------------------------------------------------------" | |
631 | @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" | |
632 | @echo "--------------------------------------------------------------" | |
633 | @echo "===> ${_kernel}" | |
634 | .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run) | |
635 | .if !defined(NO_KERNELCONFIG) | |
636 | cd ${KRNLCONFDIR}; \ | |
637 | PATH=${STRICTTMPPATH} \ | |
638 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
639 | ${KERNCONFDIR}/${_kernel} | |
640 | .endif | |
641 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
642 | ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all | |
643 | .else | |
644 | .if !defined(NO_KERNELCONFIG) | |
645 | cd ${KRNLCONFDIR}; \ | |
646 | config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ | |
647 | ${KERNCONFDIR}/${_kernel} | |
648 | .endif | |
649 | cd ${KRNLOBJDIR}/${_kernel}; \ | |
650 | ${MAKE} KERNEL=${INSTKERNNAME} all | |
651 | .endif | |
652 | @echo "--------------------------------------------------------------" | |
653 | @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" | |
654 | @echo "--------------------------------------------------------------" | |
655 | .endfor | |
656 | ||
657 | ||
984263bc MD |
658 | # installkernel |
659 | # | |
660 | # Install the kernel defined by INSTALLKERNEL | |
661 | # | |
662 | installkernel reinstallkernel: | |
c2c83759 | 663 | .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run) |
984263bc MD |
664 | cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ |
665 | ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//} | |
c2c83759 MD |
666 | .else |
667 | cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ | |
668 | ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//} | |
669 | .endif | |
984263bc MD |
670 | |
671 | # | |
672 | # update | |
673 | # | |
674 | # Update the source tree, by running sup and/or running cvs to update to the | |
675 | # latest copy. | |
676 | # | |
677 | update: | |
678 | .if defined(SUP_UPDATE) | |
679 | @echo "--------------------------------------------------------------" | |
680 | @echo ">>> Running ${SUP}" | |
681 | @echo "--------------------------------------------------------------" | |
682 | .if defined(SUPFILE) | |
683 | @${SUP} ${SUPFLAGS} ${SUPFILE} | |
684 | .endif | |
685 | .if defined(SUPFILE1) | |
686 | @${SUP} ${SUPFLAGS} ${SUPFILE1} | |
687 | .endif | |
688 | .if defined(SUPFILE2) | |
689 | @${SUP} ${SUPFLAGS} ${SUPFILE2} | |
690 | .endif | |
691 | .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE) | |
692 | @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} | |
693 | .endif | |
694 | .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) | |
695 | @${SUP} ${SUPFLAGS} ${DOCSUPFILE} | |
696 | .endif | |
697 | .endif | |
698 | .if defined(CVS_UPDATE) | |
699 | @echo "--------------------------------------------------------------" | |
9a359590 | 700 | @echo ">>> Updating ${.CURDIR} from cvs repository `cat ${.CURDIR}/CVS/Root`" |
984263bc | 701 | @echo "--------------------------------------------------------------" |
9a359590 MD |
702 | @sleep 2 |
703 | cd ${.CURDIR}; cvs -q update -P -d | |
984263bc MD |
704 | .endif |
705 | ||
706 | # | |
707 | # most | |
708 | # | |
709 | # Build most of the user binaries on the existing system libs and includes. | |
710 | # | |
711 | most: | |
712 | @echo "--------------------------------------------------------------" | |
713 | @echo ">>> Building programs only" | |
714 | @echo "--------------------------------------------------------------" | |
715 | .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin | |
716 | cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all | |
717 | .endfor | |
718 | ||
719 | # | |
720 | # installmost | |
721 | # | |
722 | # Install the binaries built by the 'most' target. This does not include | |
723 | # libraries or include files. | |
724 | # | |
725 | installmost: | |
726 | @echo "--------------------------------------------------------------" | |
727 | @echo ">>> Installing programs only" | |
728 | @echo "--------------------------------------------------------------" | |
729 | .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin | |
730 | cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install | |
731 | .endfor | |
732 | ||
733 | # | |
734 | # ------------------------------------------------------------------------ | |
735 | # | |
736 | # From here onwards are utility targets used by the 'make world' and | |
737 | # related targets. If your 'world' breaks, you may like to try to fix | |
738 | # the problem and manually run the following targets to attempt to | |
739 | # complete the build. Beware, this is *not* guaranteed to work, you | |
740 | # need to have a pretty good grip on the current state of the system | |
741 | # to attempt to manually finish it. If in doubt, 'make world' again. | |
742 | # | |
743 | ||
79aa78bc MD |
744 | # bootstrap-tools: Build all tools required to build all tools. Note that |
745 | # order is important in a number of cases and also note that the bootstrap | |
746 | # and build tools stages have access to earlier binaries they themselves | |
747 | # had generated. | |
984263bc | 748 | # |
79aa78bc MD |
749 | # patch: older patch's do not have -i. This program must be built |
750 | # first so other bootstrap tools that need to apply patches | |
751 | # can use it. | |
17030342 MD |
752 | # [x]install: dependancies on various new install features |
753 | # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH | |
754 | # envs are not compatible with older objformat binaries. | |
755 | # | |
cecff5c1 | 756 | .if exists(${.CURDIR}/games) && !defined(NO_GAMES) |
984263bc MD |
757 | _strfile= games/fortune/strfile |
758 | .endif | |
759 | ||
760 | bootstrap-tools: | |
062db326 | 761 | ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date |
1397f94a | 762 | .for _tool in ${_strfile} \ |
1a7434d5 | 763 | usr.bin/patch \ |
1397f94a | 764 | bin/chmod bin/cp bin/dd bin/mkdir bin/rm bin/echo bin/test \ |
11ba1493 | 765 | bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \ |
b07b69cc | 766 | bin/hostname bin/kill \ |
1397f94a | 767 | usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \ |
1320c43d | 768 | usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \ |
1397f94a MD |
769 | usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \ |
770 | usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \ | |
771 | usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \ | |
772 | usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \ | |
b07b69cc | 773 | usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \ |
1397f94a | 774 | usr.bin/vi usr.bin/cap_mkdb usr.bin/vgrind usr.bin/true usr.bin/false \ |
c02263c2 | 775 | usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \ |
b6ef15c2 | 776 | usr.bin/tail \ |
1397f94a | 777 | usr.sbin/chown usr.sbin/mtree usr.sbin/config \ |
8a48ec64 | 778 | usr.sbin/btxld usr.sbin/pwd_mkdb usr.sbin/zic usr.sbin/makewhatis \ |
dea0b85a | 779 | gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \ |
32a7b49a | 780 | usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb |
1397f94a | 781 | ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \ |
984263bc MD |
782 | cd ${.CURDIR}/${_tool}; \ |
783 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
784 | ${MAKE} DIRPRFX=${_tool}/ depend; \ | |
785 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
1397f94a | 786 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install |
984263bc | 787 | .endfor |
e05c8c84 | 788 | touch ${BTOOLSDEST}/.bootstrap_done |
984263bc | 789 | |
bceb727e | 790 | # build-tools: Build special purpose build tools. |
984263bc | 791 | # |
1397f94a MD |
792 | # XXX we may be able to remove or consolidate this into bootstrap-tools |
793 | # now that we have the native helper (.nx/.no) infrastructure. | |
794 | # | |
cecff5c1 | 795 | .if exists(${.CURDIR}/games) && !defined(NO_GAMES) |
984263bc MD |
796 | _games= games/adventure games/hack games/phantasia |
797 | .endif | |
798 | ||
cecff5c1 | 799 | .if exists(${.CURDIR}/share) && !defined(NO_SHARE) |
984263bc MD |
800 | _share= share/syscons/scrnmaps |
801 | .endif | |
802 | ||
4db2a28c | 803 | _gcc34_cross= gnu/usr.bin/cc34 |
c32e17fc | 804 | _gcc34_tools= gnu/usr.bin/cc34/cc_prep gnu/usr.bin/cc34/cc_tools |
29d48e65 SS |
805 | .if defined(WANT_GCC40) |
806 | _gcc40_cross= gnu/usr.bin/cc40 | |
807 | _gcc40_tools= gnu/usr.bin/cc40/cc_prep gnu/usr.bin/cc40/cc_tools | |
808 | .endif | |
ddf7cc86 SS |
809 | .if defined(WANT_GCC41) |
810 | _gcc41_cross= gnu/usr.bin/cc41 | |
811 | _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools | |
812 | .endif | |
4f50e548 | 813 | _binutils= gnu/usr.bin/binutils215 |
17030342 | 814 | |
984263bc | 815 | .if !defined(NO_FORTRAN) |
4db2a28c | 816 | _fortran= gnu/usr.bin/cc34/f771 |
17030342 | 817 | .endif |
984263bc | 818 | |
984263bc | 819 | .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ |
cecff5c1 | 820 | !defined(NO_CRYPT) && defined(WANT_KERBEROS) |
92b9cead | 821 | _libkrb5= kerberos5/tools kerberos5/lib/libroken kerberos5/lib/libvers \ |
984263bc MD |
822 | kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl |
823 | .endif | |
824 | ||
984263bc | 825 | build-tools: |
ddf7cc86 | 826 | .for _tool in ${_gcc34_tools} ${_gcc40_tools} ${_gcc41_tools} ${_fortran} ${_libkrb5} ${_share} |
1397f94a | 827 | ${ECHODIR} "===> ${_tool} (build-tools)"; \ |
984263bc MD |
828 | cd ${.CURDIR}/${_tool}; \ |
829 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
1397f94a MD |
830 | ${MAKE} DIRPRFX=${_tool}/ depend; \ |
831 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
832 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install | |
984263bc | 833 | .endfor |
e05c8c84 | 834 | touch ${BTOOLSDEST}/.build_done |
984263bc MD |
835 | |
836 | # | |
837 | # cross-tools: Build cross-building tools | |
838 | # | |
984263bc MD |
839 | .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386" |
840 | _btxld= usr.sbin/btxld | |
841 | .endif | |
842 | ||
843 | cross-tools: | |
da5b39ba | 844 | .for _tool in ${_btxld} ${_binutils} \ |
17030342 | 845 | usr.bin/objformat usr.sbin/crunch/crunchide \ |
ddf7cc86 | 846 | ${_gcc34_cross} ${_gcc40_cross} ${_gcc41_cross} |
1397f94a | 847 | ${ECHODIR} "===> ${_tool} (cross-tools)"; \ |
984263bc MD |
848 | cd ${.CURDIR}/${_tool}; \ |
849 | ${MAKE} DIRPRFX=${_tool}/ obj; \ | |
850 | ${MAKE} DIRPRFX=${_tool}/ depend; \ | |
851 | ${MAKE} DIRPRFX=${_tool}/ all; \ | |
1397f94a | 852 | ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install |
984263bc | 853 | .endfor |
e05c8c84 | 854 | touch ${CTOOLSDEST}/.cross_done |
984263bc MD |
855 | |
856 | # | |
857 | # hierarchy - ensure that all the needed directories are present | |
858 | # | |
859 | hierarchy: | |
860 | cd ${.CURDIR}/etc; ${MAKE} distrib-dirs | |
861 | ||
862 | # | |
863 | # libraries - build all libraries, and install them under ${DESTDIR}. | |
864 | # | |
865 | # The list of libraries with dependents (${_prebuild_libs}) and their | |
866 | # interdependencies (__L) are built automatically by the | |
867 | # ${.CURDIR}/tools/make_libdeps.sh script. | |
868 | # | |
5228fe46 MD |
869 | # .makeenv does not work when bootstrapping from 4.x, so we must be sure |
870 | # to specify the correct CCVER or 'cc' will not exec the correct compiler. | |
871 | # | |
984263bc MD |
872 | libraries: |
873 | cd ${.CURDIR}; \ | |
4db2a28c | 874 | HOST_CCVER=${HOST_CCVER} CCVER=gcc34 \ |
29d48e65 SS |
875 | ${MAKE} -f Makefile.inc1 _startup_libs34; |
876 | .if defined(WANT_GCC40) | |
877 | cd ${.CURDIR}; \ | |
878 | HOST_CCVER=${HOST_CCVER} CCVER=gcc40 \ | |
879 | ${MAKE} -f Makefile.inc1 _startup_libs40; | |
ddf7cc86 SS |
880 | .endif |
881 | .if defined(WANT_GCC41) | |
882 | cd ${.CURDIR}; \ | |
883 | HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \ | |
884 | ${MAKE} -f Makefile.inc1 _startup_libs41; | |
29d48e65 SS |
885 | .endif |
886 | cd ${.CURDIR}; \ | |
984263bc MD |
887 | ${MAKE} -f Makefile.inc1 _startup_libs; \ |
888 | ${MAKE} -f Makefile.inc1 _prebuild_libs; \ | |
889 | ${MAKE} -f Makefile.inc1 _generic_libs; | |
e05c8c84 | 890 | touch ${WORLDDEST}/.libraries_done |
984263bc MD |
891 | |
892 | # These dependencies are not automatically generated: | |
893 | # | |
bceb727e JS |
894 | # gnu/lib/${CCVER}/libgcc and lib/csu must be built before all |
895 | # shared libraries for ELF. The target for _startup_libs34 is | |
29d48e65 | 896 | # specifically built using gcc34. Same goes for _startup_libs40. |
984263bc | 897 | # |
4db2a28c | 898 | _startup_libs34= gnu/lib/gcc34/libgcc |
29d48e65 | 899 | _startup_libs40= gnu/lib/gcc40/libgcc |
ddf7cc86 | 900 | _startup_libs41= gnu/lib/gcc41/libgcc |
5228fe46 | 901 | _startup_libs= lib/csu/${MACHINE_ARCH} |
d2a4c620 | 902 | _startup_libs+= lib/csu/common lib/libc lib/libc_rtld |
984263bc | 903 | |
faeb88ed | 904 | _prebuild_libs= lib/libarchive |
0b153c05 | 905 | _prebuild_libs+= lib/libutil |
984263bc MD |
906 | |
907 | _generic_libs= gnu/lib | |
908 | ||
cecff5c1 | 909 | .if !defined(NO_CRYPT) && defined(WANT_KERBEROS) |
8a443844 | 910 | _prebuild_libs+= kerberos5/tools |
984263bc MD |
911 | _prebuild_libs+= kerberos5/lib/libasn1 |
912 | _prebuild_libs+= kerberos5/lib/libgssapi | |
913 | _prebuild_libs+= kerberos5/lib/libkrb5 | |
914 | _prebuild_libs+= kerberos5/lib/libroken | |
915 | _generic_libs+= kerberos5/lib | |
916 | .endif | |
917 | ||
984263bc | 918 | _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \ |
7d1ab061 | 919 | lib/libncurses/libncurses lib/libopie lib/libradius \ |
b34b60bc | 920 | lib/libskey lib/libtacplus lib/libz lib/libm lib/libpam |
984263bc MD |
921 | |
922 | lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L | |
923 | lib/libskey__L: lib/libcrypt__L lib/libmd__L | |
924 | ||
925 | _generic_libs+= lib | |
926 | ||
cecff5c1 | 927 | .if !defined(NO_CRYPT) |
984263bc MD |
928 | .if !defined(NO_OPENSSL) |
929 | _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl | |
930 | .if !defined(NO_OPENSSH) | |
931 | _prebuild_libs+= secure/lib/libssh | |
932 | secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L | |
933 | .endif | |
934 | .endif | |
935 | _generic_libs+= secure/lib | |
936 | .endif | |
937 | ||
938 | _generic_libs+= usr.bin/lex/lib | |
939 | ||
ddf7cc86 | 940 | .for _lib in ${_startup_libs34} ${_startup_libs40} ${_startup_libs41} \ |
4db2a28c | 941 | ${_startup_libs} ${_prebuild_libs} ${_generic_libs} |
984263bc MD |
942 | ${_lib}__L: .PHONY |
943 | .if exists(${.CURDIR}/${_lib}) | |
944 | ${ECHODIR} "===> ${_lib}"; \ | |
945 | cd ${.CURDIR}/${_lib}; \ | |
946 | ${MAKE} DIRPRFX=${_lib}/ depend; \ | |
947 | ${MAKE} DIRPRFX=${_lib}/ all; \ | |
948 | ${MAKE} DIRPRFX=${_lib}/ install | |
949 | .endif | |
950 | .endfor | |
951 | ||
952 | _startup_libs: ${_startup_libs:S/$/__L/} | |
4db2a28c | 953 | _startup_libs34: ${_startup_libs34:S/$/__L/} |
29d48e65 | 954 | _startup_libs40: ${_startup_libs40:S/$/__L/} |
ddf7cc86 | 955 | _startup_libs41: ${_startup_libs41:S/$/__L/} |
984263bc MD |
956 | _prebuild_libs: ${_prebuild_libs:S/$/__L/} |
957 | _generic_libs: ${_generic_libs:S/$/__L/} | |
958 | ||
1397f94a MD |
959 | # library targets must be ordered because there are inter-library |
960 | # races (e.g. generation of tconfig.h) | |
961 | # | |
4db2a28c | 962 | .ORDER: ${_startup_libs34:S/$/__L/} |
29d48e65 | 963 | .ORDER: ${_startup_libs40:S/$/__L/} |
ddf7cc86 | 964 | .ORDER: ${_startup_libs41:S/$/__L/} |
1397f94a MD |
965 | .ORDER: ${_startup_libs:S/$/__L/} |
966 | .ORDER: ${_prebuild_libs:S/$/__L/} | |
967 | .ORDER: ${_generic_libs:S/$/__L/} | |
968 | ||
969 | .for __target in clean cleandepend cleandir obj depend includes | |
984263bc MD |
970 | .for entry in ${SUBDIR} |
971 | ${entry}.${__target}__D: .PHONY | |
972 | @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ | |
973 | ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ | |
974 | edir=${entry}.${MACHINE_ARCH}; \ | |
975 | cd ${.CURDIR}/$${edir}; \ | |
976 | else \ | |
977 | ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ | |
978 | edir=${entry}; \ | |
979 | cd ${.CURDIR}/$${edir}; \ | |
980 | fi; \ | |
981 | ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ | |
982 | .endfor | |
983 | par-${__target}: ${SUBDIR:S/$/.${__target}__D/} | |
1397f94a | 984 | .ORDER: ${SUBDIR:S/$/.${__target}__D/} |
984263bc | 985 | .endfor |
1397f94a | 986 | .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes |
984263bc | 987 | |
cb0f1574 MD |
988 | # The wmake target is used by /usr/bin/wmake to run make in a |
989 | # world build environment. | |
990 | # | |
991 | wmake: | |
1397f94a | 992 | @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}' |
cb0f1574 | 993 | |
5c7da0d7 MD |
994 | wmakeenv: |
995 | @echo '${WMAKEENV} /bin/sh' | |
996 | ||
1397f94a MD |
997 | bmake: |
998 | @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}' | |
999 | ||
17030342 MD |
1000 | bmakeenv: |
1001 | @echo '${BMAKEENV} /bin/sh' | |
1002 | ||
1397f94a MD |
1003 | tmake: |
1004 | @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}' | |
1005 | ||
17030342 MD |
1006 | tmakeenv: |
1007 | @echo '${TMAKEENV} /bin/sh' | |
1008 | ||
984263bc | 1009 | .include <bsd.subdir.mk> |
cb0f1574 | 1010 |