commit b60bdeb331fcf86b6be8023a3d17efab4b541427
parent 72456108a4e48b4f41346d71679b0be281d69aba
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Thu, 21 Sep 2017 14:04:28 +0100
Revert "Pass MAKEFLAGS as parameter to recursive makes"
This reverts commit 05bd001929ecd48cc48a10b8bd9acd7d6d0ecf7c.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -8,7 +8,7 @@ FORALL = @set -e ;\
for i in $(DIRS); \
do \
cd $$i; \
- $(MAKE) $(MAKEFLAGS) $@; \
+ $(MAKE) $@; \
cd $$pwd; \
done
diff --git a/lib/Makefile b/lib/Makefile
@@ -9,6 +9,6 @@ all dep clean distclean:
for i in $(DIRS); \
do \
cd $$i; \
- $(MAKE) $(MAKEFLAGS) $@; \
+ $(MAKE) $@; \
cd $$pwd; \
done