projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e190786
)
Actually use the correct variable name for building bytecode files.
author
Reid Spencer
<rspencer@reidspencer.com>
Sun, 31 Oct 2004 18:52:15 +0000
(18:52 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Sun, 31 Oct 2004 18:52:15 +0000
(18:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17374
91177308
-0d34-0410-b5e6-
96231b3b80d8
Makefile.rules
patch
|
blob
|
history
diff --git
a/Makefile.rules
b/Makefile.rules
index 54a4b458f9b4f53d1138f38b9fe49ff0be478e88..497f86a0487ebb8ca4fac2b51648eefc2735dfcd 100644
(file)
--- a/
Makefile.rules
+++ b/
Makefile.rules
@@
-741,11
+741,11
@@
endif
$(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir
$(Echo) "Compiling $*.cpp (bytecode)"
- $(BCCompile
CPP
) $< -o $@
+ $(BCCompile
.CXX
) $< -o $@
$(ObjDir)/%.bc: %.c $(ObjDir)/.dir
$(Echo) "Compiling $*.c (bytecode)"
- $(BCCompileC) $< -o $@
+ $(BCCompile
.
C) $< -o $@
endif