build: restore parallel build capability

It seems that ${MAKE} must be in the first expansion level.
This commit is contained in:
Jan Engelhardt
2009-09-25 21:18:09 +02:00
parent d3fdfe08dd
commit 71322e614c
2 changed files with 8 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ export XA_SRCDIR
export XA_TOPSRCDIR
export XA_ABSTOPSRCDIR
_mcall = ${MAKE} -f ${top_builddir}/Makefile.iptrules
_mcall = -f ${top_builddir}/Makefile.iptrules
all-local: user-all-local
@@ -17,13 +17,13 @@ install-exec-local: user-install-local
clean-local: user-clean-local
user-all-local:
${_mcall} all;
${MAKE} ${_mcall} all;
# Have no user-install-data-local ATM
user-install-local: user-install-exec-local
user-install-exec-local:
${_mcall} install;
${MAKE} ${_mcall} install;
user-clean-local:
${_mcall} clean;
${MAKE} ${_mcall} clean;