[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Sun Oct 31 10:52:25 PST 2004
Changes in directory llvm:
Makefile.rules updated: 1.225 -> 1.226
---
Log message:
Actually use the correct variable name for building bytecode files.
---
Diffs of the changes: (+2 -2)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.225 llvm/Makefile.rules:1.226
--- llvm/Makefile.rules:1.225 Sat Oct 30 04:19:36 2004
+++ llvm/Makefile.rules Sun Oct 31 12:52:15 2004
@@ -741,11 +741,11 @@
$(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir
$(Echo) "Compiling $*.cpp (bytecode)"
- $(BCCompileCPP) $< -o $@
+ $(BCCompile.CXX) $< -o $@
$(ObjDir)/%.bc: %.c $(ObjDir)/.dir
$(Echo) "Compiling $*.c (bytecode)"
- $(BCCompileC) $< -o $@
+ $(BCCompile.C) $< -o $@
endif
More information about the llvm-commits
mailing list