From: Misha Brukman Date: Fri, 21 May 2004 00:09:21 +0000 (+0000) Subject: Pass given flags on to recursive sub-makes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c2fb006ecb2846b04542da589fe61196bc6b03b3;p=oota-llvm.git Pass given flags on to recursive sub-makes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13616 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 55abdfae46b..3009045a235 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -402,7 +402,7 @@ all install clean test bytecode stripped-bytecode install-bytecode:: $(MKDIR) $$dir; \ cp $(SourceDir)/$$dir/Makefile $$dir/Makefile; \ fi; \ - ($(MAKE) -C $$dir $@) || exit 1; \ + ($(MAKE) -C $$dir $@ $(MFLAGS)) || exit 1; \ done endif