diff options
Diffstat (limited to 'third_party/git/t/interop/Makefile')
-rw-r--r-- | third_party/git/t/interop/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/git/t/interop/Makefile b/third_party/git/t/interop/Makefile new file mode 100644 index 000000000000..31a4bbc716aa --- /dev/null +++ b/third_party/git/t/interop/Makefile @@ -0,0 +1,16 @@ +-include ../../config.mak +export GIT_TEST_OPTIONS + +SHELL_PATH ?= $(SHELL) +SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH)) +T = $(sort $(wildcard i[0-9][0-9][0-9][0-9]-*.sh)) + +all: $(T) + +$(T): + @echo "*** $@ ***"; '$(SHELL_PATH_SQ)' $@ $(GIT_TEST_OPTS) + +clean: + rm -rf build "trash directory".* test-results + +.PHONY: all clean $(T) |