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