From 14ddf6244098b533333caf79af114b95d72a166d Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 26 May 2020 07:02:25 -0500 Subject: Add Makefile --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3096726 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# bollux: a gemini client in bash +# Author: Case Duckworth +# License: MIT + +PREFIX ?= /usr + +PRGN := bollux + +.PHONY: def install uninstall + +def: + @echo "run 'make install' to install" + @echo "run 'make uninstall' to uninstall" + +install: $(PRGN) + install -D $< $(DESTDIR)$(PREFIX)/bin + +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/$(PRGN) -- cgit 1.4.1-21-gabe81