diff options
author | Roy Marples <roy@marples.name> | 2008-01-02 17:28:19 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-02 17:28:19 +0000 |
commit | 6cee86071ec2771f48156831dc667ecb0fd52d76 (patch) | |
tree | 6e002b6bd7509d402428bd20f4169967ec37e133 | |
parent | b204eb57dcd8dba92f00c317f2c462e6282b914c (diff) |
Add + for parallel make to work.
-rw-r--r-- | default.mk | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -20,9 +20,9 @@ CONTENTS = $(_CONTENTS)$(shell $(_CONTENTS_SH)) # Recursive rules # Adapted from FreeBSDs bsd.subdir.mk +_+_ ?= + ECHODIR ?= true -_SUBDIR = \ - @for x in $(SUBDIR); do \ +_SUBDIR = @${_+_}for x in ${SUBDIR}; do \ if test -d $$x; then \ ${ECHODIR} "===> ${DIRPRFX}$$x ($@)"; \ ${MAKE} -C $$x $@ DIRPRFX=${DIRPRFX}$$x/; \ @@ -37,6 +37,8 @@ all: $(_SUBDIR) clean:: $(_SUBDIR) +depend:: + $(_SUBDIR) install:: $(_SUBDIR) |