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

Makefile « tests - git.zx2c4.com/cgit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1556475cbb22f0f71b483f0f573fab36a06efd51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)

all: $(T)

$(T):
	@./$@ $(CGIT_TEST_OPTS)

clean:
	$(RM) -rf trash

.PHONY: $(T) clean