aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorJohan Karlsson <johan@FreeBSD.org>2002-08-23 12:49:16 +0000
committerJohan Karlsson <johan@FreeBSD.org>2002-08-23 12:49:16 +0000
commitc065f5b24b201beb1afb10f30d6effe19b859ae9 (patch)
treeab6a8dfebcafd9fe2a3c370944c08c1ace959fa5 /Makefile.inc1
parent5d7e0128ff20da2a98e373b06ad05462903e68fb (diff)
downloadsrc-c065f5b24b201beb1afb10f30d6effe19b859ae9.tar.gz
src-c065f5b24b201beb1afb10f30d6effe19b859ae9.zip
Similar to bsd.subdir.mk, echo the name of the dir before
doing the cd. This is done for bootstrap-tools, build-tools, cross-tools, and the libraries loop. Reviewed by: ru Approved by: sheldonh (mentor) MFC after: 1 week
Notes
Notes: svn path=/head/; revision=102312
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc112
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index afa3d1a8bdc5..357f6432716c 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -593,7 +593,8 @@ bootstrap-tools:
usr.bin/xargs usr.bin/xinstall \
usr.sbin/config usr.sbin/kbdcontrol \
gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo
- cd ${.CURDIR}/${_tool}; \
+ ${ECHODIR} "===> ${_tool}"; \
+ cd ${.CURDIR}/${_tool}; \
${MAKE} DIRPRFX=${_tool}/ obj; \
${MAKE} DIRPRFX=${_tool}/ depend; \
${MAKE} DIRPRFX=${_tool}/ all; \
@@ -630,7 +631,8 @@ build-tools:
.for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \
${_libroken4} ${_libkrb5} lib/libncurses ${_share} \
usr.bin/awk usr.bin/file usr.sbin/sysinstall
- cd ${.CURDIR}/${_tool}; ${MAKE} DIRPRFX=${_tool}/ build-tools
+ ${ECHODIR} "===> ${_tool}"; \
+ cd ${.CURDIR}/${_tool}; ${MAKE} DIRPRFX=${_tool}/ build-tools
.endfor
#
@@ -654,7 +656,8 @@ cross-tools:
.for _tool in ${_btxld} ${_elf2aout} ${_elf2exe} \
gnu/usr.bin/binutils usr.bin/objformat usr.sbin/crunch/crunchide \
gnu/usr.bin/cc ${_xlint}
- cd ${.CURDIR}/${_tool}; \
+ ${ECHODIR} "===> ${_tool}"; \
+ cd ${.CURDIR}/${_tool}; \
${MAKE} DIRPRFX=${_tool}/ obj; \
${MAKE} DIRPRFX=${_tool}/ depend; \
${MAKE} DIRPRFX=${_tool}/ all; \
@@ -740,7 +743,8 @@ _generic_libs+= usr.sbin/pcvt/keycap
.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
${_lib}__L: .PHONY
.if exists(${.CURDIR}/${_lib})
- cd ${.CURDIR}/${_lib}; \
+ ${ECHODIR} "===> ${_lib}"; \
+ cd ${.CURDIR}/${_lib}; \
${MAKE} DIRPRFX=${_lib}/ depend; \
${MAKE} DIRPRFX=${_lib}/ all; \
${MAKE} DIRPRFX=${_lib}/ install