summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorjohan <johan@FreeBSD.org>2002-08-23 12:49:16 +0000
committerjohan <johan@FreeBSD.org>2002-08-23 12:49:16 +0000
commit8a593cad78b0dff744d592759e65eec3c0c0fd8e (patch)
treeab6a8dfebcafd9fe2a3c370944c08c1ace959fa5 /Makefile.inc1
parent8edf222b9e5a4d6a18709ba4ff2ad1e7ec81a932 (diff)
downloadFreeBSD-src-8a593cad78b0dff744d592759e65eec3c0c0fd8e.zip
FreeBSD-src-8a593cad78b0dff744d592759e65eec3c0c0fd8e.tar.gz
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
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 afa3d1a..357f643 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
OpenPOWER on IntegriCloud