From cb78013884e3aa3b1e1a91722f5eeb78c62f6796 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Thu, 6 Jul 2023 16:22:26 +0200 Subject: update tests --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'makefile') diff --git a/makefile b/makefile index cad47ab..6136ad6 100644 --- a/makefile +++ b/makefile @@ -17,6 +17,15 @@ DENO_FLAGS += --allow-read DENO_FLAGS += --allow-write DENO_FLAGS += --allow-net +include test/tests.mk + +.PHONY: build test + +build: $(TARGET) + $(TARGET): $(SRCS) deno compile --output $@ $< $(DENO_FLAGS) +test: + deno test $(DENO_FLAGS) $(TESTS) + -- cgit v1.2.3