1
0
mirror of https://github.com/octoleo/hosts.git synced 2024-11-21 20:35:10 +00:00

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

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)