[llvm-commits] [test-suite] r62111 - /test-suite/trunk/Makefile.tests

Dale Johannesen dalej at apple.com
Mon Jan 12 14:35:36 PST 2009


Author: johannes
Date: Mon Jan 12 16:35:36 2009
New Revision: 62111

URL: http://llvm.org/viewvc/llvm-project?rev=62111&view=rev
Log:
Revert previous patch, catering to those who
prefer to keep information hidden.


Modified:
    test-suite/trunk/Makefile.tests

Modified: test-suite/trunk/Makefile.tests
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.tests?rev=62111&r1=62110&r2=62111&view=diff

==============================================================================
--- test-suite/trunk/Makefile.tests (original)
+++ test-suite/trunk/Makefile.tests Mon Jan 12 16:35:36 2009
@@ -39,32 +39,32 @@
 
 # Compile from X.c to Output/X.bc
 Output/%.bc: %.c $(LCC1) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # Compile from X.cpp to Output/X.bc
 Output/%.bc: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # Compile from X.cc to Output/X.bc
 Output/%.bc: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # Compile from X.C to Output/X.bc
 Output/%.bc: %.C $(LCC1XX) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # Compile from X.m to Output/X.bc
 Output/%.bc: %.m $(LCC1) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # Compile from X.mm to Output/X.bc
 Output/%.bc: %.mm $(LCC1XX) Output/.dir $(INCLUDES)
-	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) to $@
+	@echo Compiling $(notdir $<) to $@
 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $(TARGET_FLAGS) -c $< -o $@ -emit-llvm
 
 # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming directly from





More information about the llvm-commits mailing list