summaryrefslogtreecommitdiff
path: root/contrib/remote-helpers/Makefile
blob: 239161de33373d4ca97581a242cac848463fbbf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TESTS := $(wildcard test*.sh)
 
export T := $(addprefix $(CURDIR)/,$(TESTS))
export MAKE := $(MAKE) -e
export PATH := $(CURDIR):$(PATH)
export TEST_LINT := test-lint-executable test-lint-shell-syntax
 
test:
	$(MAKE) -C ../../t $@
 
$(TESTS):
	$(MAKE) -C ../../t $(CURDIR)/$@
 
.PHONY: $(TESTS)