summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--rules.mk3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 456dc1e..2461d0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+1999-12-04 Chip Salzenberg <chip@valinux.com>
+
+ * rules.mk: Call $(MAKE) with $(MFLAGS).
+
Mon Nov 29 11:17:35 1999 H.J. Lu <hjl@lucon.org>
* tools/rpcgen/rpc_main.c (h_output): Generate IXDR_GET_INT32,
diff --git a/rules.mk b/rules.mk
index c773460..6796f19 100644
--- a/rules.mk
+++ b/rules.mk
@@ -13,7 +13,8 @@ ifneq ($(SUBDIRS),)
$(ALLTARGETS)::
@set -e; for d in $(SUBDIRS); do \
echo "Making $@ in $$d"; \
- $(MAKE) --no-print-directory TOP=../$(TOP) -C $$d $@; \
+ $(MAKE) $(MFLAGS) --no-print-directory \
+ -C $$d TOP=../$(TOP) $@; \
done
endif