1998-08-31 01:08:08 +00:00
|
|
|
#
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1998-08-31 01:08:08 +00:00
|
|
|
#
|
|
|
|
# Make command line options:
|
|
|
|
# -DMAKE_KERBEROS4 to build KerberosIV
|
|
|
|
# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
|
|
|
|
# -DNOCLEAN do not clean at all
|
|
|
|
# -DNOCRYPT will prevent building of crypt versions
|
|
|
|
# -DNOPROFILE do not build profiled libraries
|
|
|
|
# -DNOSECURE do not go into secure subdir
|
|
|
|
# -DNOGAMES do not go into games subdir
|
|
|
|
# -DNOSHARE do not go into share subdir
|
|
|
|
# -DNOINFO do not make or install info files
|
|
|
|
# -DNOLIBC_R do not build libc_r.
|
1999-05-03 17:54:59 +00:00
|
|
|
# -DNO_FORTRAN do not build g77 and related libraries.
|
1998-08-31 01:08:08 +00:00
|
|
|
# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list
|
|
|
|
|
|
|
|
#
|
|
|
|
# The intended user-driven targets are:
|
|
|
|
# buildworld - rebuild *everything*, including glue to help do upgrades
|
|
|
|
# installworld- install everything built by "buildworld"
|
|
|
|
# update - convenient way to update your source tree (eg: sup/cvs)
|
|
|
|
# most - build user commands, no libraries or include files
|
|
|
|
# installmost - install user commands, no libraries or include files
|
|
|
|
#
|
|
|
|
# Standard targets (not defined here) are documented in the makefiles in
|
|
|
|
# /usr/share/mk. These include:
|
|
|
|
# obj depend all install clean cleandepend cleanobj
|
|
|
|
|
|
|
|
# Put initial settings here.
|
|
|
|
SUBDIR=
|
|
|
|
|
|
|
|
# We must do share/info early so that installation of info `dir'
|
|
|
|
# entries works correctly. Do it first since it is less likely to
|
|
|
|
# grow dependencies on include and lib than vice versa.
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/share/info)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= share/info
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# We must do include and lib early so that the perl *.ph generation
|
|
|
|
# works correctly as it uses the header files installed by this.
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/include)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= include
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/lib)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= lib
|
|
|
|
.endif
|
|
|
|
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/bin)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= bin
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= games
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/gnu)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= gnu
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \
|
|
|
|
!defined(NOCRYPT) && defined(MAKE_KERBEROS4)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= kerberosIV
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/libexec)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= libexec
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/sbin)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= sbin
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/share) && !defined(NOSHARE)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= share
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/sys)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= sys
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/usr.bin)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= usr.bin
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/usr.sbin)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= usr.sbin
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= secure
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# etc must be last for "distribute" to work
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/etc)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= etc
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# These are last, since it is nice to at least get the base system
|
|
|
|
# rebuilt before you do them.
|
|
|
|
.if defined(LOCAL_DIRS)
|
|
|
|
.for _DIR in ${LOCAL_DIRS}
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
|
1998-08-31 01:08:08 +00:00
|
|
|
SUBDIR+= ${_DIR}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(NOCLEANDIR)
|
|
|
|
CLEANDIR= clean cleandepend
|
|
|
|
.else
|
|
|
|
CLEANDIR= cleandir
|
|
|
|
.endif
|
|
|
|
|
|
|
|
SUP?= cvsup
|
|
|
|
SUPFLAGS?= -g -L 2 -P -
|
|
|
|
|
1999-12-10 10:48:20 +00:00
|
|
|
MAKEOBJDIRPREFIX?= /usr/obj
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
1999-12-10 10:48:20 +00:00
|
|
|
BUILD_ARCH!= sysctl -n hw.machine_arch
|
1999-12-11 17:05:36 +00:00
|
|
|
.if ${BUILD_ARCH} == ${MACHINE_ARCH}
|
|
|
|
OBJTREE= ${MAKEOBJDIRPREFIX}
|
|
|
|
.else
|
1999-12-10 10:48:20 +00:00
|
|
|
OBJTREE= ${MAKEOBJDIRPREFIX}/${MACHINE_ARCH}
|
1999-12-11 17:05:36 +00:00
|
|
|
.endif
|
1999-12-10 10:48:20 +00:00
|
|
|
WORLDTMP= ${OBJTREE}${.CURDIR}/${BUILD_ARCH}
|
1999-12-23 19:18:28 +00:00
|
|
|
# /usr/games added for fortune which depend on strfile
|
Revert previous commit, and
o Add genassym to the list of cross-tools
o Remove sh hashing work-around, we don't need it anymore
o Clean more directories in WORLDTMP when NOCLEAN is specified
The sh hashing work-around is not needed anymore, because we don't
trigger the bug anymore.
When NOCLEAN is not defined, we wipe out the complete WORLDTMP,
including the object directories of the tools we have built. When
NOCLEAN is defined, we remove anything that we install anyway, which
is usr/bin, usr/games, usr/include, usr/lib and usr/sbin.
1999-12-23 11:25:34 +00:00
|
|
|
STRICTTMPPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games
|
1998-10-17 11:56:20 +00:00
|
|
|
TMPPATH= ${STRICTTMPPATH}:${PATH}
|
1998-08-31 01:08:08 +00:00
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
#
|
|
|
|
# Building a world goes through the following stages
|
|
|
|
#
|
|
|
|
# bootstrap-tool stage [BMAKE]
|
|
|
|
# This stage is responsible for creating programs that
|
|
|
|
# are needed for backward compatibility reasons. They
|
|
|
|
# are not built as cross-tools.
|
|
|
|
# build-tool stage [TMAKE]
|
|
|
|
# This stage is responsible for creating the object
|
|
|
|
# tree and building any tools that are needed during
|
|
|
|
# the build process.
|
|
|
|
# cross-tool stage [XMAKE]
|
|
|
|
# This stage is responsible for creating any tools that
|
|
|
|
# are needed for cross-builds. A cross-compiler is one
|
|
|
|
# of them.
|
|
|
|
# world stage [WMAKE]
|
|
|
|
# This stage actually builds the world.
|
|
|
|
# install stage (optional) [IMAKE]
|
|
|
|
# This stage installs a previously built world.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Common environment for bootstrap related stages
|
|
|
|
BOOTSTRAPENV= MAKEOBJDIRPREFIX=${WORLDTMP} \
|
1999-12-10 10:48:20 +00:00
|
|
|
DESTDIR=${WORLDTMP} \
|
|
|
|
INSTALL="sh ${.CURDIR}/tools/install.sh" \
|
1999-12-08 13:45:11 +00:00
|
|
|
MACHINE_ARCH=${BUILD_ARCH} \
|
|
|
|
PATH=${TMPPATH}
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
# Common environment for world related stages
|
|
|
|
CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \
|
|
|
|
COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \
|
1999-12-08 13:45:11 +00:00
|
|
|
LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib \
|
|
|
|
OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.00503
|
1999-12-09 16:40:27 +00:00
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
# bootstrap-tool stage
|
|
|
|
BMAKEENV= ${BOOTSTRAPENV}
|
|
|
|
BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DNOMAN -DNOINFO
|
|
|
|
|
|
|
|
# build-tool stage
|
|
|
|
TMAKEENV= MAKEOBJDIRPREFIX=${OBJTREE} \
|
|
|
|
INSTALL="sh ${.CURDIR}/tools/install.sh" \
|
|
|
|
PATH=${TMPPATH}
|
|
|
|
TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1
|
|
|
|
|
|
|
|
# cross-tool stage
|
|
|
|
XMAKEENV= ${BOOTSTRAPENV} \
|
|
|
|
TARGET_ARCH=${MACHINE_ARCH}
|
|
|
|
XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNOMAN -DNOINFO \
|
|
|
|
-DNO_FORTRAN -DNO_GDB
|
|
|
|
|
|
|
|
# world stage
|
|
|
|
WMAKEENV= ${CROSSENV} \
|
1999-12-10 10:48:20 +00:00
|
|
|
DESTDIR=${WORLDTMP} \
|
|
|
|
INSTALL="sh ${.CURDIR}/tools/install.sh" \
|
|
|
|
PATH=${TMPPATH}
|
1999-12-20 10:32:11 +00:00
|
|
|
WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1
|
1999-12-08 13:45:11 +00:00
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
# install stage
|
|
|
|
IMAKEENV= ${CROSSENV}
|
1999-12-10 10:48:20 +00:00
|
|
|
IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1
|
|
|
|
|
|
|
|
USRDIRS= usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc
|
1999-12-10 10:48:20 +00:00
|
|
|
|
1999-12-12 03:54:58 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386" && ${MACHINE} == "pc98"
|
|
|
|
USRDIRS+= usr/libexec/aout
|
|
|
|
.endif
|
|
|
|
|
1999-12-10 10:48:20 +00:00
|
|
|
INCDIRS= arpa g++/std objc protocols readline rpc rpcsvc security ss
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# buildworld
|
|
|
|
#
|
|
|
|
# Attempt to rebuild the entire system, with reasonable chance of
|
|
|
|
# success, regardless of how old your existing system is.
|
|
|
|
#
|
1999-12-08 13:45:11 +00:00
|
|
|
buildworld:
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-10 10:48:20 +00:00
|
|
|
@echo ">>> Rebuilding the temporary build tree"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-10 10:48:20 +00:00
|
|
|
.if !defined(NOCLEAN)
|
1998-08-31 01:08:08 +00:00
|
|
|
rm -rf ${WORLDTMP}
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
.else
|
Revert previous commit, and
o Add genassym to the list of cross-tools
o Remove sh hashing work-around, we don't need it anymore
o Clean more directories in WORLDTMP when NOCLEAN is specified
The sh hashing work-around is not needed anymore, because we don't
trigger the bug anymore.
When NOCLEAN is not defined, we wipe out the complete WORLDTMP,
including the object directories of the tools we have built. When
NOCLEAN is defined, we remove anything that we install anyway, which
is usr/bin, usr/games, usr/include, usr/lib and usr/sbin.
1999-12-23 11:25:34 +00:00
|
|
|
for dir in bin games include lib sbin; do \
|
|
|
|
rm -rf ${WORLDTMP}/usr/$$dir; \
|
|
|
|
done
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
rm -f ${WORLDTMP}/sys
|
1999-12-10 10:48:20 +00:00
|
|
|
.endif
|
1999-12-08 13:45:11 +00:00
|
|
|
.for _dir in ${USRDIRS}
|
|
|
|
mkdir -p ${WORLDTMP}/${_dir}
|
|
|
|
.endfor
|
|
|
|
.for _dir in ${INCDIRS}
|
|
|
|
mkdir -p ${WORLDTMP}/usr/include/${_dir}
|
|
|
|
.endfor
|
1999-12-09 13:36:16 +00:00
|
|
|
ln -sf ${.CURDIR}/sys ${WORLDTMP}/sys
|
1999-12-10 10:48:20 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 1: bootstrap tools"
|
1999-12-10 10:48:20 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
cd ${.CURDIR}; ${BMAKE} bootstrap-tools
|
1998-08-31 01:08:08 +00:00
|
|
|
.if !defined(NOCLEAN)
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 2: cleaning up the object tree"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
cd ${.CURDIR}; ${TMAKE} ${CLEANDIR:S/^/par-/}
|
1999-01-04 12:05:59 +00:00
|
|
|
.endif
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 2: rebuilding the object tree"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
cd ${.CURDIR}; ${TMAKE} par-obj
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 2: build tools"
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}; ${TMAKE} build-tools
|
1999-11-24 06:04:11 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 3: cross tools"
|
1999-11-24 06:04:11 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}; ${XMAKE} cross-tools
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 4: populating ${WORLDTMP}/usr/include"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}; ${WMAKE} SHARED=symlinks includes
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 4: building libraries"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}; ${WMAKE} -DNOINFO -DNOMAN libraries
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
@echo ">>> stage 4: make dependencies"
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}; ${WMAKE} par-depend
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
@echo ">>> stage 4: building everything.."
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}; ${WMAKE} all
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
everything:
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Building everything.."
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}; ${WMAKE} all
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# installworld
|
|
|
|
#
|
|
|
|
# Installs everything compiled by a 'buildworld'.
|
|
|
|
#
|
|
|
|
installworld:
|
1999-12-10 10:48:20 +00:00
|
|
|
cd ${.CURDIR}; ${IMAKE} reinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# reinstall
|
|
|
|
#
|
|
|
|
# If you have a build server, you can NFS mount the source and obj directories
|
|
|
|
# and do a 'make reinstall' on the *client* to install new binaries from the
|
|
|
|
# most recent server build.
|
|
|
|
#
|
|
|
|
reinstall:
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Making hierarchy"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
|
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Installing everything.."
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
|
1999-04-11 21:48:09 +00:00
|
|
|
.if !defined(NOMAN)
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-04-11 21:48:09 +00:00
|
|
|
@echo ">>> Rebuilding man page indices"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}/share/man; ${MAKE} makedb
|
1999-04-11 21:48:09 +00:00
|
|
|
.endif
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# update
|
|
|
|
#
|
|
|
|
# Update the source tree, by running sup and/or running cvs to update to the
|
|
|
|
# latest copy.
|
|
|
|
#
|
|
|
|
update:
|
|
|
|
.if defined(SUP_UPDATE)
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Running ${SUP}"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
1999-12-16 01:21:48 +00:00
|
|
|
.if defined(SUPFILE)
|
1998-08-31 01:08:08 +00:00
|
|
|
@${SUP} ${SUPFLAGS} ${SUPFILE}
|
1999-12-16 01:21:48 +00:00
|
|
|
.endif
|
1998-08-31 01:08:08 +00:00
|
|
|
.if defined(SUPFILE1)
|
|
|
|
@${SUP} ${SUPFLAGS} ${SUPFILE1}
|
|
|
|
.endif
|
|
|
|
.if defined(SUPFILE2)
|
|
|
|
@${SUP} ${SUPFLAGS} ${SUPFILE2}
|
|
|
|
.endif
|
1999-06-01 02:55:44 +00:00
|
|
|
.if defined(PORTSSUPFILE)
|
|
|
|
@${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
|
|
|
|
.endif
|
1998-08-31 01:08:08 +00:00
|
|
|
.endif
|
|
|
|
.if defined(CVS_UPDATE)
|
|
|
|
@echo "--------------------------------------------------------------"
|
1999-06-04 17:34:28 +00:00
|
|
|
@echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT}
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}; cvs -q update -P -d
|
|
|
|
.endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# most
|
|
|
|
#
|
|
|
|
# Build most of the user binaries on the existing system libs and includes.
|
|
|
|
#
|
|
|
|
most:
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Building programs only"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}/bin; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/sbin; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/libexec; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/usr.bin; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/usr.sbin; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/gnu/libexec; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/gnu/usr.bin; ${MAKE} all
|
|
|
|
cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} all
|
|
|
|
|
|
|
|
#
|
|
|
|
# installmost
|
|
|
|
#
|
|
|
|
# Install the binaries built by the 'most' target. This does not include
|
|
|
|
# libraries or include files.
|
|
|
|
#
|
|
|
|
installmost:
|
|
|
|
@echo "--------------------------------------------------------------"
|
1998-09-17 16:32:00 +00:00
|
|
|
@echo ">>> Installing programs only"
|
1998-08-31 01:08:08 +00:00
|
|
|
@echo "--------------------------------------------------------------"
|
|
|
|
cd ${.CURDIR}/bin; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/sbin; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/libexec; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/usr.bin; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/usr.sbin; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/gnu/libexec; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/gnu/usr.bin; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} install
|
|
|
|
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# From here onwards are utility targets used by the 'make world' and
|
|
|
|
# related targets. If your 'world' breaks, you may like to try to fix
|
|
|
|
# the problem and manually run the following targets to attempt to
|
|
|
|
# complete the build. Beware, this is *not* guaranteed to work, you
|
|
|
|
# need to have a pretty good grip on the current state of the system
|
|
|
|
# to attempt to manually finish it. If in doubt, 'make world' again.
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
1999-12-20 10:32:11 +00:00
|
|
|
# bootstrap-tools: Build tools needed for compatibility
|
1998-08-31 01:08:08 +00:00
|
|
|
#
|
1999-12-10 16:13:41 +00:00
|
|
|
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
|
1999-12-23 19:18:28 +00:00
|
|
|
_strfile= games/fortune/strfile
|
1999-12-10 16:13:41 +00:00
|
|
|
.endif
|
|
|
|
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
bootstrap-tools:
|
1999-12-23 19:18:28 +00:00
|
|
|
.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef gnu/usr.bin/bison
|
1999-12-08 13:45:11 +00:00
|
|
|
cd ${.CURDIR}/${_tool}; \
|
1999-12-10 10:48:20 +00:00
|
|
|
${MAKE} obj; \
|
1999-12-08 13:45:11 +00:00
|
|
|
${MAKE} depend; \
|
|
|
|
${MAKE} all; \
|
1999-12-10 10:48:20 +00:00
|
|
|
${MAKE} install
|
1999-12-08 13:45:11 +00:00
|
|
|
.endfor
|
1999-11-24 06:04:11 +00:00
|
|
|
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
#
|
1999-12-20 10:32:11 +00:00
|
|
|
# build-tools: Build special purpose build tools
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
#
|
|
|
|
.if exists(${.CURDIR}/games) && !defined(NOGAMES)
|
|
|
|
_games= games/adventure games/hack games/phantasia
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if exists(${.CURDIR}/share) && !defined(NOSHARE)
|
|
|
|
_share= share/syscons/scrnmaps
|
|
|
|
.endif
|
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
.if !defined(NO_FORTRAN)
|
|
|
|
_fortran= gnu/usr.bin/cc/f771
|
|
|
|
.endif
|
|
|
|
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
build-tools:
|
1999-12-20 10:32:11 +00:00
|
|
|
.for _tool in bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \
|
o Add games/caesar to the list of bootstrap-tools so that a
buildworld doesn't break because the host doesn't have any
games installed,
o Add a new build stage: TMAKE. TMAKE builds all the build-tools
targets in the respective makefiles. Note that these targets
don't use the bootstrap tools,
o Add elf2exe to the bootstrap-tools when cross-building Alpha on
other platforms,
o Add ${WORLDTMP}/usr/games to TMPPATH,
o Remove ${WORLDTMP}/usr/bin even when NOCLEAN is defined. This
prevents using any bootstrap-tools previously installed. Most
importantly, it prevents using the cross-compiler when we still
need the native compiler.
The current stages are BMAKE, TMAKE, XMAKE and IMAKE in that order.
BMAKE builds bootstrap-tools that either solve compatibility problems
or are needed as cross-tools,
TMAKE builds the support tools necessary by some parts in the source
tree and also performs the cleandir and par-obj targets,
XMAKE builds the includes, libraries and everything (resp.), and
IMAKE installs the world. This stage needs further work if it's to be
used to install -current over -stable for example.
This is the last major update towards cross-building.
1999-12-16 13:47:34 +00:00
|
|
|
lib/libncurses ${_share}
|
|
|
|
cd ${.CURDIR}/${_tool}; ${MAKE} build-tools
|
|
|
|
.endfor
|
|
|
|
|
1999-12-20 10:32:11 +00:00
|
|
|
#
|
|
|
|
# cross-tools: Build cross-building tools
|
|
|
|
#
|
|
|
|
# WARNING: Because the bootstrap tools are expected to run on the
|
|
|
|
# build-machine, MACHINE_ARCH is *always* set to BUILD_ARCH when this
|
|
|
|
# target is being made. TARGET_ARCH is *always* set to reflect the
|
|
|
|
# target-machine (which you can set by specifying MACHINE_ARCH on
|
|
|
|
# make's command-line, get it?).
|
|
|
|
# The reason is simple: we build these tools not to be run on the
|
|
|
|
# architecture we're cross-building, but on the architecture we're
|
|
|
|
# currently building on (ie the host-machine) and we expect these
|
|
|
|
# tools to produce output for the architecture we're trying to
|
|
|
|
# cross-build.
|
|
|
|
#
|
|
|
|
.if ${TARGET_ARCH} == "alpha" && ${MACHINE_ARCH} != "alpha"
|
|
|
|
_elf2exe= usr.sbin/elf2exe
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# XXX - MACHINE should actually be TARGET. But we don't set that...
|
|
|
|
.if ${TARGET_ARCH} == "i386" && ${MACHINE} == "pc98"
|
|
|
|
_aout_tools= usr.bin/size usr.bin/strip gnu/usr.bin/as gnu/usr.bin/ld
|
|
|
|
.endif
|
|
|
|
|
|
|
|
cross-tools:
|
Revert previous commit, and
o Add genassym to the list of cross-tools
o Remove sh hashing work-around, we don't need it anymore
o Clean more directories in WORLDTMP when NOCLEAN is specified
The sh hashing work-around is not needed anymore, because we don't
trigger the bug anymore.
When NOCLEAN is not defined, we wipe out the complete WORLDTMP,
including the object directories of the tools we have built. When
NOCLEAN is defined, we remove anything that we install anyway, which
is usr/bin, usr/games, usr/include, usr/lib and usr/sbin.
1999-12-23 11:25:34 +00:00
|
|
|
.for _tool in ${_aout_tools} ${_elf2exe} usr.bin/genassym usr.bin/gensetdefs \
|
1999-12-20 10:32:11 +00:00
|
|
|
gnu/usr.bin/binutils usr.bin/objformat gnu/usr.bin/cc
|
|
|
|
cd ${.CURDIR}/${_tool}; \
|
|
|
|
${MAKE} obj; \
|
|
|
|
${MAKE} depend; \
|
|
|
|
${MAKE} all; \
|
|
|
|
${MAKE} install
|
|
|
|
.endfor
|
|
|
|
|
1999-11-24 06:04:11 +00:00
|
|
|
#
|
1999-12-08 13:45:11 +00:00
|
|
|
# hierarchy - ensure that all the needed directories are present
|
1999-11-24 06:04:11 +00:00
|
|
|
#
|
1999-12-08 13:45:11 +00:00
|
|
|
hierarchy:
|
|
|
|
cd ${.CURDIR}/etc; ${MAKE} distrib-dirs
|
1998-08-31 01:08:08 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# includes - possibly generate and install the include files.
|
|
|
|
#
|
|
|
|
includes:
|
1999-12-20 10:32:11 +00:00
|
|
|
cd ${.CURDIR}/include; ${MAKE} -B all install
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/gnu/include; ${MAKE} install
|
|
|
|
cd ${.CURDIR}/gnu/lib/libmp; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libobjc; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libreadline; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libregex; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libstdc++; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libdialog; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/gnu/lib/libgmp; ${MAKE} beforeinstall
|
1999-04-03 08:18:43 +00:00
|
|
|
cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus; ${MAKE} beforeinstall
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/secure) && !defined(NOCRYPT)
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/secure/lib/libdes; ${MAKE} beforeinstall
|
|
|
|
.endif
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \
|
|
|
|
defined(MAKE_KERBEROS4)
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libacl; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libkadm; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libkafs; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libkdb; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libkrb; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall
|
|
|
|
.else
|
|
|
|
cd ${.CURDIR}/lib/libtelnet; ${MAKE} beforeinstall
|
|
|
|
.endif
|
1998-08-31 20:48:13 +00:00
|
|
|
.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH})
|
|
|
|
cd ${.CURDIR}/lib/csu/${MACHINE_ARCH}; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
.endif
|
|
|
|
cd ${.CURDIR}/lib/libalias; ${MAKE} beforeinstall
|
1998-09-17 09:35:02 +00:00
|
|
|
cd ${.CURDIR}/lib/libatm; ${MAKE} beforeinstall
|
1998-09-15 07:46:17 +00:00
|
|
|
cd ${.CURDIR}/lib/libdevstat; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libc; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libcalendar; ${MAKE} beforeinstall
|
1998-09-15 07:46:17 +00:00
|
|
|
cd ${.CURDIR}/lib/libcam; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libdisk; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libedit; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libftpio; ${MAKE} beforeinstall
|
1999-10-04 14:57:38 +00:00
|
|
|
cd ${.CURDIR}/lib/libkvm; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libmd; ${MAKE} beforeinstall
|
|
|
|
.if !defined(WANT_CSRG_LIBM)
|
|
|
|
cd ${.CURDIR}/lib/msun; ${MAKE} beforeinstall
|
|
|
|
.endif
|
1999-11-25 20:05:07 +00:00
|
|
|
cd ${.CURDIR}/lib/libncp; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libncurses; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libnetgraph; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libopie; ${MAKE} beforeinstall
|
1998-11-18 01:59:39 +00:00
|
|
|
cd ${.CURDIR}/lib/libpam/libpam; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libpcap; ${MAKE} beforeinstall
|
1998-11-13 00:59:00 +00:00
|
|
|
cd ${.CURDIR}/lib/libradius; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/librpcsvc; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libskey; ${MAKE} beforeinstall
|
1998-10-05 08:06:45 +00:00
|
|
|
cd ${.CURDIR}/lib/libstand; ${MAKE} beforeinstall
|
1998-11-13 00:59:00 +00:00
|
|
|
cd ${.CURDIR}/lib/libtacplus; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libcom_err; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libss; ${MAKE} -B hdrs beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libutil; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/lib/libvgl; ${MAKE} beforeinstall
|
1999-04-02 15:37:07 +00:00
|
|
|
cd ${.CURDIR}/lib/libwrap; ${MAKE} beforeinstall
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/lib/libz; ${MAKE} beforeinstall
|
|
|
|
cd ${.CURDIR}/usr.bin/lex; ${MAKE} beforeinstall
|
|
|
|
|
|
|
|
#
|
1999-12-08 13:45:11 +00:00
|
|
|
# libraries - build all libraries, and install them under ${DESTDIR}.
|
1999-11-24 06:04:11 +00:00
|
|
|
#
|
1999-12-08 13:45:11 +00:00
|
|
|
# The following dependencies exist between the libraries:
|
|
|
|
#
|
|
|
|
# lib*: csu
|
|
|
|
# libatm: libmd
|
|
|
|
# libcrypt: libmd
|
|
|
|
# libdialog: libncurses
|
|
|
|
# libedit: libncurses
|
|
|
|
# libg++: libm
|
|
|
|
# libkrb: libcrypt
|
|
|
|
# libopie: libmd
|
|
|
|
# libpam: libcom_err libcrypt libdes libgcc_pic libkrb libradius libskey \
|
|
|
|
# libtacplus libutil
|
|
|
|
# libradius: libmd
|
|
|
|
# libreadline: libncurses
|
|
|
|
# libskey: libcrypt libmd
|
|
|
|
# libss: libcom_err
|
|
|
|
# libstc++: libm
|
|
|
|
# libtacplus: libmd
|
|
|
|
#
|
|
|
|
# Across directories this comes down to (rougly):
|
|
|
|
#
|
|
|
|
# gnu/lib: lib/libm lib/libncurses
|
|
|
|
# kerberosIV/lib: lib/libcrypt
|
|
|
|
# lib/libpam: secure/lib/libdes kerberosIV/lib/libkrb gnu/lib/libgcc
|
|
|
|
# secure/lib: lib/libmd
|
1998-08-31 01:08:08 +00:00
|
|
|
#
|
1999-04-20 05:33:07 +00:00
|
|
|
.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc)
|
1999-12-08 13:45:11 +00:00
|
|
|
_csu= lib/csu/${MACHINE_ARCH}.pcc
|
1998-08-31 20:48:13 +00:00
|
|
|
.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf"
|
1999-12-08 13:45:11 +00:00
|
|
|
_csu= lib/csu/i386-elf
|
1998-08-31 01:08:08 +00:00
|
|
|
.else
|
1999-12-08 13:45:11 +00:00
|
|
|
_csu= lib/csu/${MACHINE_ARCH}
|
1998-08-31 01:08:08 +00:00
|
|
|
.endif
|
|
|
|
|
1999-01-23 08:44:17 +00:00
|
|
|
.if !defined(NOSECURE) && !defined(NOCRYPT)
|
|
|
|
_secure_lib= secure/lib
|
|
|
|
.endif
|
1998-08-31 01:08:08 +00:00
|
|
|
|
1998-11-20 02:03:52 +00:00
|
|
|
.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4)
|
1999-12-08 13:45:11 +00:00
|
|
|
_kerberosIV_lib= kerberosIV/lib
|
1998-11-20 02:03:52 +00:00
|
|
|
.endif
|
|
|
|
|
1998-08-31 01:08:08 +00:00
|
|
|
.if defined(WANT_CSRG_LIBM)
|
|
|
|
_libm= lib/libm
|
|
|
|
.else
|
|
|
|
_libm= lib/msun
|
|
|
|
.endif
|
|
|
|
|
1998-09-23 06:11:35 +00:00
|
|
|
.if !defined(NOPERL)
|
1999-12-08 13:45:11 +00:00
|
|
|
_libperl= gnu/usr.bin/perl/libperl
|
1998-08-31 01:08:08 +00:00
|
|
|
.endif
|
|
|
|
|
1999-12-17 11:23:56 +00:00
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
|
|
_libkeycap= usr.sbin/pcvt/keycap
|
|
|
|
.endif
|
|
|
|
|
1999-11-24 06:04:11 +00:00
|
|
|
libraries:
|
1999-12-08 13:45:11 +00:00
|
|
|
.for _lib in ${_csu} lib/libmd lib/libcrypt ${_secure_lib} ${_kerberosIV_lib} \
|
|
|
|
gnu/lib/libgcc lib/libcom_err ${_libm} lib/libncurses lib/libradius \
|
|
|
|
lib/libskey lib/libtacplus lib/libutil lib gnu/lib ${_libperl} \
|
1999-12-17 11:23:56 +00:00
|
|
|
usr.bin/lex/lib ${_libkeycap}
|
1999-11-24 06:04:11 +00:00
|
|
|
.if exists(${.CURDIR}/${_lib})
|
1999-12-08 13:45:11 +00:00
|
|
|
cd ${.CURDIR}/${_lib}; \
|
|
|
|
${MAKE} depend; \
|
|
|
|
${MAKE} all; \
|
|
|
|
${MAKE} install
|
1999-01-07 06:26:33 +00:00
|
|
|
.endif
|
1999-07-07 04:46:46 +00:00
|
|
|
.endfor
|
1998-09-01 00:39:02 +00:00
|
|
|
|
1998-08-31 01:08:08 +00:00
|
|
|
.for __target in clean cleandepend cleandir depend obj
|
|
|
|
.for entry in ${SUBDIR}
|
|
|
|
${entry}.${__target}__D: .PHONY
|
1998-08-31 20:48:13 +00:00
|
|
|
@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
|
|
|
|
${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
|
|
|
|
edir=${entry}.${MACHINE_ARCH}; \
|
1998-08-31 01:08:08 +00:00
|
|
|
cd ${.CURDIR}/$${edir}; \
|
|
|
|
else \
|
|
|
|
${ECHODIR} "===> ${DIRPRFX}${entry}"; \
|
|
|
|
edir=${entry}; \
|
|
|
|
cd ${.CURDIR}/$${edir}; \
|
|
|
|
fi; \
|
|
|
|
${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
|
|
|
|
.endfor
|
|
|
|
par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|