fbisender/Makefile

18 lines
178 B
Makefile
Raw Normal View History

2024-11-06 06:07:22 +00:00
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