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

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

all: $(TESTS)

.PHONY: $(TESTS)

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