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