X-Git-Url: https://git.octo.it/?a=blobdiff_plain;ds=sidebyside;f=t%2FMakefile;h=5c5a62012673eaa7eec76da0068606bc78311fbd;hb=29508e1efb8d5a18f78ca0f9be45fdde49ef6b76;hp=5c76afff83087ee4d6324699f7ba376c18201716;hpb=f51248eb482a7a0feacb04d02119c94d35845975;p=git.git diff --git a/t/Makefile b/t/Makefile index 5c76afff..5c5a6201 100644 --- a/t/Makefile +++ b/t/Makefile @@ -15,9 +15,14 @@ shellquote = '$(call shq,$(1))' T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh) -all: - @$(foreach t,$T,echo "*** $t ***"; $(call shellquote,$(SHELL_PATH)) $t $(GIT_TEST_OPTS) || exit; ) - @rm -fr trash +all: $(T) clean + +$(T): + @echo "*** $@ ***"; $(call shellquote,$(SHELL_PATH)) $@ $(GIT_TEST_OPTS) clean: rm -fr trash + +.PHONY: $(T) clean +.NOPARALLEL: +