mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-13 08:46:28 +00:00
87bce12994
This simply installs the script to /usr/local/bin
9 lines
114 B
Makefile
9 lines
114 B
Makefile
BIN ?= hosts
|
|
PREFIX ?= /usr/local
|
|
|
|
install:
|
|
install $(BIN) $(PREFIX)/bin
|
|
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/$(BIN)
|