Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 198c5eda7c76f2059ce96ad471cd059cb27867f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Run tests
#
# Copyright (c) 2005 Junio C Hamano
#
#OPTS=--verbose --debug
OPTS=

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