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

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



Changes in directory llvm/utils/Burg:

Makefile updated: 1.23 -> 1.24
---
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/Burg/Makefile
diff -u llvm/utils/Burg/Makefile:1.23 llvm/utils/Burg/Makefile:1.24
--- llvm/utils/Burg/Makefile:1.23	Mon Oct 20 17:29:16 2003
+++ llvm/utils/Burg/Makefile	Fri Sep  3 18:19:53 2004
@@ -18,12 +18,12 @@
 $(SourceDir)/lex.c: gram.tab.h
 
 clean::
-	rm -rf gram.tab.h gram.tab.c core* *.aux *.log *.dvi sample sample.c tmp
+	$(VERB) $(RM) -rf gram.tab.h gram.tab.c core* *.aux *.log *.dvi sample sample.c tmp
 
 #$(BUILD_OBJ_DIR)/Release/lex.o $(BUILD_OBJ_DIR)/Profile/lex.o $(BUILD_OBJ_DIR)/Debug/lex.o: gram.tab.h
 
 doc.dvi: doc.tex
-	latex doc; latex doc
+	$(VERB) latex doc; latex doc
 
 
 test:: $(TOOLEXENAME_G) sample.gr






More information about the llvm-commits mailing list