Avoid duplicated ifname in debug message.
[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.93 2006/11/12 13:20:41 swildner 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 ${MACHINE} == "i386"
406         @echo "You are running a kernel which is reporting an old platform architecture name,"
407         @echo "which will confuse installworld.  Please 'setenv MACHINE pc32' and try again."
408         exit 1
409 .endif
410 .if !defined(NO_SENDMAIL)
411         @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
412         @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
413 .endif
414         @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
415         @pw usershow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
416         @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1)
417         @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
418         @pw groupshow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
419 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
420         @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
421 .endif
422
423 # distributeworld
424 #
425 # Distributes everything compiled by a `buildworld'.
426 #
427 # installworld
428 #
429 # Installs everything compiled by a 'buildworld'.
430 #
431 distributeworld installworld: installcheck
432         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
433
434 #
435 # reinstall
436 #
437 # If you have a build server, you can NFS mount the source and obj directories
438 # and do a 'make reinstall' on the *client* to install new binaries from the
439 # most recent server build.
440 #
441 reinstall:
442         @echo "--------------------------------------------------------------"
443         @echo ">>> Making hierarchy"
444         @echo "--------------------------------------------------------------"
445         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
446         @echo
447         @echo "--------------------------------------------------------------"
448         @echo ">>> Installing everything.."
449         @echo "--------------------------------------------------------------"
450         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
451 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
452         @echo
453         @echo "--------------------------------------------------------------"
454         @echo ">>> Rebuilding man page indices"
455         @echo "--------------------------------------------------------------"
456         cd ${.CURDIR}/share/man; ${MAKE} makedb
457 .endif
458
459 redistribute:
460         @echo "--------------------------------------------------------------"
461         @echo ">>> Distributing everything.."
462         @echo "--------------------------------------------------------------"
463         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
464
465 #
466 # buildkernel, nativekernel, quickkernel, and installkernel
467 #
468 # Which kernels to build and/or install is specified by setting
469 # KERNCONF. If not defined a GENERIC kernel is built/installed.
470 # Only the existing (depending TARGET) config files are used
471 # for building kernels and only the first of these is designated
472 # as the one being installed.
473 #
474 # You can specify INSTALLSTRIPPED=1 if you wish the installed 
475 # kernel and modules to be stripped of its debug info (required
476 # symbols are left intact).  You can specify INSTALLSTRIPPEDMODULES
477 # if you only want to strip the modules of their debug info.  These
478 # only apply if you have DEBUG=-g in your kernel config or make line.
479 #
480 # Note that we have to use TARGET instead of TARGET_ARCH when
481 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
482 # be set to cross-build, we have to make sure TARGET is set
483 # properly.
484
485 .if !defined(KERNCONF) && defined(KERNEL)
486 KERNCONF=       ${KERNEL}
487 KERNWARN=       yes
488 .else
489 KERNCONF?=      GENERIC
490 .endif
491 INSTKERNNAME?=  kernel
492
493 KRNLSRCDIR=     ${.CURDIR}/sys
494 KRNLCONFDIR=    ${KRNLSRCDIR}/config
495 KRNLOBJDIR=     ${OBJTREE}${KRNLSRCDIR}
496 KERNCONFDIR?=   ${KRNLCONFDIR}
497
498 BUILDKERNELS=
499 INSTALLKERNEL=
500 .for _kernel in ${KERNCONF}
501 .if exists(${KERNCONFDIR}/${_kernel})
502 BUILDKERNELS+=  ${_kernel}
503 .if empty(INSTALLKERNEL)
504 INSTALLKERNEL= ${_kernel}
505 .endif
506 .endif
507 .endfor
508
509 # kernel version numbers survive rm -rf
510 #
511 .for _kernel in ${BUILDKERNELS}
512 .if exists(${KRNLOBJDIR}/${_kernel}/version)
513 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
514 .endif
515 .endfor
516
517 #
518 # buildkernel
519 #
520 # Builds all kernels defined by BUILDKERNELS.
521 #
522 bk_tools:
523         @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
524             echo "You must buildworld before buildkernel.  If you wish"; \
525             echo "to build a kernel using native tools, config it manually"; \
526             echo "or use the nativekernel target if you are in a rush"; \
527             exit 1; \
528         fi
529
530 maybe_bk_tools:
531 .for _kernel in ${BUILDKERNELS}
532         @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
533             if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
534                 echo "The kernel was build using buildworld tools which no" ; \
535                 echo "longer appear to exist, quickkernel failed!" ; \
536                 exit 1; \
537             fi; \
538         fi
539 .endfor
540
541 bk_build_list:
542 .if empty(BUILDKERNELS)
543         @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
544         @echo ">>> Did you move your kernel configs from i386/conf to config/?"
545         @false
546 .endif
547
548 bk_kernwarn:
549 .if defined(KERNWARN)
550         @echo "--------------------------------------------------------------"
551         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
552         @echo "--------------------------------------------------------------"
553         @sleep 3
554 .endif
555         @echo
556
557 # The buildkernel target rebuilds the specified kernels from scratch
558 # using the crossbuild tools generated by the last buildworld.  It is
559 # the safest (but also the most time consuming) way to build a new kernel.
560 #
561 buildkernel:    bk_tools bk_build_list bk_kernwarn
562 .for _kernel in ${BUILDKERNELS}
563         @echo "--------------------------------------------------------------"
564         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
565         @echo "--------------------------------------------------------------"
566         @echo "===> ${_kernel}"
567 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
568         rm -rf ${KRNLOBJDIR}/${_kernel}
569 .else
570         @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
571                 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
572                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
573 .endif
574         mkdir -p ${KRNLOBJDIR}
575 .if !defined(NO_KERNELCONFIG)
576         cd ${KRNLCONFDIR}; \
577                 PATH=${STRICTTMPPATH} \
578                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
579                         ${KERNCONFDIR}/${_kernel}
580 .endif
581 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
582         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
583 .endif
584         touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
585         cd ${KRNLOBJDIR}/${_kernel}; \
586             MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
587             ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
588 .if !defined(NO_KERNELDEPEND)
589         cd ${KRNLOBJDIR}/${_kernel}; \
590             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
591 .endif
592         cd ${KRNLOBJDIR}/${_kernel}; \
593             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
594         @echo "--------------------------------------------------------------"
595         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
596         @echo "--------------------------------------------------------------"
597 .endfor
598
599 # The nativekernel target rebuilds the specified kernels from scratch
600 # using the system's standard compiler rather than using the crossbuild
601 # tools generated by the last buildworld.  This is fairly safe if your
602 # system is reasonable up-to-date.
603 #
604 nativekernel:   bk_build_list bk_kernwarn
605 .for _kernel in ${BUILDKERNELS}
606         @echo "--------------------------------------------------------------"
607         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
608         @echo "--------------------------------------------------------------"
609         @echo "===> ${_kernel}"
610 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
611         rm -rf ${KRNLOBJDIR}/${_kernel}
612 .else
613         @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
614                 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
615                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
616 .endif
617         mkdir -p ${KRNLOBJDIR}
618 .if !defined(NO_KERNELCONFIG)
619         cd ${KRNLCONFDIR}; \
620                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
621                         ${KERNCONFDIR}/${_kernel}
622 .endif
623 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
624         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
625 .endif
626         touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
627         cd ${KRNLOBJDIR}/${_kernel}; \
628             MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
629             ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
630 .if !defined(NO_KERNELDEPEND)
631         cd ${KRNLOBJDIR}/${_kernel}; \
632             ${MAKE} KERNEL=${INSTKERNNAME} depend
633 .endif
634         cd ${KRNLOBJDIR}/${_kernel}; \
635             ${MAKE} KERNEL=${INSTKERNNAME} all
636         @echo "--------------------------------------------------------------"
637         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
638         @echo "--------------------------------------------------------------"
639 .endfor
640
641 # The quickkernel target rebuilds the specified kernels as quickly
642 # as possible.  It will use the native tools or the buildworld cross tools
643 # based on whether the kernel was originally generated via buildkernel or
644 # nativekernel.  Config is rerun but the object hierarchy is not rebuilt,
645 # nor is the make depend step run.
646 #
647 quickkernel:    maybe_bk_tools bk_build_list bk_kernwarn
648 .for _kernel in ${BUILDKERNELS}
649         @echo "--------------------------------------------------------------"
650         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
651         @echo "--------------------------------------------------------------"
652         @echo "===> ${_kernel}"
653 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
654 .if !defined(NO_KERNELCONFIG)
655         cd ${KRNLCONFDIR}; \
656                 PATH=${STRICTTMPPATH} \
657                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
658                         ${KERNCONFDIR}/${_kernel}
659 .endif
660         cd ${KRNLOBJDIR}/${_kernel}; \
661             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
662 .else
663 .if !defined(NO_KERNELCONFIG)
664         cd ${KRNLCONFDIR}; \
665             config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
666                 ${KERNCONFDIR}/${_kernel}
667 .endif
668         cd ${KRNLOBJDIR}/${_kernel}; \
669             ${MAKE} KERNEL=${INSTKERNNAME} all
670 .endif
671         @echo "--------------------------------------------------------------"
672         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
673         @echo "--------------------------------------------------------------"
674 .endfor
675
676
677 # installkernel
678 #
679 # Install the kernel defined by INSTALLKERNEL
680 #
681 installkernel reinstallkernel:
682 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
683         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
684             ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
685 .else
686         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
687             ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
688 .endif
689
690 #
691 # update
692 #
693 # Update the source tree, by running sup and/or running cvs to update to the
694 # latest copy.
695 #
696 update:
697 .if defined(SUP_UPDATE)
698         @echo "--------------------------------------------------------------"
699         @echo ">>> Running ${SUP}"
700         @echo "--------------------------------------------------------------"
701 .if defined(SUPFILE)
702         @${SUP} ${SUPFLAGS} ${SUPFILE}
703 .endif
704 .if defined(SUPFILE1)
705         @${SUP} ${SUPFLAGS} ${SUPFILE1}
706 .endif
707 .if defined(SUPFILE2)
708         @${SUP} ${SUPFLAGS} ${SUPFILE2}
709 .endif
710 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
711         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
712 .endif
713 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
714         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
715 .endif
716 .endif
717 .if defined(CVS_UPDATE)
718         @echo "--------------------------------------------------------------"
719         @echo ">>> Updating ${.CURDIR} from cvs repository `cat ${.CURDIR}/CVS/Root`"
720         @echo "--------------------------------------------------------------"
721         @sleep 2
722         cd ${.CURDIR}; cvs -q update -P -d
723 .endif
724
725 #
726 # most
727 #
728 # Build most of the user binaries on the existing system libs and includes.
729 #
730 most:
731         @echo "--------------------------------------------------------------"
732         @echo ">>> Building programs only"
733         @echo "--------------------------------------------------------------"
734 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
735         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ all
736 .endfor
737
738 #
739 # installmost
740 #
741 # Install the binaries built by the 'most' target.  This does not include
742 # libraries or include files.
743 #
744 installmost:
745         @echo "--------------------------------------------------------------"
746         @echo ">>> Installing programs only"
747         @echo "--------------------------------------------------------------"
748 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
749         cd ${.CURDIR}/${_dir};          ${MAKE} DIRPRFX=${_dir}/ install
750 .endfor
751
752 #
753 # ------------------------------------------------------------------------
754 #
755 # From here onwards are utility targets used by the 'make world' and
756 # related targets.  If your 'world' breaks, you may like to try to fix
757 # the problem and manually run the following targets to attempt to
758 # complete the build.  Beware, this is *not* guaranteed to work, you
759 # need to have a pretty good grip on the current state of the system
760 # to attempt to manually finish it.  If in doubt, 'make world' again.
761 #
762
763 # bootstrap-tools: Build all tools required to build all tools.  Note that
764 # order is important in a number of cases and also note that the bootstrap
765 # and build tools stages have access to earlier binaries they themselves
766 # had generated.
767 #
768 # patch:        older patch's do not have -i.  This program must be built
769 #               first so other bootstrap tools that need to apply patches
770 #               can use it.
771 # [x]install:   dependancies on various new install features
772 # rpcgen:       old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
773 #               envs are not compatible with older objformat binaries.
774 #
775 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
776 _strfile=       games/fortune/strfile
777 .endif
778
779 bootstrap-tools:
780         ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
781 .for _tool in ${_strfile} \
782     usr.bin/patch \
783     bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo bin/test \
784     bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
785     bin/hostname bin/kill \
786     usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \
787     usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \
788     usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \
789     usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
790     usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
791     usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
792     usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
793     usr.bin/vi usr.bin/cap_mkdb usr.bin/vgrind usr.bin/true usr.bin/false \
794     usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
795     usr.bin/tail \
796     usr.sbin/chown usr.sbin/mtree usr.sbin/config \
797     usr.sbin/btxld usr.sbin/pwd_mkdb usr.sbin/zic usr.sbin/makewhatis \
798     gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \
799     usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb
800         ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
801                 cd ${.CURDIR}/${_tool}; \
802                 ${MAKE} DIRPRFX=${_tool}/ obj; \
803                 ${MAKE} DIRPRFX=${_tool}/ depend; \
804                 ${MAKE} DIRPRFX=${_tool}/ all; \
805                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
806 .endfor
807         touch ${BTOOLSDEST}/.bootstrap_done
808
809 # build-tools: Build special purpose build tools.
810 #
811 # XXX we may be able to remove or consolidate this into bootstrap-tools
812 # now that we have the native helper (.nx/.no) infrastructure.
813 #
814 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
815 _games= games/adventure games/hack games/phantasia
816 .endif
817
818 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
819 _share= share/syscons/scrnmaps
820 .endif
821
822 _gcc34_cross= gnu/usr.bin/cc34
823 _gcc34_tools= gnu/usr.bin/cc34/cc_prep gnu/usr.bin/cc34/cc_tools
824 .if defined(WANT_GCC40)
825 _gcc40_cross= gnu/usr.bin/cc40
826 _gcc40_tools= gnu/usr.bin/cc40/cc_prep gnu/usr.bin/cc40/cc_tools
827 .endif
828 .if defined(WANT_GCC41)
829 _gcc41_cross= gnu/usr.bin/cc41
830 _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools
831 .endif
832 _binutils= gnu/usr.bin/binutils215
833
834 .if !defined(NO_FORTRAN)
835 _fortran= gnu/usr.bin/cc34/f771
836 .endif
837
838 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
839     !defined(NO_CRYPT) && defined(WANT_KERBEROS)
840 _libkrb5= kerberos5/tools kerberos5/lib/libroken kerberos5/lib/libvers \
841     kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
842 .endif
843
844 build-tools:
845 .for _tool in ${_gcc34_tools} ${_gcc40_tools} ${_gcc41_tools} ${_fortran} ${_libkrb5} ${_share}
846         ${ECHODIR} "===> ${_tool} (build-tools)"; \
847                 cd ${.CURDIR}/${_tool}; \
848                 ${MAKE} DIRPRFX=${_tool}/ obj; \
849                 ${MAKE} DIRPRFX=${_tool}/ depend; \
850                 ${MAKE} DIRPRFX=${_tool}/ all; \
851                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
852 .endfor
853         touch ${BTOOLSDEST}/.build_done
854
855 #
856 # cross-tools: Build cross-building tools
857 #
858 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
859 _btxld= usr.sbin/btxld
860 .endif
861
862 cross-tools:
863 .for _tool in ${_btxld} ${_binutils} \
864               usr.bin/objformat usr.sbin/crunch/crunchide \
865               ${_gcc34_cross} ${_gcc40_cross} ${_gcc41_cross}
866         ${ECHODIR} "===> ${_tool} (cross-tools)"; \
867                 cd ${.CURDIR}/${_tool}; \
868                 ${MAKE} DIRPRFX=${_tool}/ obj; \
869                 ${MAKE} DIRPRFX=${_tool}/ depend; \
870                 ${MAKE} DIRPRFX=${_tool}/ all; \
871                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
872 .endfor
873         touch ${CTOOLSDEST}/.cross_done
874
875 #
876 # hierarchy - ensure that all the needed directories are present
877 #
878 hierarchy:
879         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
880
881 #
882 # libraries - build all libraries, and install them under ${DESTDIR}.
883 #
884 # The list of libraries with dependents (${_prebuild_libs}) and their
885 # interdependencies (__L) are built automatically by the
886 # ${.CURDIR}/tools/make_libdeps.sh script.
887 #
888 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
889 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
890 #
891 libraries:
892         cd ${.CURDIR}; \
893             HOST_CCVER=${HOST_CCVER} CCVER=gcc34 \
894                 ${MAKE} -f Makefile.inc1 _startup_libs34;
895 .if defined(WANT_GCC40)
896         cd ${.CURDIR}; \
897             HOST_CCVER=${HOST_CCVER} CCVER=gcc40 \
898                 ${MAKE} -f Makefile.inc1 _startup_libs40;
899 .endif
900 .if defined(WANT_GCC41)
901         cd ${.CURDIR}; \
902             HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \
903                 ${MAKE} -f Makefile.inc1 _startup_libs41;
904 .endif
905         cd ${.CURDIR}; \
906             ${MAKE} -f Makefile.inc1 _startup_libs; \
907             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
908             ${MAKE} -f Makefile.inc1 _generic_libs;
909         touch ${WORLDDEST}/.libraries_done
910
911 # These dependencies are not automatically generated:
912 #
913 # gnu/lib/${CCVER}/libgcc and lib/csu must be built before all
914 # shared libraries for ELF.  The target for _startup_libs34 is
915 # specifically built using gcc34.  Same goes for _startup_libs40.
916 #
917 _startup_libs34=        gnu/lib/gcc34/libgcc
918 _startup_libs40=        gnu/lib/gcc40/libgcc
919 _startup_libs41=        gnu/lib/gcc41/libgcc
920 _startup_libs=  lib/csu/${MACHINE_ARCH}
921 _startup_libs+= lib/csu/common lib/libc lib/libc_rtld
922
923 _prebuild_libs= lib/libarchive
924 _prebuild_libs+=        lib/libutil
925
926 _generic_libs=  gnu/lib
927
928 .if !defined(NO_CRYPT) && defined(WANT_KERBEROS)
929 _prebuild_libs+=        kerberos5/tools
930 _prebuild_libs+=        kerberos5/lib/libasn1
931 _prebuild_libs+=        kerberos5/lib/libgssapi
932 _prebuild_libs+=        kerberos5/lib/libkrb5
933 _prebuild_libs+=        kerberos5/lib/libroken
934 _generic_libs+= kerberos5/lib
935 .endif
936
937 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
938                 lib/libncurses/libncurses lib/libopie lib/libradius \
939                 lib/libskey lib/libtacplus lib/libz lib/libm lib/libpam
940
941 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
942 lib/libskey__L: lib/libcrypt__L lib/libmd__L
943
944 _generic_libs+= lib
945
946 .if !defined(NO_CRYPT)
947 .if !defined(NO_OPENSSL)
948 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
949 .if !defined(NO_OPENSSH)
950 _prebuild_libs+=        secure/lib/libssh
951 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
952 .endif
953 .endif
954 _generic_libs+= secure/lib
955 .endif
956
957 _generic_libs+= usr.bin/lex/lib
958
959 .for _lib in ${_startup_libs34} ${_startup_libs40} ${_startup_libs41} \
960                 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
961 ${_lib}__L: .PHONY
962 .if exists(${.CURDIR}/${_lib})
963         ${ECHODIR} "===> ${_lib}"; \
964                 cd ${.CURDIR}/${_lib}; \
965                 ${MAKE} DIRPRFX=${_lib}/ depend; \
966                 ${MAKE} DIRPRFX=${_lib}/ all; \
967                 ${MAKE} DIRPRFX=${_lib}/ install
968 .endif
969 .endfor
970
971 _startup_libs: ${_startup_libs:S/$/__L/}
972 _startup_libs34: ${_startup_libs34:S/$/__L/}
973 _startup_libs40: ${_startup_libs40:S/$/__L/}
974 _startup_libs41: ${_startup_libs41:S/$/__L/}
975 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
976 _generic_libs: ${_generic_libs:S/$/__L/}
977
978 # library targets must be ordered because there are inter-library
979 # races (e.g. generation of tconfig.h)
980 #
981 .ORDER: ${_startup_libs34:S/$/__L/}
982 .ORDER: ${_startup_libs40:S/$/__L/}
983 .ORDER: ${_startup_libs41:S/$/__L/}
984 .ORDER: ${_startup_libs:S/$/__L/}
985 .ORDER: ${_prebuild_libs:S/$/__L/}
986 .ORDER: ${_generic_libs:S/$/__L/}
987
988 .for __target in clean cleandepend cleandir obj depend includes
989 .for entry in ${SUBDIR}
990 ${entry}.${__target}__D: .PHONY
991         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
992                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
993                 edir=${entry}.${MACHINE_ARCH}; \
994                 cd ${.CURDIR}/$${edir}; \
995         else \
996                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
997                 edir=${entry}; \
998                 cd ${.CURDIR}/$${edir}; \
999         fi; \
1000         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1001 .endfor
1002 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1003 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
1004 .endfor
1005 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1006
1007 # The wmake target is used by /usr/bin/wmake to run make in a
1008 # world build environment.
1009 #
1010 wmake:
1011         @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}'
1012
1013 wmakeenv:
1014         @echo '${WMAKEENV} /bin/sh'
1015
1016 bmake:
1017         @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}'
1018
1019 bmakeenv:
1020         @echo '${BMAKEENV} /bin/sh'
1021
1022 tmake:
1023         @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}'
1024
1025 tmakeenv:
1026         @echo '${TMAKEENV} /bin/sh'
1027
1028 .include <bsd.subdir.mk>
1029