aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2026-05-01 18:37:38 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2026-05-01 18:42:08 +0300
commit7790e27b3423901e2080bfd3c600a65a48d42886 (patch)
treee53f3d2b01fd24ade5eff042cb5d09bd1865c540 /Makefile
parentdbf8737fd34a0766691999e3271e9c5662ffae0d (diff)
downloadfwd-7790e27b3423901e2080bfd3c600a65a48d42886.tar.gz
fwd-7790e27b3423901e2080bfd3c600a65a48d42886.zip
start adding proper tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0485621..1f20ab0 100644
--- a/Makefile
+++ b/Makefile
@@ -25,6 +25,10 @@ setup:
@echo -n > deps.mk
@./scripts/gen-deps -p FWD -c COMPILE_FWD -b fwd "$(FWD_SOURCES)"
+.PHONY: check
+check: all
+ $(MAKE) -C tests -k check
+
CLEANUP := build deps.mk fwd
CLEANUP_CMD :=
FWD_SOURCES :=
@@ -51,6 +55,7 @@ RM = rm
.PHONY: clean
clean:
+ $(MAKE) -C tests clean
$(RM) -rf $(CLEANUP)
.PHONY: clean_docs