aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ec51765091e0e76cfd41c3c3780f27b3dcb0485c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: build run test clean

build:
	go build -o tui-ascii-mapper ./cmd/tui-ascii-mapper

run: build
	./tui-ascii-mapper

test:
	go vet ./...
	go test ./internal/...

clean:
	rm -f tui-ascii-mapper