Set timeout
[bollux.git/.git] / Makefile
1 # bollux: a gemini client in bash
2 # Author: Case Duckworth <acdw@acdw.net>
3 # License: MIT
4
5 PREFIX ?= /usr
6
7 .PHONY: def install uninstall
8
9 def:
10         @echo "run 'make install' to install"
11         @echo "run 'make uninstall' to uninstall"
12
13 install:
14         install -Dt $(DESTDIR)$(PREFIX)/bin/            bollux        
15         install -Dt $(DESTDIR)$(PREFIX)/share/man/man1/ bollux.1      
16         install -Dt $(DESTDIR)$(PREFIX)/share/man/man5/ bollux.conf.5 
17
18 uninstall:
19         rm -f $(DESTDIR)$(PREFIX)/bin/bollux
20         rm -f $(DESTDIR)$(PREFIX)/share/man/man1/bollux.1
21         rm -f $(DESTDIR)$(PREFIX)/share/man/man5/bollux.conf.5