]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.inc1
This commit was generated by cvs2svn to compensate for changes in r129059,
[FreeBSD/FreeBSD.git] / Makefile.inc1
1 #
2 # $FreeBSD$
3 #
4 # Make command line options:
5 #       -DNO_DYNAMICROOT do not link /bin and /sbin dynamically
6 #       -DNO_KERBEROS Do not build Heimdal (Kerberos 5)
7 #       -DNO_RESCUE do not build rescue binaries
8 #       -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
9 #       -DNOCLEAN do not clean at all
10 #       -DNOCRYPT will prevent building of crypt versions
11 #       -DNOMAN do not build the manual pages
12 #       -DNOPROFILE do not build profiled libraries
13 #       -DNOGAMES do not go into games subdir
14 #       -DNOSHARE do not go into share subdir
15 #       -DNOINFO do not make or install info files
16 #       -DNOLIBC_R do not build libc_r.
17 #       -DNO_FORTRAN do not build g77 and related libraries.
18 #       -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel
19 #       -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel
20 #       -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel
21 #       -DNO_PORTSUPDATE do not update ports in ${MAKE} update
22 #       -DNO_DOCUPDATE do not update doc in ${MAKE} update
23 #       LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
24 #       TARGET_ARCH="arch" to crossbuild world to a different arch
25
26 #
27 # The intended user-driven targets are:
28 # buildworld  - rebuild *everything*, including glue to help do upgrades
29 # installworld- install everything built by "buildworld"
30 # update      - convenient way to update your source tree (eg: sup/cvs)
31 #
32 # Standard targets (not defined here) are documented in the makefiles in
33 # /usr/share/mk.  These include:
34 #               obj depend all install clean cleandepend cleanobj
35
36 # We must do share/info early so that installation of info `dir'
37 # entries works correctly.  Do it first since it is less likely to
38 # grow dependencies on include and lib than vice versa.
39 #
40 # We must do lib and libexec before bin, because if installworld
41 # installs a new /bin/sh, the 'make' command will *immediately*
42 # use that new version.  And the new (dynamically-linked) /bin/sh
43 # will expect to find appropriate libraries in /lib and /libexec.
44 #
45 # We must do etc last for install/distribute to work.
46 #
47 SUBDIR= share/info include lib libexec bin
48 .if !defined(NOGAMES)
49 SUBDIR+=games
50 .endif
51 SUBDIR+=gnu
52 .if !defined(NO_KERBEROS) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
53 SUBDIR+=kerberos5
54 .endif
55 .if !defined(NO_RESCUE)
56 SUBDIR+=rescue
57 .endif
58 SUBDIR+=sbin
59 .if !defined(NOCRYPT)
60 SUBDIR+=secure
61 .endif
62 .if !defined(NOSHARE)
63 SUBDIR+=share
64 .endif
65 SUBDIR+=sys usr.bin usr.sbin etc
66
67 # These are last, since it is nice to at least get the base system
68 # rebuilt before you do them.
69 .for _DIR in ${LOCAL_DIRS}
70 .if exists(${.CURDIR}/${_DIR}/Makefile)
71 SUBDIR+= ${_DIR}
72 .endif
73 .endfor
74
75 .if defined(SUBDIR_OVERRIDE)
76 SUBDIR=         ${SUBDIR_OVERRIDE}
77 .endif
78
79 .if defined(NOCLEANDIR)
80 CLEANDIR=       clean cleandepend
81 .else
82 CLEANDIR=       cleandir
83 .endif
84
85 CVS?=           cvs
86 SUP?=           /usr/local/bin/cvsup
87 SUPFLAGS?=      -g -L 2 -P -
88 .if defined(SUPHOST)
89 SUPFLAGS+=      -h ${SUPHOST}
90 .endif
91
92 MAKEOBJDIRPREFIX?=      /usr/obj
93 .if !defined(OSRELDATE)
94 .if exists(/usr/include/osreldate.h)
95 OSRELDATE!=     awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \
96                 /usr/include/osreldate.h
97 .else
98 OSRELDATE=      0
99 .endif
100 .endif
101 TARGET_ARCH?=   ${MACHINE_ARCH}
102 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
103 TARGET?=        ${MACHINE}
104 TARGET_CPUTYPE?=${CPUTYPE}
105 .else
106 TARGET?=        ${TARGET_ARCH}
107 TARGET_CPUTYPE?=
108 .endif
109 .if !empty(TARGET_CPUTYPE)
110 _TARGET_CPUTYPE=${TARGET_CPUTYPE}
111 .else
112 _TARGET_CPUTYPE=dummy
113 .endif
114 _CPUTYPE!=      ${MAKE} -f /dev/null -m ${.CURDIR}/share/mk \
115                 CPUTYPE=${_TARGET_CPUTYPE} -V CPUTYPE
116 .if ${_CPUTYPE} != ${_TARGET_CPUTYPE}
117 .error CPUTYPE global should be set with ?=.
118 .endif
119 .if make(buildworld)
120 BUILD_ARCH!=    sysctl -n hw.machine_arch
121 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
122 .error To cross-build, set TARGET_ARCH.
123 .endif
124 .endif
125 .if ${MACHINE} == ${TARGET}
126 OBJTREE=        ${MAKEOBJDIRPREFIX}
127 .else
128 OBJTREE=        ${MAKEOBJDIRPREFIX}/${TARGET}
129 .endif
130 WORLDTMP=       ${OBJTREE}${.CURDIR}/${MACHINE_ARCH}
131 # /usr/games added for fortune which depend on strfile
132 BPATH=          ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games
133 XPATH=          ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
134 STRICTTMPPATH=  ${BPATH}:${XPATH}
135 TMPPATH=        ${STRICTTMPPATH}:${PATH}
136
137 INSTALLTMP!=    /usr/bin/mktemp -d -u -t install
138
139 #
140 # Building a world goes through the following stages
141 #
142 # 1. legacy stage [BMAKE]
143 #       This stage is responsible for creating compatibility
144 #       shims that are needed by the bootstrap-tools,
145 #       build-tools and cross-tools stages.
146 # 1. bootstrap-tools stage [BMAKE]
147 #       This stage is responsible for creating programs that
148 #       are needed for backward compatibility reasons. They
149 #       are not built as cross-tools.
150 # 2. build-tools stage [TMAKE]
151 #       This stage is responsible for creating the object
152 #       tree and building any tools that are needed during
153 #       the build process.
154 # 3. cross-tools stage [XMAKE]
155 #       This stage is responsible for creating any tools that
156 #       are needed for cross-builds. A cross-compiler is one
157 #       of them.
158 # 4. world stage [WMAKE]
159 #       This stage actually builds the world.
160 # 5. install stage (optional) [IMAKE]
161 #       This stage installs a previously built world.
162 #
163
164 BOOTSTRAPPING?= 0
165
166 # Common environment for world related stages
167 CROSSENV=       MAKEOBJDIRPREFIX=${OBJTREE} \
168                 MACHINE_ARCH=${TARGET_ARCH} \
169                 MACHINE=${TARGET} \
170                 CPUTYPE=${TARGET_CPUTYPE} \
171                 GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \
172                 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \
173                 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac
174
175 # bootstrap-tools stage
176 BMAKEENV=       DESTDIR= \
177                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
178                 PATH=${BPATH}:${PATH} \
179                 WORLDTMP=${WORLDTMP} \
180                 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}"
181 BMAKE=          MAKEOBJDIRPREFIX=${WORLDTMP} \
182                 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
183                 BOOTSTRAPPING=${OSRELDATE} \
184                 -DNOHTML -DNOINFO -DNOLINT -DNOMAN -DNOPIC -DNOPROFILE \
185                 -DNOSHARED -DNO_CPU_CFLAGS -DNO_WARNS
186
187 # build-tools stage
188 TMAKE=          MAKEOBJDIRPREFIX=${OBJTREE} \
189                 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \
190                 BOOTSTRAPPING=${OSRELDATE} -DNOLINT -DNO_CPU_CFLAGS -DNO_WARNS
191
192 # cross-tools stage
193 XMAKE=          TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB
194
195 # world stage
196 WMAKEENV=       ${CROSSENV} \
197                 DESTDIR=${WORLDTMP} \
198                 _SHLIBDIRPREFIX=${WORLDTMP} \
199                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
200                 PATH=${TMPPATH}
201 WMAKE=          ${WMAKEENV} ${MAKE} -f Makefile.inc1
202
203 # install stage
204 IMAKEENV=       ${CROSSENV} \
205                 PATH=${STRICTTMPPATH}:${INSTALLTMP}
206 IMAKE=          ${IMAKEENV} ${MAKE} -f Makefile.inc1
207
208 # kernel stage
209 KMAKEENV=       ${WMAKEENV}
210
211 #
212 # buildworld
213 #
214 # Attempt to rebuild the entire system, with reasonable chance of
215 # success, regardless of how old your existing system is.
216 #
217 _worldtmp:
218 .if ${.CURDIR:C/[^,]//g} != ""
219 #       The m4 build of sendmail files doesn't like it if ',' is used
220 #       anywhere in the path of it's files.
221         @echo
222         @echo "*** Error: path to source tree contains a comma ','"
223         @echo
224         false
225 .endif
226         @echo
227         @echo "--------------------------------------------------------------"
228         @echo ">>> Rebuilding the temporary build tree"
229         @echo "--------------------------------------------------------------"
230 .if !defined(NOCLEAN)
231         rm -rf ${WORLDTMP}
232 .else
233         rm -rf ${WORLDTMP}/legacy/usr/include
234         # XXX - These two can depend on any header file.
235         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
236         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
237 .endif
238 .for _dir in \
239     usr/bin usr/games usr/include/c++/3.3 usr/include/sys usr/lib \
240     usr/libexec usr/sbin usr/share/dict \
241     usr/share/groff_font/devX100 \
242     usr/share/groff_font/devX100-12 \
243     usr/share/groff_font/devX75 \
244     usr/share/groff_font/devX75-12 \
245     usr/share/groff_font/devascii \
246     usr/share/groff_font/devcp1047 \
247     usr/share/groff_font/devdvi \
248     usr/share/groff_font/devhtml \
249     usr/share/groff_font/devkoi8-r \
250     usr/share/groff_font/devlatin1 \
251     usr/share/groff_font/devlbp \
252     usr/share/groff_font/devlj4 \
253     usr/share/groff_font/devps \
254     usr/share/groff_font/devutf8 \
255     usr/share/tmac/mdoc usr/share/tmac/mm
256         mkdir -p ${WORLDTMP}/legacy/${_dir}
257 .endfor
258 .for _dir in \
259     lib usr/bin usr/include usr/lib/compat/aout usr/libdata/ldscripts \
260     usr/libexec usr/sbin usr/share/misc \
261     usr/share/snmp/defs usr/share/snmp/mibs
262         mkdir -p ${WORLDTMP}/${_dir}
263 .endfor
264         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
265             -p ${WORLDTMP}/usr/include >/dev/null
266         ln -sf ${.CURDIR}/sys ${WORLDTMP}
267 _legacy:
268         @echo
269         @echo "--------------------------------------------------------------"
270         @echo ">>> stage 1.1: legacy release compatibility shims"
271         @echo "--------------------------------------------------------------"
272         cd ${.CURDIR}; ${BMAKE} legacy
273 _bootstrap-tools:
274         @echo
275         @echo "--------------------------------------------------------------"
276         @echo ">>> stage 1.2: bootstrap tools"
277         @echo "--------------------------------------------------------------"
278         cd ${.CURDIR}; ${BMAKE} bootstrap-tools
279 _cleanobj:
280 .if !defined(NOCLEAN)
281         @echo
282         @echo "--------------------------------------------------------------"
283         @echo ">>> stage 2.1: cleaning up the object tree"
284         @echo "--------------------------------------------------------------"
285         cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
286 .endif
287 _obj:
288         @echo
289         @echo "--------------------------------------------------------------"
290         @echo ">>> stage 2.2: rebuilding the object tree"
291         @echo "--------------------------------------------------------------"
292         cd ${.CURDIR}; ${WMAKE} par-obj
293 _build-tools:
294         @echo
295         @echo "--------------------------------------------------------------"
296         @echo ">>> stage 2.3: build tools"
297         @echo "--------------------------------------------------------------"
298         cd ${.CURDIR}; ${TMAKE} build-tools
299 _cross-tools:
300         @echo
301         @echo "--------------------------------------------------------------"
302         @echo ">>> stage 3: cross tools"
303         @echo "--------------------------------------------------------------"
304         cd ${.CURDIR}; ${XMAKE} cross-tools
305 _includes:
306         @echo
307         @echo "--------------------------------------------------------------"
308         @echo ">>> stage 4.1: building includes"
309         @echo "--------------------------------------------------------------"
310         cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
311 _libraries:
312         @echo
313         @echo "--------------------------------------------------------------"
314         @echo ">>> stage 4.2: building libraries"
315         @echo "--------------------------------------------------------------"
316         cd ${.CURDIR}; \
317             ${WMAKE} -DNOFSCHG -DNOHTML -DNOINFO -DNOLINT -DNOMAN -DNOPROFILE \
318             libraries
319 _depend:
320         @echo
321         @echo "--------------------------------------------------------------"
322         @echo ">>> stage 4.3: make dependencies"
323         @echo "--------------------------------------------------------------"
324         cd ${.CURDIR}; ${WMAKE} par-depend
325 everything:
326         @echo
327         @echo "--------------------------------------------------------------"
328         @echo ">>> stage 4.4: building everything"
329         @echo "--------------------------------------------------------------"
330         cd ${.CURDIR}; ${WMAKE} par-all
331
332
333 WMAKE_TGTS=
334 .if !defined(SUBDIR_OVERRIDE)
335 WMAKE_TGTS+=    _worldtmp _legacy _bootstrap-tools
336 .endif
337 WMAKE_TGTS+=    _cleanobj _obj _build-tools
338 .if !defined(SUBDIR_OVERRIDE)
339 WMAKE_TGTS+=    _cross-tools
340 .endif
341 WMAKE_TGTS+=    _includes _libraries _depend everything
342
343 buildworld: ${WMAKE_TGTS}
344 .ORDER: ${WMAKE_TGTS}
345
346 TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything}
347 toolchain: ${TOOLCHAIN_TGTS}
348 kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries}
349
350 #
351 # Use this to add checks to installworld/installkernel targets.
352 #
353 SPECIAL_INSTALLCHECKS=
354
355 #
356 # The following install-time check will see if the installation will
357 # change the type used for time_t, and if it will, the target makes
358 # sure that the user is expecting to make that change.
359 #
360 .if ${TARGET_ARCH} == "sparc64"
361 SPECIAL_INSTALLCHECKS+=sparc64_installcheck
362
363 CUR_TIMET!=     grep __time_t /usr/include/machine/_types.h | awk '{print $$2}'
364 SRC_TIMET!=     grep __time_t ${.CURDIR}/sys/sparc64/include/_types.h | \
365                 awk '{print $$2}'
366 NEWSPARC_TIMETYPE?=${CUR_TIMET}
367 THISHOST!=      hostname -s
368 .if empty(THISHOST)
369 THISHOST="name not set yet"
370 .endif
371
372 sparc64_installcheck:
373 .if ${CUR_TIMET} != ${SRC_TIMET}
374         @echo
375 .if ${NEWSPARC_TIMETYPE} != ${SRC_TIMET}
376         @echo "***  ERROR: This target would change the type used for time_t!"
377 .else
378         @echo "* Note: This installation changes the type used for time_t."
379 .endif
380         @echo "* "
381         @echo "* This host (${THISHOST}) has time_t defined as ${CUR_TIMET},"
382         @echo "* and this installation would change that to type ${SRC_TIMET}."
383 .if ${NEWSPARC_TIMETYPE} != ${SRC_TIMET}
384         @echo "* "
385         @echo "* If that is *NOT* what you wanted, then you need to change the"
386         @echo "* typedef of __time_t in ${.CURDIR}/sys/sparc64/include/_types.h"
387         @echo "* from '${SRC_TIMET}' to '${CUR_TIMET}'.  After that you *MUST*"
388         @echo "* do a complete cleanworld, buildworld, buildkernel before you"
389         @echo "* retry the 'make' command.  Also read /usr/src/UPDATING.64BTT."
390         @echo "* "
391         @echo "* If that *is* what you want, then enter the commands:"
392         @echo "      NEWSPARC_TIMETYPE=${SRC_TIMET}"
393         @echo "      export NEWSPARC_TIMETYPE"
394         @echo "* and repeat your 'make' command."
395         @echo
396         false
397 .endif
398         @echo
399 .elif ${NEWSPARC_TIMETYPE} != ${SRC_TIMET}
400         @echo
401         @echo "***  ERROR: NEWSPARC_TIMETYPE is set to '${NEWSPARC_TIMETYPE}'"
402         @echo "***         but ${.CURDIR}/sys/sparc64/include/_types.h"
403         @echo "***         has __time_t defined as '${SRC_TIMET}'."
404         false
405 .else
406         @# in sparc64_installcheck, all TIMETYPEs == '${CUR_TIMET}'
407 .endif
408 .endif
409
410 #
411 # installcheck
412 #
413 # Checks to be sure system is ready for installworld
414 #
415 CHECK_UIDS=
416 CHECK_GIDS=
417 .if !defined(NO_SENDMAIL)
418 CHECK_UIDS+=    smmsp
419 CHECK_GIDS+=    smmsp
420 .endif
421 .if !defined(NO_PF)
422 CHECK_UIDS+=    proxy
423 CHECK_GIDS+=    proxy authpf
424 .endif
425 installcheck: ${SPECIAL_INSTALLCHECKS}
426 .for uid in ${CHECK_UIDS}
427         @if ! `id -u ${uid} >/dev/null 2>&1`; then \
428                 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \
429                 false; \
430         fi
431 .endfor
432 .for gid in ${CHECK_GIDS}
433         @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \
434                 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \
435                 false; \
436         fi
437 .endfor
438
439 #
440 # distributeworld
441 #
442 # Distributes everything compiled by a `buildworld'.
443 #
444 # installworld
445 #
446 # Installs everything compiled by a 'buildworld'.
447 #
448 distributeworld installworld: installcheck
449         mkdir -p ${INSTALLTMP}
450         for prog in [ awk cap_mkdb cat chflags chmod chown \
451             date echo egrep find grep \
452             ln make mkdir mtree mv pwd_mkdb rm sed sh sysctl \
453             test true uname wc zic; do \
454                 cp `which $$prog` ${INSTALLTMP}; \
455         done
456         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
457         rm -rf ${INSTALLTMP}
458
459 #
460 # reinstall
461 #
462 # If you have a build server, you can NFS mount the source and obj directories
463 # and do a 'make reinstall' on the *client* to install new binaries from the
464 # most recent server build.
465 #
466 reinstall: ${SPECIAL_INSTALLCHECKS}
467         @echo "--------------------------------------------------------------"
468         @echo ">>> Making hierarchy"
469         @echo "--------------------------------------------------------------"
470         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
471         @echo
472         @echo "--------------------------------------------------------------"
473         @echo ">>> Installing everything"
474         @echo "--------------------------------------------------------------"
475         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
476
477 redistribute:
478         @echo "--------------------------------------------------------------"
479         @echo ">>> Distributing everything"
480         @echo "--------------------------------------------------------------"
481         cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
482
483 #
484 # buildkernel and installkernel
485 #
486 # Which kernels to build and/or install is specified by setting
487 # KERNCONF. If not defined a GENERIC kernel is built/installed.
488 # Only the existing (depending TARGET) config files are used
489 # for building kernels and only the first of these is designated
490 # as the one being installed.
491 #
492 # Note that we have to use TARGET instead of TARGET_ARCH when
493 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
494 # be set to cross-build, we have to make sure TARGET is set
495 # properly.
496
497 .if !defined(KERNCONF) && defined(KERNEL)
498 KERNCONF=       ${KERNEL}
499 KERNWARN=       yes
500 .else
501 KERNCONF?=      GENERIC
502 .endif
503 INSTKERNNAME?=  kernel
504
505 KERNSRCDIR?=    ${.CURDIR}/sys
506 KRNLCONFDIR=    ${KERNSRCDIR}/${TARGET}/conf
507 KRNLOBJDIR=     ${OBJTREE}${KERNSRCDIR}
508 KERNCONFDIR?=   ${KRNLCONFDIR}
509
510 BUILDKERNELS=
511 INSTALLKERNEL=
512 .for _kernel in ${KERNCONF}
513 .if exists(${KERNCONFDIR}/${_kernel})
514 BUILDKERNELS+=  ${_kernel}
515 .if empty(INSTALLKERNEL)
516 INSTALLKERNEL= ${_kernel}
517 .endif
518 .endif
519 .endfor
520
521 #
522 # buildkernel
523 #
524 # Builds all kernels defined by BUILDKERNELS.
525 #
526 buildkernel:
527 .if empty(BUILDKERNELS)
528         @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF}).";
529         false
530 .endif
531 .if defined(KERNWARN)
532         @echo "--------------------------------------------------------------"
533         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
534         @echo "--------------------------------------------------------------"
535         @sleep 3
536 .endif
537         @echo
538 .for _kernel in ${BUILDKERNELS}
539         @echo "--------------------------------------------------------------"
540         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
541         @echo "--------------------------------------------------------------"
542         @echo "===> ${_kernel}"
543         mkdir -p ${KRNLOBJDIR}
544 .if !defined(NO_KERNELCONFIG)
545         @echo
546         @echo "--------------------------------------------------------------"
547         @echo ">>> stage 1: configuring the kernel"
548         @echo "--------------------------------------------------------------"
549         cd ${KRNLCONFDIR}; \
550                 PATH=${TMPPATH} \
551                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
552                         ${KERNCONFDIR}/${_kernel}
553 .endif
554 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
555         @echo
556         @echo "--------------------------------------------------------------"
557         @echo ">>> stage 2.1: cleaning up the object tree"
558         @echo "--------------------------------------------------------------"
559         cd ${KRNLOBJDIR}/${_kernel}; \
560             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} ${CLEANDIR}
561 .endif
562         @echo
563         @echo "--------------------------------------------------------------"
564         @echo ">>> stage 2.2: rebuilding the object tree"
565         @echo "--------------------------------------------------------------"
566         cd ${KRNLOBJDIR}/${_kernel}; \
567             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} obj
568         @echo
569         @echo "--------------------------------------------------------------"
570         @echo ">>> stage 2.3: build tools"
571         @echo "--------------------------------------------------------------"
572         cd ${KRNLOBJDIR}/${_kernel}; \
573             MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \
574             ${MAKE} -DNO_CPU_CFLAGS -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile
575 # XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case.
576 .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules)
577 .for target in obj depend all
578         cd ${.CURDIR}/sys/modules/aic7xxx/aicasm; \
579             MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \
580             ${MAKE} -DNO_CPU_CFLAGS ${target}
581 .endfor
582 .endif
583 .if !defined(NO_KERNELDEPEND)
584         @echo
585         @echo "--------------------------------------------------------------"
586         @echo ">>> stage 3.1: making dependencies"
587         @echo "--------------------------------------------------------------"
588         cd ${KRNLOBJDIR}/${_kernel}; \
589             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend -DNO_MODULES_OBJ
590 .endif
591         @echo
592         @echo "--------------------------------------------------------------"
593         @echo ">>> stage 3.2: building everything"
594         @echo "--------------------------------------------------------------"
595         cd ${KRNLOBJDIR}/${_kernel}; \
596             ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all -DNO_MODULES_OBJ
597         @echo "--------------------------------------------------------------"
598         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
599         @echo "--------------------------------------------------------------"
600 .endfor
601
602 #
603 # installkernel, etc.
604 #
605 # Install the kernel defined by INSTALLKERNEL
606 #
607 installkernel installkernel.debug \
608 reinstallkernel reinstallkernel.debug: ${SPECIAL_INSTALLCHECKS}
609 .if empty(INSTALLKERNEL)
610         @echo "ERROR: No kernel \"${KERNCONF}\" to install."
611         false
612 .endif
613         @echo "--------------------------------------------------------------"
614         @echo ">>> Making hierarchy"
615         @echo "--------------------------------------------------------------"
616         cd ${.CURDIR}; \
617             ${CROSSENV} PATH=${TMPPATH} ${MAKE} -f Makefile.inc1 hierarchy
618         @echo
619         @echo "--------------------------------------------------------------"
620         @echo ">>> Installing kernel"
621         @echo "--------------------------------------------------------------"
622         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
623             ${CROSSENV} PATH=${TMPPATH} \
624             ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//}
625
626 #
627 # update
628 #
629 # Update the source tree, by running sup and/or running cvs to update to the
630 # latest copy.
631 #
632 update:
633 .if defined(SUP_UPDATE)
634         @echo "--------------------------------------------------------------"
635         @echo ">>> Running ${SUP}"
636         @echo "--------------------------------------------------------------"
637 .if defined(SUPFILE)
638         @${SUP} ${SUPFLAGS} ${SUPFILE}
639 .endif
640 .if defined(SUPFILE1)
641         @${SUP} ${SUPFLAGS} ${SUPFILE1}
642 .endif
643 .if defined(SUPFILE2)
644         @${SUP} ${SUPFLAGS} ${SUPFILE2}
645 .endif
646 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
647         @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
648 .endif
649 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
650         @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
651 .endif
652 .endif
653 .if defined(CVS_UPDATE)
654         @echo "--------------------------------------------------------------"
655         @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
656         @echo "--------------------------------------------------------------"
657         cd ${.CURDIR}; ${CVS} -R -q update -A -P -d
658 .endif
659
660 #
661 # ------------------------------------------------------------------------
662 #
663 # From here onwards are utility targets used by the 'make world' and
664 # related targets.  If your 'world' breaks, you may like to try to fix
665 # the problem and manually run the following targets to attempt to
666 # complete the build.  Beware, this is *not* guaranteed to work, you
667 # need to have a pretty good grip on the current state of the system
668 # to attempt to manually finish it.  If in doubt, 'make world' again.
669 #
670
671 #
672 # legacy: Build compatibility shims for the next three targets
673 #
674 legacy:
675 .for _tool in tools/build
676         @${ECHODIR} "===> ${_tool}"; \
677             cd ${.CURDIR}/${_tool}; \
678             ${MAKE} DIRPRFX=${_tool}/ obj; \
679             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \
680             ${MAKE} DIRPRFX=${_tool}/ depend; \
681             ${MAKE} DIRPRFX=${_tool}/ all; \
682             ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
683 .endfor
684
685 #
686 # bootstrap-tools: Build tools needed for compatibility
687 #
688 .if !defined(NOGAMES)
689 _strfile=       games/fortune/strfile
690 .endif
691
692 .if !defined(NO_CXX)
693 _gperf= gnu/usr.bin/gperf
694 .if ${BOOTSTRAPPING} < 500113
695 _groff=         gnu/usr.bin/groff
696 .else
697 _groff=         gnu/usr.bin/groff/tmac
698 .endif
699 .endif
700
701 .if ${BOOTSTRAPPING} < 502102
702 _lex=           usr.bin/lex
703 .endif
704
705 .if ${BOOTSTRAPPING} < 450005 || \
706     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500034
707 _uudecode=      usr.bin/uudecode
708 .endif
709
710 .if ${BOOTSTRAPPING} < 430002 || \
711     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500019
712 _xargs=         usr.bin/xargs
713 .endif
714
715 .if ${BOOTSTRAPPING} < 430002 || \
716     ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500018
717 _yacc=          usr.bin/yacc
718 .endif
719
720 .if !defined(NO_RESCUE) && \
721     ${BOOTSTRAPPING} < 501100
722 _crunchgen=     usr.sbin/crunch/crunchgen
723 .endif
724
725 .if ${BOOTSTRAPPING} < 501114
726 _gensnmptree=   usr.sbin/bsnmpd/gensnmptree
727 .endif
728
729 .if ${BOOTSTRAPPING} < 500019
730 _kbdcontrol=    usr.sbin/kbdcontrol
731 .endif
732
733 bootstrap-tools:
734 .for _tool in \
735     ${_strfile} \
736     ${_gperf} \
737     ${_groff} \
738     gnu/usr.bin/texinfo \
739     usr.bin/colldef \
740     ${_lex} \
741     usr.bin/makewhatis \
742     usr.bin/rpcgen \
743     ${_uudecode} \
744     ${_xargs} \
745     usr.bin/xinstall \
746     ${_yacc} \
747     usr.sbin/config \
748     ${_crunchgen} \
749     ${_gensnmptree} \
750     ${_kbdcontrol}
751         @${ECHODIR} "===> ${_tool}"; \
752                 cd ${.CURDIR}/${_tool}; \
753                 ${MAKE} DIRPRFX=${_tool}/ obj; \
754                 ${MAKE} DIRPRFX=${_tool}/ depend; \
755                 ${MAKE} DIRPRFX=${_tool}/ all; \
756                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install
757 .endfor
758
759 #
760 # build-tools: Build special purpose build tools
761 #
762 .if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules)
763 _aicasm= sys/modules/aic7xxx/aicasm
764 .endif
765
766 .if !defined(NOSHARE)
767 _share= share/syscons/scrnmaps
768 .endif
769
770 .if !defined(NO_FORTRAN)
771 _fortran= gnu/usr.bin/cc/f771
772 .endif
773
774 .if !defined(NO_KERBEROS) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
775 _kerberos5_tools= kerberos5/tools
776 .endif
777
778 .if !defined(NO_RESCUE)
779 _rescue= rescue/rescue
780 .endif
781
782 build-tools:
783 .for _tool in \
784     bin/csh \
785     bin/sh \
786     ${_rescue} \
787     gnu/usr.bin/cc/cc_tools \
788     ${_fortran} \
789     lib/libncurses \
790     ${_share} \
791     ${_aicasm} \
792     usr.bin/awk \
793     usr.bin/file \
794     usr.sbin/sysinstall
795         @${ECHODIR} "===> ${_tool}"; \
796                 cd ${.CURDIR}/${_tool}; \
797                 ${MAKE} DIRPRFX=${_tool}/ obj; \
798                 ${MAKE} DIRPRFX=${_tool}/ build-tools
799 .endfor
800 .for _tool in \
801     ${_kerberos5_tools}
802         @${ECHODIR} "===> ${_tool}"; \
803                 cd ${.CURDIR}/${_tool}; \
804                 ${MAKE} DIRPRFX=${_tool}/ obj; \
805                 ${MAKE} DIRPRFX=${_tool}/ depend; \
806                 ${MAKE} DIRPRFX=${_tool}/ all
807 .endfor
808
809 #
810 # cross-tools: Build cross-building tools
811 #
812 .if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
813     ${BOOTSTRAPPING} < 500037
814 _elf2aout=      usr.bin/elf2aout
815 .endif
816
817 .if ${TARGET_ARCH} == "i386" && ${TARGET_ARCH} != ${MACHINE_ARCH}
818 _btxld=         usr.sbin/btxld
819 .endif
820
821 .if (!defined(NO_RESCUE) || \
822     defined(RELEASEDIR)) && \
823     (${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 501101)
824 _crunchide=     usr.sbin/crunch/crunchide
825 .endif
826
827 .if ${TARGET_ARCH} == "alpha" && ${TARGET_ARCH} != ${MACHINE_ARCH}
828 _elf2exe=       usr.sbin/elf2exe
829 .endif
830
831 .if ${TARGET_ARCH} == "i386" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \
832     defined(RELEASEDIR)
833 _kgzip=         usr.sbin/kgzip
834 .endif
835
836 cross-tools:
837 .for _tool in \
838     gnu/usr.bin/binutils \
839     gnu/usr.bin/cc \
840     ${_elf2aout} \
841     usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \
842     ${_btxld} \
843     ${_crunchide} \
844     ${_elf2exe} \
845     ${_kgzip}
846         @${ECHODIR} "===> ${_tool}"; \
847                 cd ${.CURDIR}/${_tool}; \
848                 ${MAKE} DIRPRFX=${_tool}/ obj; \
849                 ${MAKE} DIRPRFX=${_tool}/ depend; \
850                 ${MAKE} DIRPRFX=${_tool}/ all; \
851                 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install
852 .endfor
853
854 #
855 # hierarchy - ensure that all the needed directories are present
856 #
857 hierarchy:
858         cd ${.CURDIR}/etc;              ${MAKE} distrib-dirs
859
860 #
861 # libraries - build all libraries, and install them under ${DESTDIR}.
862 #
863 # The list of libraries with dependents (${_prebuild_libs}) and their
864 # interdependencies (__L) are built automatically by the
865 # ${.CURDIR}/tools/make_libdeps.sh script.
866 #
867 libraries:
868         cd ${.CURDIR}; \
869             ${MAKE} -f Makefile.inc1 _startup_libs; \
870             ${MAKE} -f Makefile.inc1 _prebuild_libs; \
871             ${MAKE} -f Makefile.inc1 _generic_libs;
872
873 # These dependencies are not automatically generated:
874 #
875 # gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all
876 # shared libraries for ELF.
877 #
878 _startup_libs=  gnu/lib/csu gnu/lib/libgcc
879 .if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf)
880 _startup_libs+= lib/csu/${MACHINE_ARCH}-elf
881 .else
882 _startup_libs+= lib/csu/${MACHINE_ARCH}
883 .endif
884
885 _prebuild_libs=
886
887 _generic_libs=  gnu/lib
888
889 .if !defined(NO_KERBEROS) && !defined(NOCRYPT) && !defined(NO_OPENSSL)
890 _prebuild_libs+=        kerberos5/lib/libasn1
891 _prebuild_libs+=        kerberos5/lib/libgssapi
892 _prebuild_libs+=        kerberos5/lib/libkrb5
893 _prebuild_libs+=        kerberos5/lib/libroken
894 _generic_libs+= kerberos5/lib
895 .endif
896
897 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libexpat \
898                 lib/libkvm lib/libmd \
899                 lib/libncurses lib/libnetgraph lib/libopie lib/libpam \
900                 lib/libradius lib/librpcsvc \
901                 lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \
902                 lib/libz lib/msun
903
904 lib/libopie__L lib/libtacplus__L: lib/libmd__L
905 lib/libypclnt__L: lib/librpcsvc__L
906
907 _generic_libs+= lib
908
909 .if !defined(NOCRYPT)
910 .if !defined(NO_OPENSSL)
911 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
912 lib/libradius__L: secure/lib/libssl__L
913 .if !defined(NO_OPENSSH)
914 _prebuild_libs+=        secure/lib/libssh
915 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
916 .endif
917 .endif
918 _generic_libs+= secure/lib
919 .endif
920
921 .if defined(NOCRYPT) || defined(NO_OPENSSL)
922 lib/libradius__L: lib/libmd__L
923 .endif
924
925 _generic_libs+= usr.bin/lex/lib
926
927 .if ${MACHINE_ARCH} == "i386"
928 _generic_libs+= usr.sbin/pcvt/keycap
929 .endif
930
931 .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs}
932 ${_lib}__L: .PHONY
933 .if exists(${.CURDIR}/${_lib})
934         @${ECHODIR} "===> ${_lib}"; \
935                 cd ${.CURDIR}/${_lib}; \
936                 ${MAKE} DIRPRFX=${_lib}/ depend; \
937                 ${MAKE} DIRPRFX=${_lib}/ all; \
938                 ${MAKE} DIRPRFX=${_lib}/ install
939 .endif
940 .endfor
941
942 # libpam is special: we need to build static PAM modules before
943 # static PAM library, and dynamic PAM library before dynamic PAM
944 # modules.
945 lib/libpam__L: .PHONY
946         @${ECHODIR} "===> lib/libpam"; \
947                 cd ${.CURDIR}/lib/libpam; \
948                 ${MAKE} DIRPRFX=lib/libpam/ depend; \
949                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \
950                 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install
951
952 _startup_libs: ${_startup_libs:S/$/__L/}
953 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
954 _generic_libs: ${_generic_libs:S/$/__L/}
955
956 .for __target in all clean cleandepend cleandir depend includes obj
957 .for entry in ${SUBDIR}
958 ${entry}.${__target}__D: .PHONY
959         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
960                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
961                 edir=${entry}.${MACHINE_ARCH}; \
962                 cd ${.CURDIR}/$${edir}; \
963         else \
964                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
965                 edir=${entry}; \
966                 cd ${.CURDIR}/$${edir}; \
967         fi; \
968         ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
969 .endfor
970 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
971 .endfor
972
973 .include <bsd.subdir.mk>