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