ref: 76562633668bae8bc39ec29b848d42363115b321
parent: a8cf09fa62a1c07911bf78052af93a632c5634c4
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Thu Sep 21 10:04:28 EDT 2017
Revert "Pass MAKEFLAGS as parameter to recursive makes" This reverts commit 05bd001929ecd48cc48a10b8bd9acd7d6d0ecf7c.
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@
for i in $(DIRS); \
do \
cd $$i; \
- $(MAKE) $(MAKEFLAGS) $@; \
+ $(MAKE) $@; \
cd $$pwd; \
done
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -9,6 +9,6 @@
for i in $(DIRS); \
do \
cd $$i; \
- $(MAKE) $(MAKEFLAGS) $@; \
+ $(MAKE) $@; \
cd $$pwd; \
done