diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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) + |