Actually use the correct variable name for building bytecode files.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17374 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-10-31 18:52:15 +00:00
parent e1907865b8
commit 8676b7eed0

View File

@ -741,11 +741,11 @@ endif
$(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