Add Makefile

This commit is contained in:
Arsen Musayelyan 2022-09-28 17:10:01 -07:00
parent 61fe25bcee
commit 332e36fb3d
1 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
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