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