blob: 079a468ab28222a64dcdca21490e60b6a858ed7f (
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 .
run: build
./tui-ascii-mapper
test:
go vet ./...
go run . 2>&1 | head -5
clean:
rm -f tui-ascii-mapper
|