diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a419ce7 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +BIN ?= ezsops +PREFIX ?= /usr/local + +install: + cp ezsops.sh $(PREFIX)/bin/$(BIN) + +uninstall: + rm -f $(PREFIX)/bin/$(BIN) \ No newline at end of file