aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorPetr Baudis <pasky@ucw.cz>2005-05-14 17:57:32 +0200
committerPetr Baudis <xpasky@machine.sinus.cz>2005-05-14 17:57:32 +0200
commit902d960b382a0cd424618ff4e1316da40e4be2f6 (patch)
tree13f9920ccd8caf2923bda010c47150fcbf5ca5e5 /t
parentdfe070511c652f2b8e1bf6540f238c9ca9ba41d3 (diff)
downloadgit-902d960b382a0cd424618ff4e1316da40e4be2f6.tar.gz
t/Makefile cleanup
t/Makefile now does not use double-colon rules (why would it?), the rm -fr trash in the all rule is silent, and OPTS aren't set to blank so that they can be taken from the environment.
Diffstat (limited to 't')
-rw-r--r--t/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/t/Makefile b/t/Makefile
index 198c5eda7c..fc9f734fef 100644
--- a/t/Makefile
+++ b/t/Makefile
@@ -3,13 +3,12 @@
# Copyright (c) 2005 Junio C Hamano
#
#OPTS=--verbose --debug
-OPTS=
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
-all::
+all:
@$(foreach t,$T,echo "*** $t ***"; sh $t $(OPTS) || exit; )
- rm -fr trash
+ @rm -fr trash
-clean::
+clean:
rm -fr trash