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