Makefile revision 107374
12061Sjkh#
250479Speter# $FreeBSD: head/Makefile 107374 2002-11-28 13:08:09Z ru $
32061Sjkh#
438666Sjb# The user-driven targets are:
532427Sjb#
6103985Sphk# universe 	      - *Really* build *everything*:  Buildworld and
7103985Sphk#			all kernels on all architectures.
838666Sjb# buildworld          - Rebuild *everything*, including glue to help do
938666Sjb#                       upgrades.
1038666Sjb# installworld        - Install everything built by "buildworld".
1138666Sjb# world               - buildworld + installworld.
1264049Salex# buildkernel         - Rebuild the kernel and the kernel-modules.
1364049Salex# installkernel       - Install the kernel and the kernel-modules.
1466071Smarkm# reinstallkernel     - Reinstall the kernel and the kernel-modules.
1573504Sobrien# kernel              - buildkernel + installkernel.
1638666Sjb# update              - Convenient way to update your source tree (cvs).
1744918Sjkh# upgrade             - Upgrade a.out (2.2.x/3.0) system to the new ELF way
1838666Sjb# most                - Build user commands, no libraries or include files.
1938666Sjb# installmost         - Install user commands, no libraries or include files.
2038666Sjb# aout-to-elf         - Upgrade an system from a.out to elf format (see below).
2138666Sjb# aout-to-elf-build   - Build everything required to upgrade a system from
2238666Sjb#                       a.out to elf format (see below).
2338666Sjb# aout-to-elf-install - Install everything built by aout-to-elf-build (see
2438666Sjb#                       below).
2538978Sjb# move-aout-libs      - Move the a.out libraries into an aout sub-directory
2638978Sjb#                       of each elf library sub-directory.
2732427Sjb#
2838666Sjb# This makefile is simple by design. The FreeBSD make automatically reads
2938666Sjb# the /usr/share/mk/sys.mk unless the -m argument is specified on the 
3038666Sjb# command line. By keeping this makefile simple, it doesn't matter too
3138666Sjb# much how different the installed mk files are from those in the source
3238666Sjb# tree. This makefile executes a child make process, forcing it to use
3338666Sjb# the mk files from the source tree which are supposed to DTRT.
3417308Speter#
3591606Skeramida# The user-driven targets (as listed above) are implemented in Makefile.inc1.
3619175Sbde#
3796205Sjwd# If you want to build your system from source be sure that /usr/obj has
3896205Sjwd# at least 400MB of diskspace available.
3938042Sbde#
4096205Sjwd# For individuals wanting to build from the sources currently on their
4196205Sjwd# system, the simple instructions are:
4238042Sbde#
4396205Sjwd# 1.  `cd /usr/src'  (or to the directory containing your source tree).
4496205Sjwd# 2.  `make world'
4517308Speter#
4696205Sjwd# For individuals wanting to upgrade their sources (even if only a
4796205Sjwd# delta of a few days):
4817308Speter#
4996205Sjwd# 1.  `cd /usr/src'       (or to the directory containing your source tree).
5096205Sjwd# 2.  `make buildworld'
5196205Sjwd# 3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
5296205Sjwd# 4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
5396205Sjwd# 5.  `reboot'        (in single user mode: boot -s from the loader prompt).
5496205Sjwd# 6.  `mergemaster -p'
5596205Sjwd# 7.  `make installworld'
5696205Sjwd# 8.  `mergemaster'
5796205Sjwd# 9.  `reboot'
5896205Sjwd#
5996205Sjwd# See src/UPDATING `COMMON ITEMS' for more complete information.
6096205Sjwd#
6198775Sdillon# If TARGET_ARCH=arch (e.g. ia64, sparc64, ...) is specified you can
6298723Sdillon# cross build world for other architectures using the buildworld target,
6398723Sdillon# and once the world is built you can cross build a kernel using the
6498723Sdillon# buildkernel target.
6598723Sdillon#
6638666Sjb# ----------------------------------------------------------------------------
6717308Speter#
6838666Sjb#           Upgrading an i386 system from a.out to elf format
6917308Speter#
7027910Sasami#
7143226Sjkh# The aout->elf transition build is performed by doing a `make upgrade' (or
7243226Sjkh# `make aout-to-elf') or in two steps by a `make aout-to-elf-build' followed
7343226Sjkh# by a `make aout-to-elf-install', depending on user preference.
7438666Sjb# You need to have at least 320 Mb of free space for the object tree.
7527910Sasami#
7638666Sjb# The upgrade process checks the installed release. If this is 3.0-CURRENT,
7738666Sjb# it is assumed that your kernel contains all the syscalls required by the
7838666Sjb# current sources.
7927910Sasami#
8038666Sjb# The upgrade procedure will stop and ask for confirmation to proceed
8138666Sjb# several times. On each occasion, you can type Ctrl-C to abort the
8243226Sjkh# upgrade.  Optionally, you can also start it with NOCONFIRM=yes and skip
8343226Sjkh# the confirmation steps.
8427910Sasami#
8538666Sjb# ----------------------------------------------------------------------------
8627910Sasami#
8717308Speter#
8838666Sjb# Define the user-driven targets. These are listed here in alphabetical
8938666Sjb# order, but that's not important.
9017308Speter#
9195509SruTGTS=	all all-man buildkernel buildworld checkdpadd clean \
9295793Sru	cleandepend cleandir depend distribute distributeworld everything \
9397252Sru	hierarchy install installcheck installkernel \
9496164Sru	reinstallkernel installmost installworld libraries lint maninstall \
9595146Sgshapiro	mk most obj objlink regress rerelease tags update
962061Sjkh
9797769SruBITGTS=	files includes
9897252SruBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
9997252Sru
10095730Sru.ORDER: buildworld installworld
10195793Sru.ORDER: buildworld distributeworld
10295730Sru.ORDER: buildkernel installkernel
10395730Sru.ORDER: buildkernel reinstallkernel
10495730Sru
10555026SmarcelPATH=	/sbin:/bin:/usr/sbin:/usr/bin
10655026SmarcelMAKE=	PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1
10754324Smarcel
10817308Speter#
10938666Sjb# Handle the user-driven targets, using the source relative mk files.
11017308Speter#
11197252Sru${TGTS} ${BITGTS}: upgrade_checks
11238666Sjb	@cd ${.CURDIR}; \
11354324Smarcel		${MAKE} ${.TARGET}
1142302Spaul
11539206Sjkh# Set a reasonable default
11639206Sjkh.MAIN:	all
11739206Sjkh
11873349SruSTARTTIME!= LC_ALL=C date
11917308Speter#
12054324Smarcel# world
12154324Smarcel#
12254324Smarcel# Attempt to rebuild and reinstall *everything*, with reasonable chance of
12354324Smarcel# success, regardless of how old your existing system is.
12454324Smarcel#
12554324Smarcelworld: upgrade_checks
12654324Smarcel	@echo "--------------------------------------------------------------"
127103436Speter	@echo ">>> elf make world started on ${STARTTIME}"
12854324Smarcel	@echo "--------------------------------------------------------------"
12954324Smarcel.if target(pre-world)
13054324Smarcel	@echo
13154324Smarcel	@echo "--------------------------------------------------------------"
13254324Smarcel	@echo ">>> Making 'pre-world' target"
13354324Smarcel	@echo "--------------------------------------------------------------"
13454324Smarcel	@cd ${.CURDIR}; ${MAKE} pre-world
13554324Smarcel.endif
13654324Smarcel	@cd ${.CURDIR}; ${MAKE} buildworld
13754324Smarcel	@cd ${.CURDIR}; ${MAKE} -B installworld
13854324Smarcel.if target(post-world)
13954324Smarcel	@echo
14054324Smarcel	@echo "--------------------------------------------------------------"
14154324Smarcel	@echo ">>> Making 'post-world' target"
14254324Smarcel	@echo "--------------------------------------------------------------"
14354324Smarcel	@cd ${.CURDIR}; ${MAKE} post-world
14454324Smarcel.endif
14554324Smarcel	@echo
14654324Smarcel	@echo "--------------------------------------------------------------"
147103436Speter	@printf ">>> elf make world completed on `LC_ALL=C date`\n                       (started ${STARTTIME})\n"
14854324Smarcel	@echo "--------------------------------------------------------------"
14954324Smarcel
15054324Smarcel#
15195730Sru# kernel
15295730Sru#
15395730Sru# Short hand for `make buildkernel installkernel'
15495730Sru#
15595730Srukernel: buildkernel installkernel
15695730Sru
15795730Sru#
15838666Sjb# Perform a few tests to determine if the installed tools are adequate
159107374Sru# for building the world.
16017308Speter#
16155678Smarcelupgrade_checks:
162107374Sru	@(cd ${.CURDIR}/tools/regression/usr.bin/make && make 2>/dev/null) || \
163107374Sru	(cd ${.CURDIR} && make make)
1642061Sjkh
16517308Speter#
16655678Smarcel# Upgrade the installed make to the current version using the installed
167107374Sru# headers, libraries and tools.
16855678Smarcel#
16955678Smarcelmake:
17055678Smarcel	@echo
17155678Smarcel	@echo "--------------------------------------------------------------"
17255678Smarcel	@echo " Upgrading the installed make"
17355678Smarcel	@echo "--------------------------------------------------------------"
17455678Smarcel	@cd ${.CURDIR}/usr.bin/make; \
175102692Speter		make obj && make -D_UPGRADING depend && \
176102692Speter		make -D_UPGRADING all && make install
17755678Smarcel
17855678Smarcel#
17938666Sjb# Define the upgrade targets. These are listed here in alphabetical
18038666Sjb# order, but that's not important.
18117308Speter#
18255678SmarcelUPGRADE=	aout-to-elf aout-to-elf-build aout-to-elf-install \
18338978Sjb		move-aout-libs
1843626Swollman
18517308Speter#
18638666Sjb# Handle the upgrade targets, using the source relative mk files.
18717308Speter#
18843226Sjkh
18943226Sjkhupgrade:	aout-to-elf
19043226Sjkh
19138666Sjb${UPGRADE} : upgrade_checks
19238666Sjb	@cd ${.CURDIR}; \
19344103Smsmith		${MAKE} -f Makefile.upgrade -m ${.CURDIR}/share/mk ${.TARGET}
194103985Sphk
195103985Sphk
196103985Sphkuniverse:
197103985Sphk	@echo "--------------------------------------------------------------"
198103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
199103985Sphk	@echo "--------------------------------------------------------------"
200104370Sphk.for arch in i386 sparc64 alpha ia64 
201103985Sphk	@printf ">> ${arch} started on `LC_ALL=C date`\n"
202103985Sphk	-cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \
203103985Sphk		__MAKE_CONF=/dev/null \
204103985Sphk		> _.${arch}.buildworld 2>&1
205103985Sphk	@printf ">> ${arch} buildworld ended on `LC_ALL=C date`\n"
206104277Sphk.if exists(${.CURDIR}/sys/${arch}/conf/NOTES)
207104277Sphk	-cd ${.CURDIR}/sys/${arch}/conf && make LINT \
208103985Sphk		> _.${arch}.makeLINT 2>&1
209103985Sphk.endif
210103985Sphk	cd ${.CURDIR} && make buildkernels TARGET_ARCH=${arch} JFLAG="${JFLAG}"
211103985Sphk	@printf ">> ${arch} ended on `LC_ALL=C date`\n"
212103985Sphk.endfor
213104370Sphk	-cd ${.CURDIR} && make buildworld TARGET=pc98 TARGET_ARCH=i386 \
214104370Sphk		__MAKE_CONF=/dev/null \
215104370Sphk		> _.pc98.buildworld 2>&1
216103985Sphk	@echo "--------------------------------------------------------------"
217103985Sphk	@printf ">>> make universe completed on `LC_ALL=C date`\n                       (started ${STARTTIME})\n"
218103985Sphk	@echo "--------------------------------------------------------------"
219103985Sphk
220103985SphkKERNCONFS !=	echo ${.CURDIR}/sys/${TARGET_ARCH}/conf/[A-Z]*
221103985SphkKERNCONF2 = ${KERNCONFS:T:N*[a-z]*:NCVS:NNOTES}
222103985Sphk
223103985Sphkbuildkernels:
224103985Sphk.for kernel in ${KERNCONF2}
225103985Sphk.if exists(${.CURDIR}/sys/${TARGET_ARCH}/conf/${kernel})
226103985Sphk	-cd ${.CURDIR} && make ${JFLAG} buildkernel \
227103985Sphk		TARGET_ARCH=${TARGET_ARCH} KERNCONF=${kernel} \
228103985Sphk		__MAKE_CONF=/dev/null \
229103985Sphk		 > _.${TARGET_ARCH}.${kernel} 2>&1
230103985Sphk.endif
231103985Sphk.endfor
232103985Sphk
233