11 lines
109 B
Makefile
11 lines
109 B
Makefile
.PHONY: build test clean
|
|
|
|
build:
|
|
go build -o bin/psp-stats-cli .
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
clean:
|
|
rm -rf bin/
|