Files
rdu/Makefile
2025-11-22 01:34:44 +01:00

17 lines
228 B
Makefile

all: build
build:
CGO_ENABLED=0 go build -trimpath -ldflags="-s -w" -o rdu ./src
run: build
./rdu
release:
git tag -d latest
git push --delete origin latest
git tag latest HEAD
git push origin latest
clean:
rm -f rdu