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