X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/9074d9b648a57d65dbcfc4ba05b69ca437699329..e2c016172ea5201961edec7dca2821cbf71255d2:/Makefile diff --git a/Makefile b/Makefile index 78d47a4..fb8f53a 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ PREFIX = $(HOME) LDLIBS = -lcurses -CFLAGS = -Wall +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) @@ -14,33 +15,35 @@ 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 ;; \ + *.5) install $$doc $(PREFIX)/man/man5 ;; \ esac \ done clean: + rm -rf manual.html-chunked rm -f $(PROGS) $(DOCS) core spell-check: aspell --lang=en --check tig.1.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 's/.*\*\*\/.*//' | \ sed '/^[^*]*\*\*/d' | \ sed 's/\*\///;s/^[^*]*\* *//' > $@ @@ -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 $@ $<