diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-21 15:47:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-21 15:47:37 +0000 |
commit | eb6b47c3e6180577a1936cfa8f80453e27f2bcfa (patch) | |
tree | 03c8af55544c9e149da27dc46e9c9ccca2f5f3db /Makefile.common | |
parent | cf735c585528f6cfd61696f8aae06f6db7838573 (diff) |
fix dependency
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8004 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 2e85e70138..360f834782 100644 --- a/Makefile.common +++ b/Makefile.common @@ -741,7 +741,7 @@ $(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Bytecode/.dir $ @echo "Compiling $< to bytecode" $(VERB) $(LLVMGCC) $(CPPFLAGS) -c $< -o $@ -$(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.ll $(BUILD_OBJ_DIR)/Bytecode/.dir $(LCC1) +$(BUILD_OBJ_DIR)/Bytecode/%.bc: $(SourceDir)%.ll $(BUILD_OBJ_DIR)/Bytecode/.dir $(LLVMAS) @echo "Compiling $< to bytecode" $(VERB) $(LLVMAS) $< -f -o $@ |