Files
git-remote-hg/test/Makefile
Mark Nauwelaerts 38741e0bbf Add git-hg-helper
2016-08-01 14:57:01 +02:00

20 lines
254 B
Makefile

RM ?= rm -f
T = main.t main-push.t bidi.t helper.t
TEST_DIRECTORY := $(CURDIR)
export TEST_DIRECTORY
all: test
test: $(T)
$(MAKE) clean
$(T):
$(SHELL) $@ $(TEST_OPTS)
clean:
$(RM) -r 'trash directory'.* test-results
.PHONY: all test $(T) clean