X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/8855ada4ae068bc5d8746f125747a678975180d9..78dd873628206446d41ec47b4b67ad5a0d181d24:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index fe498bb..c3e2a11 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LDFLAGS = -lcurses CFLAGS = '-DVERSION="$(VERSION)"' -Wall DFLAGS = -g -DDEBUG PROGS = tig -DOCS = tig.1.txt tig.1 tig.1.html +DOCS = tig.1.txt tig.1.html tig.1 README.html VERSION = $(shell git-describe) all: $(PROGS) @@ -26,6 +26,9 @@ install-docs: docs clean: rm -f $(PROGS) $(DOCS) core +spell-check: + aspell --lang=en --check tig.1.txt + .PHONY: all docs install clean tig: tig.c @@ -36,6 +39,9 @@ tig.1.txt: tig.c 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 $<