diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-21 00:09:21 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-05-21 00:09:21 +0000 |
commit | c2fb006ecb2846b04542da589fe61196bc6b03b3 (patch) | |
tree | 7344dbc0936d512e03b699df1cc963d3c63eb7d8 /Makefile.rules | |
parent | 972c0c9f0a9dece2e020c942460c728edd67591e (diff) |
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
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 55abdfae46..3009045a23 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 |