Add a man page
[tweeper.git] / 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
+MAN_DIR := $(prefix)/share/man
 
 TWEEPER_DIR := $(PHP_SCRIPT_DIR)/tweeper
 
 all:
+
 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)