From b8e473b069d9c81e2f6a471fa7636c27cee63fae Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 23 Jun 2026 04:38:06 -0400 Subject: initial commit --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..079a468 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: build run test clean + +build: + go build -o tui-ascii-mapper . + +run: build + ./tui-ascii-mapper + +test: + go vet ./... + go run . 2>&1 | head -5 + +clean: + rm -f tui-ascii-mapper -- cgit v1.2.3