X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/6b161b31fbea574bc35f2a42ae910b38207122cd..6cb291b793ec51232396303bcb3c461650fe511f:/Makefile diff --git a/Makefile b/Makefile index 57d7ead..6eaffd4 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,13 @@ PREFIX = $(HOME) -LDFLAGS = -lcurses -CFLAGS = '-DVERSION="$(VERSION)"' -Wall -DFLAGS = -g -DDEBUG +LDLIBS = -lcurses +CFLAGS = -Wall +DFLAGS = -g -DDEBUG -Werror PROGS = tig -DOCS = tig.1.txt tig.1 tig.1.html -VERSION = $(shell git-describe) +DOCS = tig.1.txt tig.1.html tig.1 README.html + +ifneq (,$(wildcard .git)) +CFLAGS += '-DVERSION="$(shell git-describe)"' +endif all: $(PROGS) all-debug: $(PROGS) @@ -16,7 +19,6 @@ install: all install $$prog $(PREFIX)/bin; \ done - install-docs: docs for doc in $(DOCS); do \ case "$$doc" in \ @@ -25,7 +27,10 @@ install-docs: docs done clean: - rm -f $(PROGS) $(DOCS) + rm -f $(PROGS) $(DOCS) core + +spell-check: + aspell --lang=en --check tig.1.txt .PHONY: all docs install clean @@ -37,6 +42,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 $<