fbisender/Makefile
2024-11-05 22:07:22 -08:00

18 lines
178 B
Makefile

build:
go build -o dist/ .
run: build
./dist/fbisender
tidy:
go mod tidy
clean:
rm -rf dist
uninstall:
rm -f /usr/bin/fbisender
install:
cp ./dist/fbisender /usr/bin