| version 1.227, 2004/01/08 07:01:06 |
version 1.228, 2004/01/27 01:45:07 |
|
|
| .endfor |
.endfor |
| |
|
| .if exists(regress) |
.if exists(regress) |
| regression-tests: |
regression-tests: .PHONY |
| @echo Running regression tests... |
@echo Running regression tests... |
| @(cd ${.CURDIR}/regress && ${MAKE} regress) |
@(cd ${.CURDIR}/regress && ${MAKE} regress) |
| .endif |
.endif |
| Line 132 regression-tests: |
|
| Line 132 regression-tests: |
|
| NOPOSTINSTALL= # defined |
NOPOSTINSTALL= # defined |
| .endif |
.endif |
| |
|
| afterinstall: |
afterinstall: .PHONY |
| .if ${MKMAN} != "no" |
.if ${MKMAN} != "no" |
| (cd ${.CURDIR}/share/man && ${MAKE} makedb) |
(cd ${.CURDIR}/share/man && ${MAKE} makedb) |
| .endif |
.endif |
|
|
| (cd ${.CURDIR} && ${MAKE} postinstall-check) |
(cd ${.CURDIR} && ${MAKE} postinstall-check) |
| .endif |
.endif |
| |
|
| postinstall-check: |
postinstall-check: .PHONY |
| @echo " === Post installation checks ===" |
@echo " === Post installation checks ===" |
| ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check |
${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check |
| @echo " ================================" |
@echo " ================================" |
| |
|
| postinstall-fix: .NOTMAIN |
postinstall-fix: .NOTMAIN .PHONY |
| @echo " === Post installation fixes ===" |
@echo " === Post installation fixes ===" |
| ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix |
${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix |
| @echo " ===============================" |
@echo " ===============================" |
| |
|
| postinstall-fix-obsolete: .NOTMAIN |
postinstall-fix-obsolete: .NOTMAIN .PHONY |
| @echo " === Removing obsolete files ===" |
@echo " === Removing obsolete files ===" |
| ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete |
${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete |
| @echo " ===============================" |
@echo " ===============================" |
| Line 205 BUILDTARGETS+= do-obsolete |
|
| Line 205 BUILDTARGETS+= do-obsolete |
|
| # |
# |
| |
|
| .ORDER: ${BUILDTARGETS} |
.ORDER: ${BUILDTARGETS} |
| includes-lib: includes-include includes-sys |
includes-lib: .PHONY includes-include includes-sys |
| includes-gnu: includes-lib |
includes-gnu: .PHONY includes-lib |
| |
|
| # |
# |
| # Build the system and install into DESTDIR. |
# Build the system and install into DESTDIR. |
| Line 214 includes-gnu: includes-lib |
|
| Line 214 includes-gnu: includes-lib |
|
| |
|
| START_TIME!= date |
START_TIME!= date |
| |
|
| build: |
build: .PHONY |
| .if defined(BUILD_DONE) |
.if defined(BUILD_DONE) |
| @echo "Build already installed into ${DESTDIR}" |
@echo "Build already installed into ${DESTDIR}" |
| .else |
.else |
|
|
| # ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != / |
# ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != / |
| # |
# |
| |
|
| distribution buildworld: |
distribution buildworld: .PHONY |
| .if make(buildworld) && \ |
.if make(buildworld) && \ |
| (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") |
(!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") |
| @echo "Won't make ${.TARGET} with DESTDIR=/" |
@echo "Won't make ${.TARGET} with DESTDIR=/" |
| Line 256 distribution buildworld: |
|
| Line 256 distribution buildworld: |
|
| HOST_UNAME_S!= uname -s |
HOST_UNAME_S!= uname -s |
| HOST_UNAME_M!= uname -m |
HOST_UNAME_M!= uname -m |
| |
|
| installworld: |
installworld: .PHONY |
| .if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") |
.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") |
| @echo "Can't make ${.TARGET} to DESTDIR=/" |
@echo "Can't make ${.TARGET} to DESTDIR=/" |
| @false |
@false |
|
|
| # |
# |
| |
|
| .for tgt in sets sourcesets |
.for tgt in sets sourcesets |
| ${tgt}: |
${tgt}: .PHONY |
| (cd ${.CURDIR}/distrib/sets && ${MAKE} $@) |
(cd ${.CURDIR}/distrib/sets && ${MAKE} $@) |
| .endfor |
.endfor |
| |
|
|
|
| # are made. |
# are made. |
| # |
# |
| |
|
| release snapshot: |
release snapshot: .PHONY |
| (cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build) |
(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build) |
| (cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release) |
(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release) |
| @echo "make ${.TARGET} started at: ${START_TIME}" |
@echo "make ${.TARGET} started at: ${START_TIME}" |
| Line 304 release snapshot: |
|
| Line 304 release snapshot: |
|
| # Special components of the "make build" process. |
# Special components of the "make build" process. |
| # |
# |
| |
|
| check-tools: |
check-tools: .PHONY |
| .if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN) |
.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN) |
| @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.' |
@echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.' |
| @echo '*** May result in a failed build or corrupt binaries!' |
@echo '*** May result in a failed build or corrupt binaries!' |
|
|
| @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!' |
@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!' |
| .endif |
.endif |
| |
|
| do-distrib-dirs: |
do-distrib-dirs: .PHONY |
| .if !defined(DESTDIR) || ${DESTDIR} == "" |
.if !defined(DESTDIR) || ${DESTDIR} == "" |
| (cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) |
(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs) |
| .else |
.else |
| Line 323 do-distrib-dirs: |
|
| Line 323 do-distrib-dirs: |
|
| .endif |
.endif |
| |
|
| .for targ in cleandir obj includes |
.for targ in cleandir obj includes |
| do-${targ}: ${targ} |
do-${targ}: .PHONY ${targ} |
| @true |
@true |
| .endfor |
.endfor |
| |
|
| .for dir in tools tools/compat lib/csu gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib |
.for dir in tools tools/compat lib/csu gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib |
| do-${dir:S/\//-/g}: |
do-${dir:S/\//-/g}: .PHONY |
| .for targ in dependall install |
.for targ in dependall install |
| (cd ${.CURDIR}/${dir} && ${MAKE} ${targ}) |
(cd ${.CURDIR}/${dir} && ${MAKE} ${targ}) |
| .endfor |
.endfor |
| .endfor |
.endfor |
| |
|
| do-ld.so: |
do-ld.so: .PHONY |
| .for targ in dependall install |
.for targ in dependall install |
| .if (${OBJECT_FMT} == "a.out") |
.if (${OBJECT_FMT} == "a.out") |
| (cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ}) |
(cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ}) |
|
|
| .endif |
.endif |
| .endfor |
.endfor |
| |
|
| do-build: |
do-build: .PHONY |
| .for targ in dependall install |
.for targ in dependall install |
| (cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no) |
(cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no) |
| .endfor |
.endfor |
| |
|
| do-x11: |
do-x11: .PHONY |
| (cd ${.CURDIR}/x11 && ${MAKE} build) |
(cd ${.CURDIR}/x11 && ${MAKE} build) |
| |
|
| do-obsolete: |
do-obsolete: .PHONY |
| (cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists) |
(cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists) |
| |
|
| # |
# |
|
|
| # |
# |
| |
|
| .for dir in bin etc distrib games libexec regress sbin usr.sbin tools |
.for dir in bin etc distrib games libexec regress sbin usr.sbin tools |
| includes-${dir}: |
includes-${dir}: .PHONY |
| @true |
@true |
| .endfor |
.endfor |
| .for dir in etc distrib regress |
.for dir in etc distrib regress |
| install-${dir}: |
install-${dir}: .PHONY |
| @true |
@true |
| .endfor |
.endfor |
| |
|
|
|
| # XXX this needs to change when distrib Makefiles are recursion compliant |
# XXX this needs to change when distrib Makefiles are recursion compliant |
| # XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... |
# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... |
| # |
# |
| dependall-distrib depend-distrib all-distrib: |
dependall-distrib depend-distrib all-distrib: .PHONY |
| @true |
@true |
| |
|
| .include <bsd.sys.mk> |
.include <bsd.sys.mk> |
| Line 381 dependall-distrib depend-distrib all-dis |
|
| Line 381 dependall-distrib depend-distrib all-dis |
|
| .include <bsd.kernobj.mk> |
.include <bsd.kernobj.mk> |
| .include <bsd.subdir.mk> |
.include <bsd.subdir.mk> |
| |
|
| build-docs: ${.CURDIR}/BUILDING |
build-docs: .PHONY ${.CURDIR}/BUILDING |
| ${.CURDIR}/BUILDING: doc/BUILDING.mdoc |
${.CURDIR}/BUILDING: doc/BUILDING.mdoc |
| ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@ |
${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@ |
| |
|
| Line 389 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc |
|
| Line 389 ${.CURDIR}/BUILDING: doc/BUILDING.mdoc |
|
| # |
# |
| # Display current make(1) parameters |
# Display current make(1) parameters |
| # |
# |
| params: |
params: .PHONY |
| .for var in BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \ |
.for var in BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \ |
| KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \ |
KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \ |
| MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \ |
MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \ |