X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/660e09ad0123e5c31bfca8ce0e7d1df835786232..8d741c0664539caf54cb9004151bf8f72517df06:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index 1d8e180..ac545e6 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,8 @@ LDLIBS = -lcurses CFLAGS = -Wall -O2 DFLAGS = -g -DDEBUG -Werror PROGS = tig -DOCS = tig.1.txt tig.1.html tig.1 README.html +DOCS = tig.1.txt tig.1.html tig.1 tigrc.5.html tigrc.5 \ + manual.html manual.html-chunked README.html ifneq (,$(wildcard .git)) VERSION = $(shell git-describe) @@ -25,10 +26,12 @@ 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 -rf manual.html-chunked rm -f $(PROGS) $(DOCS) core spell-check: @@ -55,3 +58,21 @@ README.html: README %.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 $< + +%.html : %.txt + asciidoc -b xhtml11 -d article $< + +%.xml : %.txt + asciidoc -b docbook -d article $< + +%.html-chunked : %.xml + xmlto html -o $@ $<