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