902d960b38
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.
15 lines
224 B
Makefile
15 lines
224 B
Makefile
# Run tests
|
|
#
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
#
|
|
#OPTS=--verbose --debug
|
|
|
|
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
|
|
|
all:
|
|
@$(foreach t,$T,echo "*** $t ***"; sh $t $(OPTS) || exit; )
|
|
@rm -fr trash
|
|
|
|
clean:
|
|
rm -fr trash
|