b4649fc905
This creates a simple testsuite, heavily inspired by the testsuite in git. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
14 lines
113 B
Makefile
14 lines
113 B
Makefile
|
|
|
|
T = $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)
|
|
|
|
all: $(T)
|
|
|
|
$(T):
|
|
@$@
|
|
|
|
clean:
|
|
$(RM) -rf trash
|
|
|
|
.PHONY: $(T) clean
|