aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: 8a2769112e4128c1af34d953fe0154616059316f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
check:
	$(MAKE) -f scripts/makefile check

.DEFAULT:
	$(MAKE) -f scripts/makefile $<

SOURCES		!= echo */source.mk
DO		!= echo -n > tests.mk
include $(SOURCES)

build/printf.o: common/printf.c
	mkdir -p build && $(COMPILE_TEST) -c common/printf.c -o build/printf.o

RM	?= rm

.PHONY: clean
clean:
	$(RM) -rf build reports