summaryrefslogtreecommitdiff
path: root/Makefile
blob: 66913dc1fa2f99517bdef51db482cef5a7ccf336 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all:
.PHONY: all

check:
	$(MAKE) -C test test
check-coverage:
	rm -rf ${PWD}/coverage
	$(MAKE) -C test test-coverage
.PHONY: check check-coverage

test: check
test-coverage: check-coverage
.PHONY: test test-coverage