From 3a55ccec61f00b28e574fbcde7f982771daa4ce8 Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Thu, 18 Jan 2001 20:20:02 +0000 Subject: [PATCH] Show were we are operating --- Makefile.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index fe5714f..321c0dc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -56,7 +56,10 @@ acl_scan.c: acl_scan.l acl_scan.h acl.c: acl_scan.c $(LIBS): - (cd `echo $@ | sed -e 's@/.*@@'` && $(MAKE) $(FLAGS_TO_PASS)) + subdir=`echo $@ | sed -e 's@/.*@@'`; \ + echo "===> $$subdir"; \ + cd $$subdir && $(MAKE) $(FLAGS_TO_PASS); \ + echo "<=== $$subdir" install: petidomo $(SHTOOL) mkdir -f -p -m 755 $(bindir) @@ -82,7 +85,11 @@ install-testlist: $(SHTOOL) install -c -m 644 /dev/null $(localstatedir)/lists/testlist/list clean distclean realclean:: - @for n in lib*; do (cd $$n && $(MAKE) $@); done + @for subdir in lib*; do \ + echo "===> $$subdir"; \ + (cd $$subdir && $(MAKE) $(FLAGS_TO_PASS) $@); \ + echo "<=== $$subdir"; \ + done clean:: rm -f petidomo