summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index eb0f9cbeb..fc88e3c2a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -55,17 +55,23 @@ subdirs:
( cd $$i && $(MAKE) $(MFLAGS_STATIC) SDP='$(SDP)' \
CC='$(CC)' AUX_CFLAGS='$(AUX_CFLAGS)' RANLIB='$(RANLIB)' ) \
|| exit 1; \
- echo "<== $$i"; \
+ echo "<=== $$i"; \
done;
subdirs_depend:
@for i in $(SUBDIRS); do \
+ echo "===> $$i"; \
( cd $$i && $(MAKE) depend ) \
+ || exit 1; \
+ echo "<=== $$i"; \
done;
subdirs_clean:
@for i in $(SUBDIRS); do \
+ echo "===> $$i"; \
( cd $$i && $(MAKE) clean ) \
+ || exit 1; \
+ echo "<=== $$i"; \
done;
# DO NOT REMOVE