about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorCase Duckworth2020-05-26 07:02:25 -0500
committerCase Duckworth2020-05-26 07:02:25 -0500
commit14ddf6244098b533333caf79af114b95d72a166d (patch)
treedfda855ad291a6ebbaaadbc6be35656af2f9fa9b /Makefile
parentAdd less prompts (diff)
downloadbollux-14ddf6244098b533333caf79af114b95d72a166d.tar.gz
bollux-14ddf6244098b533333caf79af114b95d72a166d.zip
Add Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3096726 --- /dev/null +++ b/Makefile
@@ -0,0 +1,19 @@
1# bollux: a gemini client in bash
2# Author: Case Duckworth <acdw@acdw.net>
3# License: MIT
4
5PREFIX ?= /usr
6
7PRGN := bollux
8
9.PHONY: def install uninstall
10
11def:
12 @echo "run 'make install' to install"
13 @echo "run 'make uninstall' to uninstall"
14
15install: $(PRGN)
16 install -D $< $(DESTDIR)$(PREFIX)/bin
17
18uninstall:
19 rm -f $(DESTDIR)$(PREFIX)/bin/$(PRGN)