summaryrefslogtreecommitdiffstats
path: root/test/Makefile
blob: 17d62d742a8b6b909a76eed7709fa40affd56a5b (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 "[$@]"
	@LANG=POSIX ./run $@