]> git.ipfire.org Git - thirdparty/git.git/blob - t/interop/Makefile
Merge branch 'mn/send-email-credential-doc'
[thirdparty/git.git] / t / interop / Makefile
1 -include ../../config.mak
2 export GIT_TEST_OPTIONS
3
4 SHELL_PATH ?= $(SHELL)
5 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
6 T = $(sort $(wildcard i[0-9][0-9][0-9][0-9]-*.sh))
7
8 all: $(T)
9
10 $(T):
11 @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
12
13 clean:
14 rm -rf build "trash directory".* test-results
15
16 .PHONY: all clean $(T)