X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/9783cb122811aef23966400e91cdab30108fc540..aea510c85bbf27d4cc7603b026ab760f98de6bb1:/Makefile diff --git a/Makefile b/Makefile index ebac3df..9d8c57b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ prefix = $(HOME) bindir= $(prefix)/bin mandir = $(prefix)/man +docdir = $(prefix)/share/doc # DESTDIR= LDLIBS = -lcurses @@ -8,7 +9,8 @@ CFLAGS = -Wall -O2 DFLAGS = -g -DDEBUG -Werror PROGS = tig DOCS = tig.1.html tig.1 tigrc.5.html tigrc.5 \ - manual.toc manual.html manual.html-chunked README.html \ + manual.toc manual.html manual.html-chunked manual.pdf \ + README.html ifneq (,$(wildcard .git)) VERSION = $(shell git-describe) @@ -22,22 +24,26 @@ all-debug: CFLAGS += $(DFLAGS) doc: $(DOCS) install: all + mkdir -p $(DESTDIR)$(bindir) && \ for prog in $(PROGS); do \ install $$prog $(DESTDIR)$(bindir); \ done install-doc: doc - mkdir -p $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 + mkdir -p $(DESTDIR)$(mandir)/man1 \ + $(DESTDIR)$(mandir)/man5 \ + $(DESTDIR)$(docdir)/tig for doc in $(DOCS); do \ case "$$doc" in \ *.1) install $$doc $(DESTDIR)$(mandir)/man1 ;; \ *.5) install $$doc $(DESTDIR)$(mandir)/man5 ;; \ + *.html) install $$doc $(DESTDIR)$(docdir)/tig ;; \ esac \ done clean: rm -rf manual.html-chunked - rm -f $(PROGS) $(DOCS) core + rm -f $(PROGS) $(DOCS) core *.xml spell-check: aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt @@ -61,6 +67,9 @@ tig: tig.c README.html: README asciidoc -b xhtml11 -d article -a readme $< +%.pdf : %.xml + docbook2pdf $< + %.1.html : %.1.txt asciidoc -b xhtml11 -d manpage $< @@ -87,3 +96,12 @@ README.html: README %.html-chunked : %.xml xmlto html -o $@ $< + +# Maintainer stuff +sync-docs: + cg switch release + -cg merge -n master + cg commit -m "Merge with master" + make doc + cg commit -m "Sync docs" + cg switch master