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