[llvm-commits] CVS: llvm/Makefile.common
John Criswell
criswell at choi.cs.uiuc.edu
Mon Jun 30 14:12:06 PDT 2003
Changes in directory llvm:
Makefile.common updated: 1.88.2.9 -> 1.88.2.10
---
Log message:
Corrected the spelling of BUILD_OBJ_DIR (removed an extraneous character) so
that release builds would work correctly.
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.88.2.9 llvm/Makefile.common:1.88.2.10
--- llvm/Makefile.common:1.88.2.9 Mon Jun 30 13:41:56 2003
+++ llvm/Makefile.common Mon Jun 30 14:10:59 2003
@@ -666,11 +666,12 @@
#$(VERB) $(CompileCG) $< -o $@
# Create .lo files in the ObjectFiles directory from the .cpp and .c files...
-$(BUILD_OBlJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir
+$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Release/.dir
@echo "Compiling $<"
$(VERB) $(CompileO) $< -o $@
$(BUILD_OBJ_DIR)/Release/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Release/.dir
+ @echo "Compiling $<"
$(VERB) $(CompileCO) $< -o $@
$(BUILD_OBJ_DIR)/Profile/%.lo: $(SourceDir)%.cpp $(BUILD_OBJ_DIR)/Profile/.dir
@@ -686,6 +687,7 @@
$(VERB) $(CompileG) $< -o $@
$(BUILD_OBJ_DIR)/Debug/%.lo: $(SourceDir)%.c $(BUILD_OBJ_DIR)/Debug/.dir
+ @echo "Compiling $<"
$(VERB) $(CompileCG) $< -o $@
#
More information about the llvm-commits
mailing list