9 lines
105 B
Makefile
9 lines
105 B
Makefile
build: clean
|
|
go build -ldflags="-s -w" -o dist/ .
|
|
|
|
test: clean
|
|
go run .
|
|
|
|
clean:
|
|
go clean
|
|
rm -f dist/*
|