1994-08-14 00:47:28 +02:00
|
|
|
#
|
1999-08-28 03:35:59 +02:00
|
|
|
# $FreeBSD$
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
1998-08-31 03:08:08 +02:00
|
|
|
# The user-driven targets are:
|
1998-08-03 10:28:14 +02:00
|
|
|
#
|
2003-02-19 16:40:19 +01:00
|
|
|
# universe - *Really* build *everything* (buildworld and
|
|
|
|
# all kernels on all architectures).
|
2011-01-22 23:57:28 +01:00
|
|
|
# tinderbox - Same as universe, but presents a list of failed build
|
|
|
|
# targets and exits with an error if there were any.
|
1998-08-31 03:08:08 +02:00
|
|
|
# buildworld - Rebuild *everything*, including glue to help do
|
|
|
|
# upgrades.
|
|
|
|
# installworld - Install everything built by "buildworld".
|
2006-06-07 05:33:48 +02:00
|
|
|
# world - buildworld + installworld, no kernel.
|
2000-07-31 11:26:59 +02:00
|
|
|
# buildkernel - Rebuild the kernel and the kernel-modules.
|
|
|
|
# installkernel - Install the kernel and the kernel-modules.
|
2003-06-22 12:01:03 +02:00
|
|
|
# installkernel.debug
|
2000-09-19 13:15:40 +02:00
|
|
|
# reinstallkernel - Reinstall the kernel and the kernel-modules.
|
2003-06-22 12:01:03 +02:00
|
|
|
# reinstallkernel.debug
|
2001-03-04 11:43:14 +01:00
|
|
|
# kernel - buildkernel + installkernel.
|
2010-03-03 22:08:44 +01:00
|
|
|
# kernel-toolchain - Builds the subset of world necessary to build a kernel
|
2012-03-13 01:38:49 +01:00
|
|
|
# kernel-toolchains - Build kernel-toolchain for all universe targets.
|
2006-05-26 20:10:06 +02:00
|
|
|
# doxygen - Build API documentation of the kernel, needs doxygen.
|
2011-06-16 14:28:37 +02:00
|
|
|
# update - Convenient way to update your source tree(s).
|
2007-05-16 10:46:35 +02:00
|
|
|
# check-old - List obsolete directories/files/libraries.
|
|
|
|
# check-old-dirs - List obsolete directories.
|
|
|
|
# check-old-files - List obsolete files.
|
|
|
|
# check-old-libs - List obsolete libraries.
|
2012-02-16 15:08:14 +01:00
|
|
|
# delete-old - Delete obsolete directories/files.
|
2007-05-16 10:46:35 +02:00
|
|
|
# delete-old-dirs - Delete obsolete directories.
|
|
|
|
# delete-old-files - Delete obsolete files.
|
|
|
|
# delete-old-libs - Delete obsolete libraries.
|
2011-01-25 09:13:31 +01:00
|
|
|
# targets - Print a list of supported TARGET/TARGET_ARCH pairs
|
|
|
|
# for world and kernel targets.
|
2011-02-10 19:54:52 +01:00
|
|
|
# toolchains - Build a toolchain for all world and kernel targets.
|
2013-07-07 22:39:11 +02:00
|
|
|
#
|
|
|
|
# "quick" way to test all kernel builds:
|
|
|
|
# _jflag=`sysctl -n hw.ncpu`
|
|
|
|
# _jflag=$(($_jflag * 2))
|
|
|
|
# [ $_jflag -gt 12 ] && _jflag=12
|
2013-07-07 22:44:04 +02:00
|
|
|
# make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
|
1998-08-03 10:28:14 +02:00
|
|
|
#
|
1998-08-31 03:08:08 +02:00
|
|
|
# This makefile is simple by design. The FreeBSD make automatically reads
|
2002-12-30 17:48:35 +01:00
|
|
|
# the /usr/share/mk/sys.mk unless the -m argument is specified on the
|
1998-08-31 03:08:08 +02:00
|
|
|
# command line. By keeping this makefile simple, it doesn't matter too
|
|
|
|
# much how different the installed mk files are from those in the source
|
|
|
|
# tree. This makefile executes a child make process, forcing it to use
|
|
|
|
# the mk files from the source tree which are supposed to DTRT.
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
2011-01-11 19:32:05 +01:00
|
|
|
# Most of the user-driven targets (as listed above) are implemented in
|
2011-01-11 23:57:41 +01:00
|
|
|
# Makefile.inc1. The exceptions are universe, tinderbox and targets.
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
2002-05-08 03:55:08 +02:00
|
|
|
# If you want to build your system from source be sure that /usr/obj has
|
2011-01-12 05:59:29 +01:00
|
|
|
# at least 1GB of diskspace available. A complete 'universe' build requires
|
|
|
|
# about 15GB of space.
|
1997-08-05 05:49:49 +02:00
|
|
|
#
|
2002-05-08 03:55:08 +02:00
|
|
|
# For individuals wanting to build from the sources currently on their
|
|
|
|
# system, the simple instructions are:
|
1997-08-05 05:49:49 +02:00
|
|
|
#
|
2002-05-08 03:55:08 +02:00
|
|
|
# 1. `cd /usr/src' (or to the directory containing your source tree).
|
2006-06-07 05:33:48 +02:00
|
|
|
# 2. Define `HISTORICAL_MAKE_WORLD' variable (see README).
|
|
|
|
# 3. `make world'
|
1997-08-05 05:49:49 +02:00
|
|
|
#
|
2002-05-08 03:55:08 +02:00
|
|
|
# For individuals wanting to upgrade their sources (even if only a
|
|
|
|
# delta of a few days):
|
|
|
|
#
|
2005-07-23 16:23:30 +02:00
|
|
|
# 1. `cd /usr/src' (or to the directory containing your source tree).
|
|
|
|
# 2. `make buildworld'
|
|
|
|
# 3. `make buildkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
|
|
|
|
# 4. `make installkernel KERNCONF=YOUR_KERNEL_HERE' (default is GENERIC).
|
2006-06-21 11:53:42 +02:00
|
|
|
# [steps 3. & 4. can be combined by using the "kernel" target]
|
2005-07-23 16:23:30 +02:00
|
|
|
# 5. `reboot' (in single user mode: boot -s from the loader prompt).
|
|
|
|
# 6. `mergemaster -p'
|
|
|
|
# 7. `make installworld'
|
2013-05-29 21:16:59 +02:00
|
|
|
# 8. `mergemaster' (you may wish to use -i, along with -U or -F).
|
|
|
|
# 9. `make delete-old'
|
2005-07-23 16:23:30 +02:00
|
|
|
# 10. `reboot'
|
|
|
|
# 11. `make delete-old-libs' (in case no 3rd party program uses them anymore)
|
2002-05-08 03:55:08 +02:00
|
|
|
#
|
|
|
|
# See src/UPDATING `COMMON ITEMS' for more complete information.
|
1997-08-05 05:49:49 +02:00
|
|
|
#
|
2006-09-08 12:13:15 +02:00
|
|
|
# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
|
|
|
|
# cross build world for other machine types using the buildworld target,
|
2002-06-24 07:14:54 +02:00
|
|
|
# and once the world is built you can cross build a kernel using the
|
|
|
|
# buildkernel target.
|
|
|
|
#
|
1998-08-31 03:08:08 +02:00
|
|
|
# Define the user-driven targets. These are listed here in alphabetical
|
|
|
|
# order, but that's not important.
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
2003-12-09 03:08:19 +01:00
|
|
|
# Targets that begin with underscore are internal targets intended for
|
|
|
|
# developer convenience only. They are intentionally not documented and
|
|
|
|
# completely subject to change without notice.
|
|
|
|
#
|
2008-01-30 20:33:18 +01:00
|
|
|
# For more information, see the build(7) manual page.
|
|
|
|
#
|
2007-05-16 10:46:35 +02:00
|
|
|
TGTS= all all-man buildenv buildenvvars buildkernel buildworld \
|
|
|
|
check-old check-old-dirs check-old-files check-old-libs \
|
|
|
|
checkdpadd clean cleandepend cleandir \
|
|
|
|
delete-old delete-old-dirs delete-old-files delete-old-libs \
|
2011-03-02 15:39:26 +01:00
|
|
|
depend distribute distributekernel distributekernel.debug \
|
|
|
|
distributeworld distrib-dirs distribution doxygen \
|
2012-07-03 08:41:00 +02:00
|
|
|
everything hier hierarchy install installcheck installkernel \
|
2011-03-02 15:39:26 +01:00
|
|
|
installkernel.debug packagekernel packageworld \
|
|
|
|
reinstallkernel reinstallkernel.debug \
|
2006-05-26 20:10:06 +02:00
|
|
|
installworld kernel-toolchain libraries lint maninstall \
|
2006-03-18 15:30:23 +01:00
|
|
|
obj objlink regress rerelease showconfig tags toolchain update \
|
2003-12-09 03:08:19 +01:00
|
|
|
_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
|
2004-11-06 04:14:26 +01:00
|
|
|
_build-tools _cross-tools _includes _libraries _depend \
|
2010-06-13 15:02:43 +02:00
|
|
|
build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
|
|
|
|
|
2006-03-15 15:22:32 +01:00
|
|
|
TGTS+= ${SUBDIR_TARGETS}
|
1999-12-08 19:10:15 +01:00
|
|
|
|
2002-06-03 16:49:34 +02:00
|
|
|
BITGTS= files includes
|
2002-05-24 18:08:13 +02:00
|
|
|
BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
|
2003-08-30 15:33:41 +02:00
|
|
|
TGTS+= ${BITGTS}
|
2002-05-24 18:08:13 +02:00
|
|
|
|
2002-04-29 17:22:01 +02:00
|
|
|
.ORDER: buildworld installworld
|
2002-04-30 13:50:01 +02:00
|
|
|
.ORDER: buildworld distributeworld
|
2003-02-27 14:11:33 +01:00
|
|
|
.ORDER: buildworld buildkernel
|
2002-04-29 17:22:01 +02:00
|
|
|
.ORDER: buildkernel installkernel
|
2003-06-22 12:01:03 +02:00
|
|
|
.ORDER: buildkernel installkernel.debug
|
2002-04-29 17:22:01 +02:00
|
|
|
.ORDER: buildkernel reinstallkernel
|
2003-06-22 12:01:03 +02:00
|
|
|
.ORDER: buildkernel reinstallkernel.debug
|
2002-04-29 17:22:01 +02:00
|
|
|
|
Part 3/3 of unbreaking cross releases:
When we call "distributeworld" as part of "make release", we set
MACHINE and MACHINE_ARCH to point to TARGET and TARGET_ARCH; this
confused src/Makefile's idea of what ${MAKEPATH}, and consequently
${MAKE}, is (well, it still confuses ${MAKEPATH}, but see below).
To overcome this problem, we now take the following approach:
- We preserve the make(1)'s idea of its argv[0], ${MAKE}.
- We check to see if ${MAKE} passes the regression tests.
- If it does, we use it. Otherwise, we build and use an
up-to-date make(1).
This fix is still not quite right, in a situation where a single
/usr/obj is shared between different architecture machines, but
it is less critical and I hope to fix that soon.
2003-01-29 11:00:42 +01:00
|
|
|
PATH= /sbin:/bin:/usr/sbin:/usr/bin
|
2002-12-02 15:31:21 +01:00
|
|
|
MAKEOBJDIRPREFIX?= /usr/obj
|
2004-12-16 20:55:57 +01:00
|
|
|
_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
|
2006-03-01 14:07:17 +01:00
|
|
|
${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
|
2004-12-16 20:55:57 +01:00
|
|
|
-f /dev/null -V MAKEOBJDIRPREFIX dummy
|
2004-08-18 08:49:56 +02:00
|
|
|
.if !empty(_MAKEOBJDIRPREFIX)
|
|
|
|
.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
|
2006-03-01 14:07:17 +01:00
|
|
|
(in make.conf(5)) or command-line variable.
|
2004-08-18 08:49:56 +02:00
|
|
|
.endif
|
Part 3/3 of unbreaking cross releases:
When we call "distributeworld" as part of "make release", we set
MACHINE and MACHINE_ARCH to point to TARGET and TARGET_ARCH; this
confused src/Makefile's idea of what ${MAKEPATH}, and consequently
${MAKE}, is (well, it still confuses ${MAKEPATH}, but see below).
To overcome this problem, we now take the following approach:
- We preserve the make(1)'s idea of its argv[0], ${MAKE}.
- We check to see if ${MAKE} passes the regression tests.
- If it does, we use it. Otherwise, we build and use an
up-to-date make(1).
This fix is still not quite right, in a situation where a single
/usr/obj is shared between different architecture machines, but
it is less critical and I hope to fix that soon.
2003-01-29 11:00:42 +01:00
|
|
|
MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
|
2003-07-04 19:35:26 +02:00
|
|
|
BINMAKE= \
|
Part 3/3 of unbreaking cross releases:
When we call "distributeworld" as part of "make release", we set
MACHINE and MACHINE_ARCH to point to TARGET and TARGET_ARCH; this
confused src/Makefile's idea of what ${MAKEPATH}, and consequently
${MAKE}, is (well, it still confuses ${MAKEPATH}, but see below).
To overcome this problem, we now take the following approach:
- We preserve the make(1)'s idea of its argv[0], ${MAKE}.
- We check to see if ${MAKE} passes the regression tests.
- If it does, we use it. Otherwise, we build and use an
up-to-date make(1).
This fix is still not quite right, in a situation where a single
/usr/obj is shared between different architecture machines, but
it is less critical and I hope to fix that soon.
2003-01-29 11:00:42 +01:00
|
|
|
`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
|
2003-07-04 16:27:06 +02:00
|
|
|
-m ${.CURDIR}/share/mk
|
2011-02-03 00:59:24 +01:00
|
|
|
_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
|
1994-08-14 00:47:28 +02:00
|
|
|
|
2011-01-31 16:17:47 +01:00
|
|
|
# Guess machine architecture from machine type, and vice versa.
|
|
|
|
.if !defined(TARGET_ARCH) && defined(TARGET)
|
2012-03-29 04:54:35 +02:00
|
|
|
_TARGET_ARCH= ${TARGET:S/pc98/i386/}
|
2011-01-31 16:17:47 +01:00
|
|
|
.elif !defined(TARGET) && defined(TARGET_ARCH) && \
|
|
|
|
${TARGET_ARCH} != ${MACHINE_ARCH}
|
2012-08-15 05:21:56 +02:00
|
|
|
_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/}
|
2011-01-31 16:17:47 +01:00
|
|
|
.endif
|
2012-03-29 04:54:35 +02:00
|
|
|
# Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1
|
2011-01-31 16:17:47 +01:00
|
|
|
.if defined(TARGET) && defined(TARGET_ARCH) && \
|
2012-03-29 04:54:35 +02:00
|
|
|
${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb}
|
|
|
|
_TARGET_ARCH= ${TARGET_ARCH:C/eb$//}
|
|
|
|
.warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}"
|
2011-01-31 16:17:47 +01:00
|
|
|
.endif
|
2012-03-29 04:54:35 +02:00
|
|
|
.if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN)
|
|
|
|
.warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS. Big-endian is not the default."
|
2011-01-31 16:17:47 +01:00
|
|
|
.endif
|
|
|
|
# arm with TARGET_BIG_ENDIAN -> armeb
|
|
|
|
.if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
|
|
|
|
.warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated. use armeb"
|
|
|
|
_TARGET_ARCH=armeb
|
|
|
|
.endif
|
|
|
|
.if defined(TARGET) && !defined(_TARGET)
|
|
|
|
_TARGET=${TARGET}
|
|
|
|
.endif
|
|
|
|
.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
|
|
|
|
_TARGET_ARCH=${TARGET_ARCH}
|
|
|
|
.endif
|
|
|
|
# Otherwise, default to current machine type and architecture.
|
|
|
|
_TARGET?= ${MACHINE}
|
|
|
|
_TARGET_ARCH?= ${MACHINE_ARCH}
|
|
|
|
|
1998-06-04 14:02:52 +02:00
|
|
|
#
|
2003-08-28 06:03:13 +02:00
|
|
|
# Make sure we have an up-to-date make(1). Only world and buildworld
|
|
|
|
# should do this as those are the initial targets used for upgrades.
|
|
|
|
# The user can define ALWAYS_CHECK_MAKE to have this check performed
|
|
|
|
# for all targets.
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
2003-08-28 06:03:13 +02:00
|
|
|
.if defined(ALWAYS_CHECK_MAKE)
|
2003-08-30 15:33:41 +02:00
|
|
|
${TGTS}: upgrade_checks
|
2003-08-28 06:03:13 +02:00
|
|
|
.else
|
|
|
|
buildworld: upgrade_checks
|
|
|
|
.endif
|
|
|
|
|
2004-02-16 21:18:25 +01:00
|
|
|
#
|
2004-02-20 03:10:35 +01:00
|
|
|
# This 'cleanworld' target is not included in TGTS, because it is not a
|
2004-02-19 22:09:58 +01:00
|
|
|
# recursive target. All of the work for it is done right here. It is
|
|
|
|
# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
|
|
|
|
# created by bsd.obj.mk, except that we don't want to .include that file
|
|
|
|
# in this makefile.
|
|
|
|
#
|
|
|
|
# In the following, the first 'rm' in a series will usually remove all
|
|
|
|
# files and directories. If it does not, then there are probably some
|
2011-11-20 21:05:47 +01:00
|
|
|
# files with file flags set, so this unsets them and tries the 'rm' a
|
2004-02-19 22:09:58 +01:00
|
|
|
# second time. There are situations where this target will be cleaning
|
|
|
|
# some directories via more than one method, but that duplication is
|
2011-11-20 20:05:32 +01:00
|
|
|
# needed to correctly handle all the possible situations. Removing all
|
2011-11-20 21:05:47 +01:00
|
|
|
# files without file flags set in the first 'rm' instance saves time,
|
|
|
|
# because 'chflags' will need to operate on fewer files afterwards.
|
2004-02-19 22:09:58 +01:00
|
|
|
#
|
|
|
|
BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
|
2004-02-20 03:10:35 +01:00
|
|
|
cleanworld:
|
2004-02-19 22:09:58 +01:00
|
|
|
.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
|
|
|
|
.if exists(${BW_CANONICALOBJDIR}/)
|
|
|
|
-rm -rf ${BW_CANONICALOBJDIR}/*
|
2007-10-18 10:41:52 +02:00
|
|
|
-chflags -R 0 ${BW_CANONICALOBJDIR}
|
2004-02-19 22:09:58 +01:00
|
|
|
rm -rf ${BW_CANONICALOBJDIR}/*
|
|
|
|
.endif
|
|
|
|
# To be safe in this case, fall back to a 'make cleandir'
|
2004-08-09 13:38:41 +02:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
|
2004-02-19 22:09:58 +01:00
|
|
|
.else
|
|
|
|
-rm -rf ${.OBJDIR}/*
|
2007-10-18 10:41:52 +02:00
|
|
|
-chflags -R 0 ${.OBJDIR}
|
2004-02-19 22:09:58 +01:00
|
|
|
rm -rf ${.OBJDIR}/*
|
|
|
|
.endif
|
2004-02-16 21:18:25 +01:00
|
|
|
|
2003-08-28 06:03:13 +02:00
|
|
|
#
|
|
|
|
# Handle the user-driven targets, using the source relative mk files.
|
|
|
|
#
|
|
|
|
|
2013-06-14 18:30:11 +02:00
|
|
|
.if empty(.MAKEFLAGS:M-n)
|
|
|
|
# skip this for -n to avoid changing previous behavior of
|
|
|
|
# 'make -n buildworld' etc.
|
|
|
|
${TGTS}: .MAKE
|
|
|
|
.endif
|
|
|
|
|
2003-08-30 15:33:41 +02:00
|
|
|
${TGTS}:
|
2011-02-03 00:59:24 +01:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
|
1995-01-03 23:03:25 +01:00
|
|
|
|
1998-09-15 07:10:17 +02:00
|
|
|
# Set a reasonable default
|
|
|
|
.MAIN: all
|
|
|
|
|
2001-03-02 17:52:14 +01:00
|
|
|
STARTTIME!= LC_ALL=C date
|
2012-09-12 16:44:25 +02:00
|
|
|
CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
|
2008-03-25 16:47:22 +01:00
|
|
|
.if !empty(CHECK_TIME)
|
|
|
|
.error check your date/time: ${STARTTIME}
|
|
|
|
.endif
|
2004-08-18 09:17:01 +02:00
|
|
|
|
|
|
|
.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
|
1999-12-08 19:10:15 +01:00
|
|
|
#
|
|
|
|
# world
|
|
|
|
#
|
2004-07-16 04:51:28 +02:00
|
|
|
# Attempt to rebuild and reinstall everything. This target is not to be
|
|
|
|
# used for upgrading an existing FreeBSD system, because the kernel is
|
|
|
|
# not included. One can argue that this target doesn't build everything
|
|
|
|
# then.
|
1999-12-08 19:10:15 +01:00
|
|
|
#
|
|
|
|
world: upgrade_checks
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 13:06:38 +02:00
|
|
|
@echo ">>> make world started on ${STARTTIME}"
|
1999-12-08 19:10:15 +01:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
.if target(pre-world)
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> Making 'pre-world' target"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2004-08-09 13:38:41 +02:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
|
1999-12-08 19:10:15 +01:00
|
|
|
.endif
|
2004-08-09 13:38:41 +02:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
|
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
|
1999-12-08 19:10:15 +01:00
|
|
|
.if target(post-world)
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> Making 'post-world' target"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2004-08-09 13:38:41 +02:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
|
1999-12-08 19:10:15 +01:00
|
|
|
.endif
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 13:06:38 +02:00
|
|
|
@echo ">>> make world completed on `LC_ALL=C date`"
|
|
|
|
@echo " (started ${STARTTIME})"
|
1999-12-08 19:10:15 +01:00
|
|
|
@echo "--------------------------------------------------------------"
|
2004-07-16 04:51:28 +02:00
|
|
|
.else
|
|
|
|
world:
|
|
|
|
@echo "WARNING: make world will overwrite your existing FreeBSD"
|
|
|
|
@echo "installation without also building and installing a new"
|
|
|
|
@echo "kernel. This can be dangerous. Please read the handbook,"
|
2004-07-23 23:21:34 +02:00
|
|
|
@echo "'Rebuilding world', for how to upgrade your system."
|
2004-07-18 20:55:31 +02:00
|
|
|
@echo "Define DESTDIR to where you want to install FreeBSD,"
|
2004-07-16 04:51:28 +02:00
|
|
|
@echo "including /, to override this warning and proceed as usual."
|
2004-07-18 20:55:31 +02:00
|
|
|
@echo ""
|
2004-07-16 04:51:28 +02:00
|
|
|
@echo "Bailing out now..."
|
|
|
|
@false
|
|
|
|
.endif
|
1999-12-08 19:10:15 +01:00
|
|
|
|
2002-04-29 17:22:01 +02:00
|
|
|
#
|
|
|
|
# kernel
|
|
|
|
#
|
|
|
|
# Short hand for `make buildkernel installkernel'
|
|
|
|
#
|
|
|
|
kernel: buildkernel installkernel
|
|
|
|
|
1996-07-27 23:47:42 +02:00
|
|
|
#
|
1998-08-31 03:08:08 +02:00
|
|
|
# Perform a few tests to determine if the installed tools are adequate
|
2002-11-28 14:08:09 +01:00
|
|
|
# for building the world.
|
1998-04-24 19:13:33 +02:00
|
|
|
#
|
2000-01-09 19:17:48 +01:00
|
|
|
upgrade_checks:
|
2012-10-06 22:01:05 +02:00
|
|
|
.if !defined(.PARSEDIR)
|
2013-05-16 23:26:46 +02:00
|
|
|
.if !defined(WITHOUT_BMAKE)
|
2013-04-12 02:34:19 +02:00
|
|
|
(cd ${.CURDIR} && ${MAKE} bmake)
|
|
|
|
.else
|
2005-03-02 13:33:23 +01:00
|
|
|
@if ! (cd ${.CURDIR}/tools/build/make_check && \
|
2004-12-07 15:41:16 +01:00
|
|
|
PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
|
2003-07-20 01:17:08 +02:00
|
|
|
PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
|
Part 3/3 of unbreaking cross releases:
When we call "distributeworld" as part of "make release", we set
MACHINE and MACHINE_ARCH to point to TARGET and TARGET_ARCH; this
confused src/Makefile's idea of what ${MAKEPATH}, and consequently
${MAKE}, is (well, it still confuses ${MAKEPATH}, but see below).
To overcome this problem, we now take the following approach:
- We preserve the make(1)'s idea of its argv[0], ${MAKE}.
- We check to see if ${MAKE} passes the regression tests.
- If it does, we use it. Otherwise, we build and use an
up-to-date make(1).
This fix is still not quite right, in a situation where a single
/usr/obj is shared between different architecture machines, but
it is less critical and I hope to fix that soon.
2003-01-29 11:00:42 +01:00
|
|
|
then \
|
2007-12-13 01:08:02 +01:00
|
|
|
(cd ${.CURDIR} && ${MAKE} make); \
|
Part 3/3 of unbreaking cross releases:
When we call "distributeworld" as part of "make release", we set
MACHINE and MACHINE_ARCH to point to TARGET and TARGET_ARCH; this
confused src/Makefile's idea of what ${MAKEPATH}, and consequently
${MAKE}, is (well, it still confuses ${MAKEPATH}, but see below).
To overcome this problem, we now take the following approach:
- We preserve the make(1)'s idea of its argv[0], ${MAKE}.
- We check to see if ${MAKE} passes the regression tests.
- If it does, we use it. Otherwise, we build and use an
up-to-date make(1).
This fix is still not quite right, in a situation where a single
/usr/obj is shared between different architecture machines, but
it is less critical and I hope to fix that soon.
2003-01-29 11:00:42 +01:00
|
|
|
fi
|
2012-10-06 22:01:05 +02:00
|
|
|
.endif
|
2013-04-12 02:34:19 +02:00
|
|
|
.endif
|
2000-01-09 19:17:48 +01:00
|
|
|
|
|
|
|
#
|
2002-12-02 15:31:21 +01:00
|
|
|
# Upgrade make(1) to the current version using the installed
|
2007-12-11 21:00:55 +01:00
|
|
|
# headers, libraries and tools. Also, allow the location of
|
|
|
|
# the system bsdmake-like utility to be overridden.
|
2000-01-09 19:17:48 +01:00
|
|
|
#
|
2002-12-02 15:31:21 +01:00
|
|
|
MMAKEENV= MAKEOBJDIRPREFIX=${MAKEPATH} \
|
|
|
|
DESTDIR= \
|
|
|
|
INSTALL="sh ${.CURDIR}/tools/install.sh"
|
2007-12-13 01:08:02 +01:00
|
|
|
MMAKE= ${MMAKEENV} ${MAKE} \
|
2002-12-02 15:31:21 +01:00
|
|
|
-D_UPGRADING \
|
2004-12-21 10:59:45 +01:00
|
|
|
-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
|
2006-11-21 09:25:28 +01:00
|
|
|
-DNO_CPU_CFLAGS -DNO_WERROR
|
2002-12-02 15:31:21 +01:00
|
|
|
|
2013-04-12 02:34:19 +02:00
|
|
|
make bmake: .PHONY
|
2000-01-09 19:17:48 +01:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-06-22 23:56:22 +02:00
|
|
|
@echo ">>> Building an up-to-date make(1)"
|
2000-01-09 19:17:48 +01:00
|
|
|
@echo "--------------------------------------------------------------"
|
2013-04-12 02:34:19 +02:00
|
|
|
${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
|
2002-12-02 15:31:21 +01:00
|
|
|
${MMAKE} obj && \
|
|
|
|
${MMAKE} depend && \
|
|
|
|
${MMAKE} all && \
|
|
|
|
${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
|
1998-03-13 10:41:58 +01:00
|
|
|
|
2008-12-01 01:45:51 +01:00
|
|
|
tinderbox:
|
2011-02-10 19:54:52 +01:00
|
|
|
@cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
|
|
|
|
|
|
|
|
toolchains:
|
|
|
|
@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
|
2008-12-01 01:45:51 +01:00
|
|
|
|
2012-03-13 01:38:49 +01:00
|
|
|
kernel-toolchains:
|
|
|
|
@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe
|
|
|
|
|
2003-02-19 16:40:19 +01:00
|
|
|
#
|
|
|
|
# universe
|
|
|
|
#
|
|
|
|
# Attempt to rebuild *everything* for all supported architectures,
|
2004-08-18 09:17:01 +02:00
|
|
|
# with a reasonable chance of success, regardless of how old your
|
2003-02-19 16:40:19 +01:00
|
|
|
# existing system is.
|
|
|
|
#
|
2011-01-07 21:36:27 +01:00
|
|
|
.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
|
2011-05-14 03:53:38 +02:00
|
|
|
TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
|
2012-08-15 05:21:56 +02:00
|
|
|
TARGET_ARCHES_arm?= arm armeb armv6 armv6eb
|
2012-03-29 04:54:35 +02:00
|
|
|
TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32
|
2010-12-18 15:34:05 +01:00
|
|
|
TARGET_ARCHES_powerpc?= powerpc powerpc64
|
|
|
|
TARGET_ARCHES_pc98?= i386
|
|
|
|
.for target in ${TARGETS}
|
|
|
|
TARGET_ARCHES_${target}?= ${target}
|
|
|
|
.endfor
|
2007-04-02 23:32:44 +02:00
|
|
|
|
2011-02-10 19:54:52 +01:00
|
|
|
.if defined(UNIVERSE_TARGET)
|
|
|
|
MAKE_JUST_WORLDS= YES
|
|
|
|
.else
|
|
|
|
UNIVERSE_TARGET?= buildworld
|
|
|
|
.endif
|
2011-03-01 15:54:14 +01:00
|
|
|
KERNSRCDIR?= ${.CURDIR}/sys
|
2011-02-10 19:54:52 +01:00
|
|
|
|
2011-01-07 21:36:27 +01:00
|
|
|
targets:
|
2011-01-25 09:13:31 +01:00
|
|
|
@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
|
2011-01-07 21:36:27 +01:00
|
|
|
.for target in ${TARGETS}
|
|
|
|
.for target_arch in ${TARGET_ARCHES_${target}}
|
|
|
|
@echo " ${target}/${target_arch}"
|
|
|
|
.endfor
|
|
|
|
.endfor
|
|
|
|
|
2008-12-01 01:45:51 +01:00
|
|
|
.if defined(DOING_TINDERBOX)
|
2011-01-23 00:16:44 +01:00
|
|
|
FAILFILE=${.CURDIR}/_.tinderbox.failed
|
2008-12-01 01:45:51 +01:00
|
|
|
MAKEFAIL=tee -a ${FAILFILE}
|
|
|
|
.else
|
|
|
|
MAKEFAIL=cat
|
|
|
|
.endif
|
|
|
|
|
2013-04-09 22:21:35 +02:00
|
|
|
universe: universe_prologue upgrade_checks
|
2004-08-18 09:17:01 +02:00
|
|
|
universe_prologue:
|
2002-09-26 06:40:54 +02:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> make universe started on ${STARTTIME}"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2008-12-01 01:45:51 +01:00
|
|
|
.if defined(DOING_TINDERBOX)
|
2011-01-23 17:28:44 +01:00
|
|
|
@rm -f ${FAILFILE}
|
2008-12-01 01:45:51 +01:00
|
|
|
.endif
|
2007-04-02 23:32:44 +02:00
|
|
|
.for target in ${TARGETS}
|
2006-09-08 12:13:15 +02:00
|
|
|
universe: universe_${target}
|
2013-06-04 01:51:46 +02:00
|
|
|
.ORDER: universe_prologue upgrade_checks universe_${target} universe_epilogue
|
2010-12-18 15:34:05 +01:00
|
|
|
universe_${target}: universe_${target}_prologue
|
|
|
|
universe_${target}_prologue:
|
2006-09-08 12:13:15 +02:00
|
|
|
@echo ">> ${target} started on `LC_ALL=C date`"
|
2010-12-18 15:34:05 +01:00
|
|
|
.if !defined(MAKE_JUST_KERNELS)
|
|
|
|
.for target_arch in ${TARGET_ARCHES_${target}}
|
|
|
|
universe_${target}: universe_${target}_${target_arch}
|
|
|
|
universe_${target}_${target_arch}: universe_${target}_prologue
|
2011-02-10 19:54:52 +01:00
|
|
|
@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
|
2008-11-24 12:23:14 +01:00
|
|
|
@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
|
2011-02-10 19:54:52 +01:00
|
|
|
${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
|
2006-09-08 12:13:15 +02:00
|
|
|
TARGET=${target} \
|
2010-12-18 15:34:05 +01:00
|
|
|
TARGET_ARCH=${target_arch} \
|
2011-02-10 19:54:52 +01:00
|
|
|
> _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
|
|
|
|
(echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
|
|
|
|
"check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
|
2010-12-18 15:34:05 +01:00
|
|
|
${MAKEFAIL}))
|
2011-02-10 19:54:52 +01:00
|
|
|
@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
|
2010-12-18 15:34:05 +01:00
|
|
|
.endfor
|
2008-05-23 06:20:59 +02:00
|
|
|
.endif
|
2010-03-18 19:58:17 +01:00
|
|
|
.if !defined(MAKE_JUST_WORLDS)
|
2013-03-31 04:03:34 +02:00
|
|
|
# If we are building world and kernels wait for the required worlds to finish
|
|
|
|
.if !defined(MAKE_JUST_KERNELS)
|
|
|
|
.for target_arch in ${TARGET_ARCHES_${target}}
|
|
|
|
universe_${target}_kernels: universe_${target}_${target_arch}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
universe_${target}: universe_${target}_kernels
|
|
|
|
universe_${target}_kernels: universe_${target}_prologue
|
2011-03-01 15:54:14 +01:00
|
|
|
.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
|
|
|
|
@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
|
2008-11-24 12:23:14 +01:00
|
|
|
${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
|
2008-12-01 01:45:51 +01:00
|
|
|
(echo "${target} 'make LINT' failed," \
|
|
|
|
"check _.${target}.makeLINT for details"| ${MAKEFAIL}))
|
2002-09-26 06:40:54 +02:00
|
|
|
.endif
|
2010-01-08 20:01:50 +01:00
|
|
|
@cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
|
|
|
|
universe_kernels
|
2010-03-18 19:58:17 +01:00
|
|
|
.endif
|
2010-01-08 20:01:50 +01:00
|
|
|
@echo ">> ${target} completed on `LC_ALL=C date`"
|
|
|
|
.endfor
|
|
|
|
universe_kernels: universe_kernconfs
|
2010-01-11 18:58:15 +01:00
|
|
|
.if !defined(TARGET)
|
|
|
|
TARGET!= uname -m
|
|
|
|
.endif
|
2011-03-01 15:54:14 +01:00
|
|
|
KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
|
2010-01-08 20:01:50 +01:00
|
|
|
find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
|
|
|
|
! -name DEFAULTS ! -name NOTES
|
|
|
|
universe_kernconfs:
|
2005-07-19 13:21:14 +02:00
|
|
|
.for kernel in ${KERNCONFS}
|
2011-03-01 15:54:14 +01:00
|
|
|
TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
|
|
|
|
config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
|
2011-01-03 23:48:01 +01:00
|
|
|
grep -v WARNING: | cut -f 2
|
|
|
|
.if empty(TARGET_ARCH_${kernel})
|
|
|
|
.error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old."
|
|
|
|
.endif
|
2010-12-18 15:34:05 +01:00
|
|
|
universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
|
|
|
|
universe_kernconf_${TARGET}_${kernel}:
|
2008-11-24 12:23:14 +01:00
|
|
|
@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
|
|
|
|
${MAKE} ${JFLAG} buildkernel \
|
2010-01-08 20:01:50 +01:00
|
|
|
TARGET=${TARGET} \
|
2010-12-18 15:34:05 +01:00
|
|
|
TARGET_ARCH=${TARGET_ARCH_${kernel}} \
|
2005-07-19 13:21:14 +02:00
|
|
|
KERNCONF=${kernel} \
|
2010-01-08 20:01:50 +01:00
|
|
|
> _.${TARGET}.${kernel} 2>&1 || \
|
|
|
|
(echo "${TARGET} ${kernel} kernel failed," \
|
|
|
|
"check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
|
2004-08-18 09:17:01 +02:00
|
|
|
.endfor
|
|
|
|
universe: universe_epilogue
|
|
|
|
universe_epilogue:
|
2002-09-26 06:40:54 +02:00
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 13:06:38 +02:00
|
|
|
@echo ">>> make universe completed on `LC_ALL=C date`"
|
|
|
|
@echo " (started ${STARTTIME})"
|
2002-09-26 06:40:54 +02:00
|
|
|
@echo "--------------------------------------------------------------"
|
2008-12-01 01:45:51 +01:00
|
|
|
.if defined(DOING_TINDERBOX)
|
|
|
|
@if [ -e ${FAILFILE} ] ; then \
|
|
|
|
echo "Tinderbox failed:" ;\
|
|
|
|
cat ${FAILFILE} ;\
|
|
|
|
exit 1 ;\
|
|
|
|
fi
|
|
|
|
.endif
|
2004-08-18 09:17:01 +02:00
|
|
|
.endif
|
2012-11-03 21:43:12 +01:00
|
|
|
|
|
|
|
buildLINT:
|
|
|
|
${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
|