Makefile
changeset 11 1fccf68e52c6
parent 3 2fcd20b32b2e
child 16 0e1c0994309a
--- a/Makefile	Wed Sep 05 14:52:16 2007 +0000
+++ b/Makefile	Wed Sep 05 23:15:45 2007 +0000
@@ -1,4 +1,4 @@
-BIN = mimecut
+BIN = mimecut hs12
 CLEANFILES = $(BIN)
 
 .PHONY: all clean install test
@@ -6,7 +6,11 @@
 all:	$(BIN)
 
 test:	all
-	prove --timer t/
+	@rm .verbose 2>/dev/null && O=--verbose;\
+	prove $$O --timer t/
+
+verbose:
+	@touch .verbose
 
 clean:  ; -rm -f $(CLEANFILES)