gospt/Makefile
jjohnstondev e9b7c73342 stuff
2023-01-06 23:42:00 -08:00

21 lines
250 B
Makefile

BINARY_NAME=gospt
build:
GOARCH=amd64 GOOS=linux go build -o bin/${BINARY_NAME} main.go
run:
go run main.go
tidy:
go mod tidy
clean:
rm -rf bin
uninstall:
rm -f /usr/local/bin/${BINARY_NAME}
install:
cp bin/${BINARY_NAME} /usr/local/bin