about summary refs log tree commit diff stats
path: root/Makefile
blob: 309672694d05360260124fcae86aef2371a59c66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# bollux: a gemini client in bash
# Author: Case Duckworth <acdw@acdw.net>
# 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)