From 9eb5ab1818b6b19501fd7209db1987c9e06cc919 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 9 Jun 2026 05:59:20 -0400 Subject: first commit --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..11c8a36 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: build run test vet clean + +BINARY=tc +DATA_DIR=$(PWD)/data + +build: + go build -o $(BINARY) ./cmd/mud + +run: build + DATA_DIR=$(DATA_DIR) ./$(BINARY) + +test: + DATA_DIR=$(DATA_DIR) go test ./... -timeout 60s + +vet: + go vet ./... + +clean: + rm -f $(BINARY) -- cgit v1.2.3