git/t/Makefile

16 строки
243 B
Makefile

# Run tests
#
# Copyright (c) 2005 Junio C Hamano
#
#GIT_TEST_OPTS=--verbose --debug
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
all:
@$(foreach t,$T,echo "*** $t ***"; sh $t $(GIT_TEST_OPTS) || exit; )
@rm -fr trash
clean:
rm -fr trash