diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-12 16:32:24 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2008-05-12 16:32:24 +0000 |
commit | ecb977e64f5dbe40b35184124f9ac4b0faaea114 (patch) | |
tree | 980db3de4048c95a041d001e641c208c7b359c9c | |
parent | a6730370974c6db60e2ddeee630271cae03c6c4d (diff) | |
download | external_llvm-ecb977e64f5dbe40b35184124f9ac4b0faaea114.zip external_llvm-ecb977e64f5dbe40b35184124f9ac4b0faaea114.tar.gz external_llvm-ecb977e64f5dbe40b35184124f9ac4b0faaea114.tar.bz2 |
Make it possible to choose between different compilation graph definitions at compile-time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50972 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc2/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/llvmc2/Makefile b/tools/llvmc2/Makefile index d1b85a6..0c4782b 100644 --- a/tools/llvmc2/Makefile +++ b/tools/llvmc2/Makefile @@ -14,7 +14,8 @@ REQUIRES_EH := 1 include $(LEVEL)/Makefile.common -TOOLS_SOURCE=Graph.td Tools.td Common.td +GRAPH = Graph.td +TOOLS_SOURCE=$(GRAPH) Tools.td Common.td # TOFIX: integrate this part into Makefile.rules? # The degree of horrorshowness in that file is too much for me atm. |