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