11 lines
145 B
Makefile
Raw Normal View History

2024-12-27 19:59:44 +00:00
.PHONY: build test clean
2024-10-18 04:28:31 +00:00
build: clean
CGO_ENABLED=0 go build -ldflags="-s -w" -o dist/ .
test: clean
go run .
clean:
go clean
rm -f dist/*