projects
/
tweeper.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add a man page
[tweeper.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
e39db8e
..
e076b13
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-3,13
+3,23
@@
prefix ?= /usr/local
PHP_SCRIPT_DIR ?= $(prefix)/share/php
BIN_DIR := $(prefix)/bin
PHP_SCRIPT_DIR ?= $(prefix)/share/php
BIN_DIR := $(prefix)/bin
+MAN_DIR := $(prefix)/share/man
TWEEPER_DIR := $(PHP_SCRIPT_DIR)/tweeper
all:
TWEEPER_DIR := $(PHP_SCRIPT_DIR)/tweeper
all:
+
clean:
clean:
+ rm -f tweeper.1
+
+docs:
+ a2x -f manpage tweeper.1.asciidoc
+
+installdocs: docs
+ install -d $(DESTDIR)$(MAN_DIR)/man1
+ install -m644 tweeper.1 $(DESTDIR)$(MAN_DIR)/man1
-install:
+install:
installdocs
install -d $(DESTDIR)$(TWEEPER_DIR)
install -m644 *.xsl $(DESTDIR)$(TWEEPER_DIR)
install -m644 *.php $(DESTDIR)$(TWEEPER_DIR)
install -d $(DESTDIR)$(TWEEPER_DIR)
install -m644 *.xsl $(DESTDIR)$(TWEEPER_DIR)
install -m644 *.php $(DESTDIR)$(TWEEPER_DIR)