hosts/Makefile

9 lines
114 B
Makefile

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