Make epochs configurable with exclude patterns
[sitarba.git] / Makefile
1 PREFIX=/usr
2 # Where the script binary should go
3 BINPATH = $(PREFIX)/bin
4 # Where the manpage should go
5 MANPATH = $(PREFIX)/share/man
6 CONFFILE = /etc/shbackup.conf
7
8 ######################################################################
9
10 all:
11
12 install: all
13 install -m 0755 shbackup $(BINPATH)/shbackup
14 install -m 0644 shbackup.conf $(CONFFILE)
15 install -m 0644 shbackup.1 $(MANPATH)/man1/shbackup.1
16
17 manpage: shbackup.1
18
19 shbackup.1: shbackup.docbook
20 docbook2man.pl $<
21
22