This commit is contained in:
jjohnstondev 2023-01-06 23:42:00 -08:00
parent f8d877cac0
commit e9b7c73342
2 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
bin/
gospt

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
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