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