diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -6,6 +6,12 @@ all: setup examples: setup $(MAKE) -f scripts/makefile examples +.PHONY: check +check: all + @echo -n > tests.mk + @./scripts/gen-tests $$(echo tests/*.c) + $(MAKE) -f tests/makefile check + # this kicks all unrecognised targets to the client script. # note that trying to compile individual files, e.g. # @@ -24,7 +30,7 @@ setup: @echo -n > deps.mk @./scripts/gen-deps -p EJIT -c COMPILE_EJIT -b ejit "$(EJIT_SOURCES)" -CLEANUP := build deps.mk ejit.o examples/exec examples/*.d +CLEANUP := build deps.mk tests.md ejit.o examples/exec examples/*.d tests/test-* CLEANUP_CMD := EJIT_SOURCES := @@ -32,7 +38,7 @@ include src/source.mk .PHONY: format format: - find src include -iname '*.[ch]' |\ + find src include tests -iname '*.[ch]' |\ xargs uncrustify -c uncrustify.conf --no-backup -F - .PHONY: license |