[llvm-commits] CVS: llvm/utils/TableGen/Makefile

Reid Spencer reid at x10sys.com
Fri Sep 3 16:20:03 PDT 2004



Changes in directory llvm/utils/TableGen:

Makefile updated: 1.12 -> 1.13
---
Log message:

Clean up some "clean:" targets so they use $(VERB) and don't print anything
by default, like every other "clean" target in LLVM.


---
Diffs of the changes:  (+2 -2)

Index: llvm/utils/TableGen/Makefile
diff -u llvm/utils/TableGen/Makefile:1.12 llvm/utils/TableGen/Makefile:1.13
--- llvm/utils/TableGen/Makefile:1.12	Sun Aug 29 14:31:19 2004
+++ llvm/utils/TableGen/Makefile	Fri Sep  3 18:19:53 2004
@@ -20,5 +20,5 @@
 FileLexer.cpp: FileParser.h
 
 clean::
-	-rm -f FileParser.cpp FileParser.h FileLexer.cpp CommandLine.cpp
-	-rm -f FileParser.output
+	$(VERB) $(RM) -f FileParser.cpp FileParser.h FileLexer.cpp CommandLine.cpp
+	$(VERB) $(RM) -f FileParser.output






More information about the llvm-commits mailing list