Files
tom.chivert 9c1a7fbe6c add Makefile
2024-08-14 12:06:19 +02:00

17 lines
181 B
Makefile

all: build
build:
go build -o ply
run: build
./ply
release:
git tag -d latest
git push --delete origin latest
git tag latest HEAD
git push origin latest
clean:
rm -f ply