summaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 86a30310b95c147522f9e911a7625fa18e936f70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TESTS=$(shell ls -tr *.test)

export QUILTRC=$(CURDIR)/test.quiltrc
ifneq ($(shell source $(QUILTRC) ;  echo $$QUILT_PATCHES_PREFIX),)
export P=patches/
endif
$(warning P=$(P))

all: $(TESTS)

.PHONY: $(TESTS)

$(TESTS):
	@echo "[$@]"
	@./run $@