lure/Makefile

13 lines
168 B
Makefile
Raw Normal View History

2022-09-29 00:10:01 +00:00
lure:
go build
clean:
rm -f lure
install: lure
sudo install -Dm755 lure /usr/local/bin/lure
uninstall:
rm -f /usr/local/bin/lure
.PHONY: install clean uninstall