aboutsummaryrefslogtreecommitdiff
path: root/subdir.mk
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-01-09 23:47:15 +0000
committerRoy Marples <roy@marples.name>2008-01-09 23:47:15 +0000
commit5b30c5154d8f641737d7c669612d06f2b0d7fe49 (patch)
tree05407663de162bab964d65f47a28c26d0a4a66c6 /subdir.mk
parentddf25cbcb76bccbfe28d15f1e73c637becaa54e7 (diff)
install correctly on NetBSD.
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}