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