Add basic Makefile

This simply installs the script to /usr/local/bin
This commit is contained in:
William Melody 2015-05-20 16:46:02 -07:00
parent 08d899fee5
commit 87bce12994
1 changed files with 8 additions and 0 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
BIN ?= hosts
PREFIX ?= /usr/local
install:
install $(BIN) $(PREFIX)/bin
uninstall:
rm -f $(PREFIX)/bin/$(BIN)