summaryrefslogtreecommitdiffstats
path: root/git-interface/test/Makefile
blob: d6f0f7402cb316819e82779b3ebed86796291e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh))

check: $(T)

clean:
	$(RM) -r test-results/

$(T):
	@echo "*** $@ ***"; $(SHELL) $@

.PHONY: check clean $(T)