This repository has been archived by the owner on Jun 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (45 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 3, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING. If not, write to
## the Free Software Foundation, Inc., 51 Franklin Street, Fifth
## Floor, Boston, MA 02110-1301, USA.
DESTDIR=
prefix=$(DESTDIR)/usr
bindir=$(prefix)/bin
mandir=$(prefix)/share/man/man1
.PHONY : help doc install uninstall
all : help
help :
@echo "Usage:"
@echo " make [doc|install|uninstall|help] [DESTDIR=\"$(DESTDIR)\"] [prefix=\"$(prefix)\"]"
doc :
@echo "==> Generating document..."
shocco pkgbuildup > doc/index.html
sed -i 's=http://jashkenas.github.com/docco/resources/docco.css=./docco.css=' doc/index.html
@echo "==> Done."
deploy :
@echo "==> Deploy document..."
@mkdir _deploy
@cp -rvf doc/* _deploy
@echo "==> Done."
install :
@echo "==> Installing..."
@mkdir -p $(bindir)
install -m755 pkgbuildup $(bindir)
@mkdir -p $(mandir)
install -m644 man/pkgbuildup.1 $(mandir)
@echo "==> Done."
uninstall :
@echo "==> Uninstalling..."
rm -f $(bindir)/pkgbuildup
rm -f $(mandir)/pkgbuildup.1
@echo "==> Done."