gospt/Makefile
jjohnstondev ea38bb3e14
All checks were successful
continuous-integration/drone/tag Build is passing
f
2023-01-08 22:33:30 -08:00

25 lines
264 B
Makefile

hashes: build
sha256sum gospt
srcinfo:
cd aur && makepkg -g >> PKGBUILD
build:
go build -o gospt .
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