aboutsummaryrefslogtreecommitdiff
path: root/subdir.mk
diff options
context:
space:
mode:
Diffstat (limited to 'subdir.mk')
-rw-r--r--subdir.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/subdir.mk b/subdir.mk
index 1933c529..86efca04 100644
--- a/subdir.mk
+++ b/subdir.mk
@@ -1,7 +1,7 @@
# Recursive rules
# Adapted from FreeBSDs bsd.subdir.mk
_+_ ?= +
-ECHODIR ?= true
+ECHODIR ?= echo
_SUBDIR = @${_+_}for x in ${SUBDIR}; do \
if test -d $$x; then \
${ECHODIR} "===> ${DIRPRFX}$$x ($@)"; \
@@ -18,10 +18,10 @@ _SUBDIR = @${_+_}for x in ${SUBDIR}; do \
done
all:
- $(_SUBDIR)
+ ${_SUBDIR}
clean:
- $(_SUBDIR)
+ ${_SUBDIR}
install:
- $(_SUBDIR)
+ ${_SUBDIR}
depend:
- $(_SUBDIR)
+ ${_SUBDIR}