forked from team/bashblog
13 lines
247 B
Makefile
13 lines
247 B
Makefile
PREFIX ?= /usr/local
|
|
BINDIR ?= $(PREFIX)/bin
|
|
|
|
install:
|
|
$(info Installing the executable to $(BINDIR))
|
|
@install -Dm755 bb.sh $(BINDIR)/bb
|
|
|
|
uninstall:
|
|
$(info Removing the executable from $(BINDIR))
|
|
@rm -f $(BINDIR)/bb
|
|
|
|
.PHONY: install uninstall
|