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

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

all: $(TESTS)

.PHONY: $(TESTS)

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