diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..90216b5 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +PREFIX ?= /usr +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