1
0
mirror of https://github.com/octoleo/hosts.git synced 2024-05-28 20:30:47 +00:00
hosts/Makefile
William Melody 87bce12994 Add basic Makefile
This simply installs the script to /usr/local/bin
2015-05-20 16:46:02 -07:00

9 lines
114 B
Makefile

BIN ?= hosts
PREFIX ?= /usr/local
install:
install $(BIN) $(PREFIX)/bin
uninstall:
rm -f $(PREFIX)/bin/$(BIN)