1994-08-13 22:47:28 +00:00
|
|
|
#
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1996-07-27 21:47:42 +00:00
|
|
|
#
|
1998-08-31 01:08:08 +00:00
|
|
|
# The user-driven targets are:
|
1998-08-03 08:28:14 +00:00
|
|
|
#
|
2003-02-19 15:40:19 +00:00
|
|
|
# universe - *Really* build *everything* (buildworld and
|
|
|
|
# all kernels on all architectures).
|
2011-01-22 22:57:28 +00: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 01:08:08 +00:00
|
|
|
# buildworld - Rebuild *everything*, including glue to help do
|
|
|
|
# upgrades.
|
|
|
|
# installworld - Install everything built by "buildworld".
|
2006-06-07 03:33:48 +00:00
|
|
|
# world - buildworld + installworld, no kernel.
|
2000-07-31 09:26:59 +00:00
|
|
|
# buildkernel - Rebuild the kernel and the kernel-modules.
|
|
|
|
# installkernel - Install the kernel and the kernel-modules.
|
2003-06-22 10:01:03 +00:00
|
|
|
# installkernel.debug
|
2000-09-19 11:15:40 +00:00
|
|
|
# reinstallkernel - Reinstall the kernel and the kernel-modules.
|
2003-06-22 10:01:03 +00:00
|
|
|
# reinstallkernel.debug
|
2001-03-04 10:43:14 +00:00
|
|
|
# kernel - buildkernel + installkernel.
|
2010-03-03 21:08:44 +00:00
|
|
|
# kernel-toolchain - Builds the subset of world necessary to build a kernel
|
2006-05-26 18:10:06 +00:00
|
|
|
# doxygen - Build API documentation of the kernel, needs doxygen.
|
2011-06-16 12:28:37 +00:00
|
|
|
# update - Convenient way to update your source tree(s).
|
2007-05-16 08:46:35 +00: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.
|
|
|
|
# delete-old - Delete obsolete directories/files/libraries.
|
|
|
|
# delete-old-dirs - Delete obsolete directories.
|
|
|
|
# delete-old-files - Delete obsolete files.
|
|
|
|
# delete-old-libs - Delete obsolete libraries.
|
2011-01-25 08:13:31 +00:00
|
|
|
# targets - Print a list of supported TARGET/TARGET_ARCH pairs
|
|
|
|
# for world and kernel targets.
|
2011-02-10 18:54:52 +00:00
|
|
|
# toolchains - Build a toolchain for all world and kernel targets.
|
1998-08-03 08:28:14 +00:00
|
|
|
#
|
1998-08-31 01:08:08 +00:00
|
|
|
# This makefile is simple by design. The FreeBSD make automatically reads
|
2002-12-30 16:48:35 +00:00
|
|
|
# the /usr/share/mk/sys.mk unless the -m argument is specified on the
|
1998-08-31 01:08:08 +00: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 21:47:42 +00:00
|
|
|
#
|
2011-01-11 18:32:05 +00:00
|
|
|
# Most of the user-driven targets (as listed above) are implemented in
|
2011-01-11 22:57:41 +00:00
|
|
|
# Makefile.inc1. The exceptions are universe, tinderbox and targets.
|
1996-07-27 21:47:42 +00:00
|
|
|
#
|
2002-05-08 01:55:08 +00:00
|
|
|
# If you want to build your system from source be sure that /usr/obj has
|
2011-01-12 04:59:29 +00:00
|
|
|
# at least 1GB of diskspace available. A complete 'universe' build requires
|
|
|
|
# about 15GB of space.
|
1997-08-05 03:49:49 +00:00
|
|
|
#
|
2002-05-08 01:55:08 +00:00
|
|
|
# For individuals wanting to build from the sources currently on their
|
|
|
|
# system, the simple instructions are:
|
1997-08-05 03:49:49 +00:00
|
|
|
#
|
2002-05-08 01:55:08 +00:00
|
|
|
# 1. `cd /usr/src' (or to the directory containing your source tree).
|
2006-06-07 03:33:48 +00:00
|
|
|
# 2. Define `HISTORICAL_MAKE_WORLD' variable (see README).
|
|
|
|
# 3. `make world'
|
1997-08-05 03:49:49 +00:00
|
|
|
#
|
2002-05-08 01:55:08 +00:00
|
|
|
# For individuals wanting to upgrade their sources (even if only a
|
|
|
|
# delta of a few days):
|
|
|
|
#
|
2005-07-23 14:23:30 +00: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 09:53:42 +00:00
|
|
|
# [steps 3. & 4. can be combined by using the "kernel" target]
|
2005-07-23 14:23:30 +00:00
|
|
|
# 5. `reboot' (in single user mode: boot -s from the loader prompt).
|
|
|
|
# 6. `mergemaster -p'
|
|
|
|
# 7. `make installworld'
|
|
|
|
# 8. `make delete-old'
|
2011-04-10 03:53:06 +00:00
|
|
|
# 9. `mergemaster' (you may wish to use -i, along with -U or -F).
|
2005-07-23 14:23:30 +00:00
|
|
|
# 10. `reboot'
|
|
|
|
# 11. `make delete-old-libs' (in case no 3rd party program uses them anymore)
|
2002-05-08 01:55:08 +00:00
|
|
|
#
|
|
|
|
# See src/UPDATING `COMMON ITEMS' for more complete information.
|
1997-08-05 03:49:49 +00:00
|
|
|
#
|
2006-09-08 10:13:15 +00: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 05:14:54 +00:00
|
|
|
# and once the world is built you can cross build a kernel using the
|
|
|
|
# buildkernel target.
|
|
|
|
#
|
1998-08-31 01:08:08 +00:00
|
|
|
# Define the user-driven targets. These are listed here in alphabetical
|
|
|
|
# order, but that's not important.
|
1996-07-27 21:47:42 +00:00
|
|
|
#
|
2003-12-09 02:08:19 +00: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 19:33:18 +00:00
|
|
|
# For more information, see the build(7) manual page.
|
|
|
|
#
|
2007-05-16 08:46:35 +00: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 14:39:26 +00:00
|
|
|
depend distribute distributekernel distributekernel.debug \
|
|
|
|
distributeworld distrib-dirs distribution doxygen \
|
2006-05-26 18:10:06 +00:00
|
|
|
everything hierarchy install installcheck installkernel \
|
2011-03-02 14:39:26 +00:00
|
|
|
installkernel.debug packagekernel packageworld \
|
|
|
|
reinstallkernel reinstallkernel.debug \
|
2006-05-26 18:10:06 +00:00
|
|
|
installworld kernel-toolchain libraries lint maninstall \
|
2006-03-18 14:30:23 +00:00
|
|
|
obj objlink regress rerelease showconfig tags toolchain update \
|
2003-12-09 02:08:19 +00:00
|
|
|
_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
|
2004-11-06 03:14:26 +00:00
|
|
|
_build-tools _cross-tools _includes _libraries _depend \
|
2010-06-13 13:02:43 +00:00
|
|
|
build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
|
|
|
|
|
2006-03-15 14:22:32 +00:00
|
|
|
TGTS+= ${SUBDIR_TARGETS}
|
1999-12-08 18:10:15 +00:00
|
|
|
|
2002-06-03 14:49:34 +00:00
|
|
|
BITGTS= files includes
|
2002-05-24 16:08:13 +00:00
|
|
|
BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
|
2003-08-30 13:33:41 +00:00
|
|
|
TGTS+= ${BITGTS}
|
2002-05-24 16:08:13 +00:00
|
|
|
|
2002-04-29 15:22:01 +00:00
|
|
|
.ORDER: buildworld installworld
|
2002-04-30 11:50:01 +00:00
|
|
|
.ORDER: buildworld distributeworld
|
2003-02-27 13:11:33 +00:00
|
|
|
.ORDER: buildworld buildkernel
|
2002-04-29 15:22:01 +00:00
|
|
|
.ORDER: buildkernel installkernel
|
2003-06-22 10:01:03 +00:00
|
|
|
.ORDER: buildkernel installkernel.debug
|
2002-04-29 15:22:01 +00:00
|
|
|
.ORDER: buildkernel reinstallkernel
|
2003-06-22 10:01:03 +00:00
|
|
|
.ORDER: buildkernel reinstallkernel.debug
|
2002-04-29 15:22:01 +00: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 10:00:42 +00:00
|
|
|
PATH= /sbin:/bin:/usr/sbin:/usr/bin
|
2002-12-02 14:31:21 +00:00
|
|
|
MAKEOBJDIRPREFIX?= /usr/obj
|
2004-12-16 19:55:57 +00:00
|
|
|
_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
|
2006-03-01 13:07:17 +00:00
|
|
|
${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
|
2004-12-16 19:55:57 +00:00
|
|
|
-f /dev/null -V MAKEOBJDIRPREFIX dummy
|
2004-08-18 06:49:56 +00:00
|
|
|
.if !empty(_MAKEOBJDIRPREFIX)
|
|
|
|
.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
|
2006-03-01 13:07:17 +00:00
|
|
|
(in make.conf(5)) or command-line variable.
|
2004-08-18 06:49:56 +00: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 10:00:42 +00:00
|
|
|
MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
|
2003-07-04 17:35:26 +00: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 10:00:42 +00:00
|
|
|
`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
|
2003-07-04 14:27:06 +00:00
|
|
|
-m ${.CURDIR}/share/mk
|
2011-02-02 23:59:24 +00:00
|
|
|
_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
|
1994-08-13 22:47:28 +00:00
|
|
|
|
2011-01-31 15:17:47 +00:00
|
|
|
# Guess machine architecture from machine type, and vice versa.
|
|
|
|
.if !defined(TARGET_ARCH) && defined(TARGET)
|
2011-05-14 01:53:38 +00:00
|
|
|
_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/mips/mipsel/}
|
2011-01-31 15:17:47 +00:00
|
|
|
.elif !defined(TARGET) && defined(TARGET_ARCH) && \
|
|
|
|
${TARGET_ARCH} != ${MACHINE_ARCH}
|
|
|
|
_TARGET= ${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/}
|
|
|
|
.endif
|
|
|
|
# Legacy names, for a transition period mips:mips -> mipsel:mips
|
|
|
|
.if defined(TARGET) && defined(TARGET_ARCH) && \
|
|
|
|
${TARGET_ARCH} == "mips" && ${TARGET} == "mips"
|
|
|
|
.warning "TARGET_ARCH of mips is deprecated in favor of mipsel or mipseb"
|
|
|
|
.if defined(TARGET_BIG_ENDIAN)
|
|
|
|
_TARGET_ARCH=mipseb
|
|
|
|
.else
|
|
|
|
_TARGET_ARCH=mipsel
|
|
|
|
.endif
|
|
|
|
.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 12:02:52 +00:00
|
|
|
#
|
2003-08-28 04:03:13 +00: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 21:47:42 +00:00
|
|
|
#
|
2003-08-28 04:03:13 +00:00
|
|
|
.if defined(ALWAYS_CHECK_MAKE)
|
2003-08-30 13:33:41 +00:00
|
|
|
${TGTS}: upgrade_checks
|
2003-08-28 04:03:13 +00:00
|
|
|
.else
|
|
|
|
buildworld: upgrade_checks
|
|
|
|
.endif
|
|
|
|
|
2004-02-16 20:18:25 +00:00
|
|
|
#
|
2004-02-20 02:10:35 +00:00
|
|
|
# This 'cleanworld' target is not included in TGTS, because it is not a
|
2004-02-19 21:09:58 +00: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 20:05:47 +00:00
|
|
|
# files with file flags set, so this unsets them and tries the 'rm' a
|
2004-02-19 21:09:58 +00: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 19:05:32 +00:00
|
|
|
# needed to correctly handle all the possible situations. Removing all
|
2011-11-20 20:05:47 +00: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 21:09:58 +00:00
|
|
|
#
|
|
|
|
BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
|
2004-02-20 02:10:35 +00:00
|
|
|
cleanworld:
|
2004-02-19 21:09:58 +00:00
|
|
|
.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
|
|
|
|
.if exists(${BW_CANONICALOBJDIR}/)
|
|
|
|
-rm -rf ${BW_CANONICALOBJDIR}/*
|
2007-10-18 08:41:52 +00:00
|
|
|
-chflags -R 0 ${BW_CANONICALOBJDIR}
|
2004-02-19 21:09:58 +00:00
|
|
|
rm -rf ${BW_CANONICALOBJDIR}/*
|
|
|
|
.endif
|
|
|
|
# To be safe in this case, fall back to a 'make cleandir'
|
2004-08-09 11:38:41 +00:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
|
2004-02-19 21:09:58 +00:00
|
|
|
.else
|
|
|
|
-rm -rf ${.OBJDIR}/*
|
2007-10-18 08:41:52 +00:00
|
|
|
-chflags -R 0 ${.OBJDIR}
|
2004-02-19 21:09:58 +00:00
|
|
|
rm -rf ${.OBJDIR}/*
|
|
|
|
.endif
|
2004-02-16 20:18:25 +00:00
|
|
|
|
2003-08-28 04:03:13 +00:00
|
|
|
#
|
|
|
|
# Handle the user-driven targets, using the source relative mk files.
|
|
|
|
#
|
|
|
|
|
2003-08-30 13:33:41 +00:00
|
|
|
${TGTS}:
|
2011-02-02 23:59:24 +00:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
|
1995-01-03 22:03:25 +00:00
|
|
|
|
1998-09-15 05:10:17 +00:00
|
|
|
# Set a reasonable default
|
|
|
|
.MAIN: all
|
|
|
|
|
2001-03-02 16:52:14 +00:00
|
|
|
STARTTIME!= LC_ALL=C date
|
2011-04-12 02:07:23 +00:00
|
|
|
CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s
|
2008-03-25 15:47:22 +00:00
|
|
|
.if !empty(CHECK_TIME)
|
|
|
|
.error check your date/time: ${STARTTIME}
|
|
|
|
.endif
|
2004-08-18 07:17:01 +00:00
|
|
|
|
|
|
|
.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
|
1999-12-08 18:10:15 +00:00
|
|
|
#
|
|
|
|
# world
|
|
|
|
#
|
2004-07-16 02:51:28 +00: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 18:10:15 +00:00
|
|
|
#
|
|
|
|
world: upgrade_checks
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 11:06:38 +00:00
|
|
|
@echo ">>> make world started on ${STARTTIME}"
|
1999-12-08 18:10:15 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
.if target(pre-world)
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> Making 'pre-world' target"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2004-08-09 11:38:41 +00:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
|
1999-12-08 18:10:15 +00:00
|
|
|
.endif
|
2004-08-09 11:38:41 +00:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
|
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
|
1999-12-08 18:10:15 +00:00
|
|
|
.if target(post-world)
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> Making 'post-world' target"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2004-08-09 11:38:41 +00:00
|
|
|
${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
|
1999-12-08 18:10:15 +00:00
|
|
|
.endif
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 11:06:38 +00:00
|
|
|
@echo ">>> make world completed on `LC_ALL=C date`"
|
|
|
|
@echo " (started ${STARTTIME})"
|
1999-12-08 18:10:15 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
2004-07-16 02:51:28 +00: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 21:21:34 +00:00
|
|
|
@echo "'Rebuilding world', for how to upgrade your system."
|
2004-07-18 18:55:31 +00:00
|
|
|
@echo "Define DESTDIR to where you want to install FreeBSD,"
|
2004-07-16 02:51:28 +00:00
|
|
|
@echo "including /, to override this warning and proceed as usual."
|
2004-07-18 18:55:31 +00:00
|
|
|
@echo ""
|
2004-07-16 02:51:28 +00:00
|
|
|
@echo "Bailing out now..."
|
|
|
|
@false
|
|
|
|
.endif
|
1999-12-08 18:10:15 +00:00
|
|
|
|
2002-04-29 15:22:01 +00:00
|
|
|
#
|
|
|
|
# kernel
|
|
|
|
#
|
|
|
|
# Short hand for `make buildkernel installkernel'
|
|
|
|
#
|
|
|
|
kernel: buildkernel installkernel
|
|
|
|
|
1996-07-27 21:47:42 +00:00
|
|
|
#
|
1998-08-31 01:08:08 +00:00
|
|
|
# Perform a few tests to determine if the installed tools are adequate
|
2002-11-28 13:08:09 +00:00
|
|
|
# for building the world.
|
1998-04-24 17:13:33 +00:00
|
|
|
#
|
2000-01-09 18:17:48 +00:00
|
|
|
upgrade_checks:
|
2005-03-02 12:33:23 +00:00
|
|
|
@if ! (cd ${.CURDIR}/tools/build/make_check && \
|
2004-12-07 14:41:16 +00:00
|
|
|
PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
|
2003-07-19 23:17:08 +00: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 10:00:42 +00:00
|
|
|
then \
|
2007-12-13 00:08:02 +00: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 10:00:42 +00:00
|
|
|
fi
|
2000-01-09 18:17:48 +00:00
|
|
|
|
|
|
|
#
|
2002-12-02 14:31:21 +00:00
|
|
|
# Upgrade make(1) to the current version using the installed
|
2007-12-11 20:00:55 +00:00
|
|
|
# headers, libraries and tools. Also, allow the location of
|
|
|
|
# the system bsdmake-like utility to be overridden.
|
2000-01-09 18:17:48 +00:00
|
|
|
#
|
2002-12-02 14:31:21 +00:00
|
|
|
MMAKEENV= MAKEOBJDIRPREFIX=${MAKEPATH} \
|
|
|
|
DESTDIR= \
|
|
|
|
INSTALL="sh ${.CURDIR}/tools/install.sh"
|
2007-12-13 00:08:02 +00:00
|
|
|
MMAKE= ${MMAKEENV} ${MAKE} \
|
2002-12-02 14:31:21 +00:00
|
|
|
-D_UPGRADING \
|
2004-12-21 09:59:45 +00:00
|
|
|
-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
|
2006-11-21 08:25:28 +00:00
|
|
|
-DNO_CPU_CFLAGS -DNO_WERROR
|
2002-12-02 14:31:21 +00:00
|
|
|
|
2003-11-07 08:36:55 +00:00
|
|
|
make: .PHONY
|
2000-01-09 18:17:48 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
2003-06-22 21:56:22 +00:00
|
|
|
@echo ">>> Building an up-to-date make(1)"
|
2000-01-09 18:17:48 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
2004-08-09 11:38:41 +00:00
|
|
|
${_+_}@cd ${.CURDIR}/usr.bin/make; \
|
2002-12-02 14:31:21 +00:00
|
|
|
${MMAKE} obj && \
|
|
|
|
${MMAKE} depend && \
|
|
|
|
${MMAKE} all && \
|
|
|
|
${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
|
1998-03-13 09:41:58 +00:00
|
|
|
|
2008-12-01 00:45:51 +00:00
|
|
|
tinderbox:
|
2011-02-10 18:54:52 +00:00
|
|
|
@cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
|
|
|
|
|
|
|
|
toolchains:
|
|
|
|
@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
|
2008-12-01 00:45:51 +00:00
|
|
|
|
2003-02-19 15:40:19 +00:00
|
|
|
#
|
|
|
|
# universe
|
|
|
|
#
|
|
|
|
# Attempt to rebuild *everything* for all supported architectures,
|
2004-08-18 07:17:01 +00:00
|
|
|
# with a reasonable chance of success, regardless of how old your
|
2003-02-19 15:40:19 +00:00
|
|
|
# existing system is.
|
|
|
|
#
|
2011-01-07 20:36:27 +00:00
|
|
|
.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
|
2011-05-14 01:53:38 +00:00
|
|
|
TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
|
2010-12-18 14:34:05 +00:00
|
|
|
TARGET_ARCHES_arm?= arm armeb
|
2011-04-29 18:27:50 +00:00
|
|
|
TARGET_ARCHES_mips?= mipsel mipseb mips64el mips64eb mipsn32eb
|
2010-12-18 14:34:05 +00:00
|
|
|
TARGET_ARCHES_powerpc?= powerpc powerpc64
|
|
|
|
TARGET_ARCHES_pc98?= i386
|
|
|
|
.for target in ${TARGETS}
|
|
|
|
TARGET_ARCHES_${target}?= ${target}
|
|
|
|
.endfor
|
2007-04-02 21:32:44 +00:00
|
|
|
|
2011-02-10 18:54:52 +00:00
|
|
|
.if defined(UNIVERSE_TARGET)
|
|
|
|
MAKE_JUST_WORLDS= YES
|
|
|
|
.else
|
|
|
|
UNIVERSE_TARGET?= buildworld
|
|
|
|
.endif
|
2011-03-01 14:54:14 +00:00
|
|
|
KERNSRCDIR?= ${.CURDIR}/sys
|
2011-02-10 18:54:52 +00:00
|
|
|
|
2011-01-07 20:36:27 +00:00
|
|
|
targets:
|
2011-01-25 08:13:31 +00:00
|
|
|
@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
|
2011-01-07 20:36:27 +00:00
|
|
|
.for target in ${TARGETS}
|
|
|
|
.for target_arch in ${TARGET_ARCHES_${target}}
|
|
|
|
@echo " ${target}/${target_arch}"
|
|
|
|
.endfor
|
|
|
|
.endfor
|
|
|
|
|
2008-12-01 00:45:51 +00:00
|
|
|
.if defined(DOING_TINDERBOX)
|
2011-01-22 23:16:44 +00:00
|
|
|
FAILFILE=${.CURDIR}/_.tinderbox.failed
|
2008-12-01 00:45:51 +00:00
|
|
|
MAKEFAIL=tee -a ${FAILFILE}
|
|
|
|
.else
|
|
|
|
MAKEFAIL=cat
|
|
|
|
.endif
|
|
|
|
|
2004-08-18 07:17:01 +00:00
|
|
|
universe: universe_prologue
|
|
|
|
universe_prologue:
|
2002-09-26 04:40:54 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> make universe started on ${STARTTIME}"
|
|
|
|
@echo "--------------------------------------------------------------"
|
2008-12-01 00:45:51 +00:00
|
|
|
.if defined(DOING_TINDERBOX)
|
2011-01-23 16:28:44 +00:00
|
|
|
@rm -f ${FAILFILE}
|
2008-12-01 00:45:51 +00:00
|
|
|
.endif
|
2007-04-02 21:32:44 +00:00
|
|
|
.for target in ${TARGETS}
|
2006-09-08 10:13:15 +00:00
|
|
|
universe: universe_${target}
|
|
|
|
.ORDER: universe_prologue universe_${target} universe_epilogue
|
2010-12-18 14:34:05 +00:00
|
|
|
universe_${target}: universe_${target}_prologue
|
|
|
|
universe_${target}_prologue:
|
2006-09-08 10:13:15 +00:00
|
|
|
@echo ">> ${target} started on `LC_ALL=C date`"
|
2010-12-18 14:34:05 +00: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 18:54:52 +00:00
|
|
|
@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
|
2008-11-24 11:23:14 +00:00
|
|
|
@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
|
2011-02-10 18:54:52 +00:00
|
|
|
${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
|
2006-09-08 10:13:15 +00:00
|
|
|
TARGET=${target} \
|
2010-12-18 14:34:05 +00:00
|
|
|
TARGET_ARCH=${target_arch} \
|
2011-02-10 18:54:52 +00: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 14:34:05 +00:00
|
|
|
${MAKEFAIL}))
|
2011-02-10 18:54:52 +00:00
|
|
|
@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
|
2010-12-18 14:34:05 +00:00
|
|
|
.endfor
|
2008-05-23 04:20:59 +00:00
|
|
|
.endif
|
2010-03-18 18:58:17 +00:00
|
|
|
.if !defined(MAKE_JUST_WORLDS)
|
2011-03-01 14:54:14 +00:00
|
|
|
.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
|
|
|
|
@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
|
2008-11-24 11:23:14 +00:00
|
|
|
${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
|
2008-12-01 00:45:51 +00:00
|
|
|
(echo "${target} 'make LINT' failed," \
|
|
|
|
"check _.${target}.makeLINT for details"| ${MAKEFAIL}))
|
2002-09-26 04:40:54 +00:00
|
|
|
.endif
|
2010-01-08 19:01:50 +00:00
|
|
|
@cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
|
|
|
|
universe_kernels
|
2010-03-18 18:58:17 +00:00
|
|
|
.endif
|
2010-01-08 19:01:50 +00:00
|
|
|
@echo ">> ${target} completed on `LC_ALL=C date`"
|
|
|
|
.endfor
|
|
|
|
universe_kernels: universe_kernconfs
|
2010-01-11 17:58:15 +00:00
|
|
|
.if !defined(TARGET)
|
|
|
|
TARGET!= uname -m
|
|
|
|
.endif
|
2011-03-01 14:54:14 +00:00
|
|
|
KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
|
2010-01-08 19:01:50 +00:00
|
|
|
find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
|
|
|
|
! -name DEFAULTS ! -name NOTES
|
|
|
|
universe_kernconfs:
|
2005-07-19 11:21:14 +00:00
|
|
|
.for kernel in ${KERNCONFS}
|
2011-03-01 14:54:14 +00:00
|
|
|
TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
|
|
|
|
config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
|
2011-01-03 22:48:01 +00: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 14:34:05 +00:00
|
|
|
universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
|
|
|
|
universe_kernconf_${TARGET}_${kernel}:
|
2008-11-24 11:23:14 +00:00
|
|
|
@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
|
|
|
|
${MAKE} ${JFLAG} buildkernel \
|
2010-01-08 19:01:50 +00:00
|
|
|
TARGET=${TARGET} \
|
2010-12-18 14:34:05 +00:00
|
|
|
TARGET_ARCH=${TARGET_ARCH_${kernel}} \
|
2005-07-19 11:21:14 +00:00
|
|
|
KERNCONF=${kernel} \
|
2010-01-08 19:01:50 +00:00
|
|
|
> _.${TARGET}.${kernel} 2>&1 || \
|
|
|
|
(echo "${TARGET} ${kernel} kernel failed," \
|
|
|
|
"check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
|
2004-08-18 07:17:01 +00:00
|
|
|
.endfor
|
|
|
|
universe: universe_epilogue
|
|
|
|
universe_epilogue:
|
2002-09-26 04:40:54 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
2003-08-06 11:06:38 +00:00
|
|
|
@echo ">>> make universe completed on `LC_ALL=C date`"
|
|
|
|
@echo " (started ${STARTTIME})"
|
2002-09-26 04:40:54 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
2008-12-01 00:45:51 +00:00
|
|
|
.if defined(DOING_TINDERBOX)
|
|
|
|
@if [ -e ${FAILFILE} ] ; then \
|
|
|
|
echo "Tinderbox failed:" ;\
|
|
|
|
cat ${FAILFILE} ;\
|
|
|
|
exit 1 ;\
|
|
|
|
fi
|
|
|
|
.endif
|
2004-08-18 07:17:01 +00:00
|
|
|
.endif
|