mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
d6928ebd50
This way, passing this variable through the environment actually makes sense.
15 lines
243 B
Makefile
15 lines
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
|