From 6366a4b1f1dea523b666944cb82fcd039fa81823 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sun, 24 Oct 2021 22:46:16 -0400 Subject: initial --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..091d068 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +PREFIX ?= /usr/local + +all: + @echo "targets are:" + @echo " install" + @echo " uninstall" + +install: + install -m 755 dpw $(PREFIX)/bin/dpw + install -m 755 dpw-gpg $(PREFIX)/bin/dpw-gpg + +uninstall: + rm "$(PREFIX)/bin/dpw" "$(PREFIX)/bin/dpw-gpg" -- cgit v1.2.3