add makefile

This commit is contained in:
Ben Harris 2020-01-20 16:43:41 -05:00
parent ef3fab1f9a
commit 389665eda6
1 changed files with 20 additions and 0 deletions

20
Makefile Normal file
View File

@ -0,0 +1,20 @@
PREFIX ?= /usr/local
DEST ?= $(PREFIX)/bin
install: toot.json
$(info installing $(DEST)/toot)
@install -m 755 toot $(DEST)
@install -m 644 toot.json $(DEST)
uninstall:
$(info uninstalling toot from $(DEST))
@rm $(DEST)/toot
@rm $(DEST)/toot.json
toot.json:
$(error toot.json does not exist. please create it! see toot.json.sample for required fields)
false
.PHONY: uninstall