From 31f47f60c2a69848c00f20532bbab46c95d5b968 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Sun, 23 Apr 2023 22:54:28 -0500 Subject: [PATCH] Makefile: Updates to testing targets. --- Makefile | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 0336123..1ce2450 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,29 @@ -.PHONY.: test -test: - nimble test +# Make does not offer a recursive wildcard function, so here's one: + rwildcard=$(wildcard $1$2) $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2)) -.PHONY.: build +SOURCES=$(call rwildcard,src/,*.nim) +TEST_SOURCES=$(wildcard tests/*.nim) +TESTS=$(patsubst %.nim,bin/%,$(TEST_SOURCES)) + +.PHONY: test +test: $(TESTS) $(SOURCES) + @for t in $(TESTS); do $$t; done + +.PHONY: watch-tests +watch-tests: + watch 'make test' src tests --wait=10 + +.PHONY: build build: test nimble build -.PHONY.: install +.PHONY: install install: test nimble install diagrams: doc/vcard3.mmd doc/vcard4.mmd mmdc -i doc/vcard3.mmd -o doc/vcard3.png mmdc -i doc/vcard4.mmd -o doc/vcard4.png + +bin/tests/%: tests/%.nim $(SOURCES) + nim --outdir:bin/tests c $(patsubst bin/%,%.nim,$@)