diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | rules.mk | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -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, @@ -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 |