Move ~/.tigrc documentation into it's own man page, tigrc(5)
[tig] / Makefile
index fe498bb..1a3dc15 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,15 @@
 PREFIX = $(HOME)
-LDFLAGS = -lcurses
-CFLAGS = '-DVERSION="$(VERSION)"' -Wall
-DFLAGS = -g -DDEBUG
+LDLIBS  = -lcurses
+CFLAGS = -Wall -O2
+DFLAGS = -g -DDEBUG -Werror
 PROGS  = tig
-DOCS   = tig.1.txt tig.1 tig.1.html
-VERSION        = $(shell git-describe)
+DOCS   = tig.1.txt tig.1.html tig.1 tigrc.5.html tigrc.5 README.html
+
+ifneq (,$(wildcard .git))
+VERSION = $(shell git-describe)
+WTDIRTY = $(shell git-diff-index --name-only HEAD 2>/dev/null)
+CFLAGS += '-DVERSION="$(VERSION)$(if $(WTDIRTY),-dirty)"'
+endif
 
 all: $(PROGS)
 all-debug: $(PROGS)
@@ -20,22 +25,29 @@ install-docs: docs
        for doc in $(DOCS); do \
                case "$$doc" in \
                *.1) install $$doc $(PREFIX)/man/man1 ;; \
+               *.5) install $$doc $(PREFIX)/man/man5 ;; \
                esac \
        done
 
 clean:
        rm -f $(PROGS) $(DOCS) core
 
+spell-check:
+       aspell --lang=en --check tig.1.txt
+
 .PHONY: all docs install clean
 
 tig: tig.c
 
 tig.1.txt: tig.c
        sed -n '/\/\*\*/,/\*\*\//p' < $< | \
-       sed 's/.*\*\*\///' | \
+       sed 's/.*\*\*\/.*//' | \
        sed '/^[^*]*\*\*/d' | \
        sed 's/\*\///;s/^[^*]*\* *//' > $@
 
+README.html: README
+       asciidoc -b xhtml11 -d article -f web.conf $<
+
 %.1.html : %.1.txt
        asciidoc -b xhtml11 -d manpage $<
 
@@ -44,3 +56,12 @@ tig.1.txt: tig.c
 
 %.1 : %.1.xml
        xmlto man $<
+
+%.5.html : %.5.txt
+       asciidoc -b xhtml11 -d manpage $<
+
+%.5.xml : %.5.txt
+       asciidoc -b docbook -d manpage $<
+
+%.5 : %.5.xml
+       xmlto man $<