mirror of
https://github.com/octoleo/hosts.git
synced 2024-11-24 21:57:35 +00:00
11 lines
188 B
Makefile
11 lines
188 B
Makefile
BIN ?= hosts
|
|
PREFIX ?= /usr/local
|
|
|
|
install:
|
|
install $(BIN) $(PREFIX)/bin
|
|
./scripts/hosts-completion install
|
|
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/$(BIN)
|
|
./scripts/hosts-completion uninstall
|