Files
rdu/Makefile
tchivert 6e18ea4c33
build / build (push) Successful in 41s
add readme, ci and license
2024-08-20 12:39:38 +02:00

17 lines
181 B
Makefile

all: build
build:
go build -o rdu
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