]> git.ipfire.org Git - thirdparty/git.git/blob - t/interop/Makefile
Merge branch 'tl/ls-tree-oid-only'
[thirdparty/git.git] / t / interop / Makefile
1 # Import tree-wide shared Makefile behavior and libraries
2 include ../../shared.mak
3
4 -include ../../config.mak
5 export GIT_TEST_OPTIONS
6
7 SHELL_PATH ?= $(SHELL)
8 SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
9 T = $(sort $(wildcard i[0-9][0-9][0-9][0-9]-*.sh))
10
11 all: $(T)
12
13 $(T):
14 @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS)
15
16 clean:
17 rm -rf build "trash directory".* test-results
18
19 .PHONY: all clean $(T)