X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/cb7f42cdc1a07d0f88b8af211d214da5febd6223..8b0297aeccd27008c3e0c4e9b3d30808a0c89c2b:/Makefile diff --git a/Makefile b/Makefile index 1a3dc15..a7ff69b 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 tigrc.5.html tigrc.5 README.html +DOCS = tig.1.html tig.1 tigrc.5.html tigrc.5 \ + manual.html manual.html-chunked README.html ifneq (,$(wildcard .git)) VERSION = $(shell git-describe) @@ -14,14 +15,14 @@ endif all: $(PROGS) all-debug: $(PROGS) all-debug: CFLAGS += $(DFLAGS) -docs: $(DOCS) +doc: $(DOCS) install: all for prog in $(PROGS); do \ install $$prog $(PREFIX)/bin; \ done -install-docs: docs +install-doc: doc for doc in $(DOCS); do \ case "$$doc" in \ *.1) install $$doc $(PREFIX)/man/man1 ;; \ @@ -30,21 +31,16 @@ install-docs: docs done clean: + rm -rf manual.html-chunked rm -f $(PROGS) $(DOCS) core spell-check: - aspell --lang=en --check tig.1.txt + aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt -.PHONY: all docs install clean +.PHONY: all all-debug doc install install-doc clean spell-check tig: tig.c -tig.1.txt: tig.c - sed -n '/\/\*\*/,/\*\*\//p' < $< | \ - sed 's/.*\*\*\/.*//' | \ - sed '/^[^*]*\*\*/d' | \ - sed 's/\*\///;s/^[^*]*\* *//' > $@ - README.html: README asciidoc -b xhtml11 -d article -f web.conf $< @@ -65,3 +61,12 @@ README.html: README %.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 $@ $<