X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/4c6fabc213355ec6a575d36d53baf661704c4056..965537fa357e94c1fe6fda5cf26a93c1b06e9d3a:/Makefile diff --git a/Makefile b/Makefile index 9a0cb60..1d8e180 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,19 @@ PREFIX = $(HOME) -LDFLAGS = -lcurses -CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall +LDLIBS = -lcurses +CFLAGS = -Wall -O2 +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)) +VERSION = $(shell git-describe) +WTDIRTY = $(shell git-diff-index --name-only HEAD 2>/dev/null) +CFLAGS += '-DVERSION="$(VERSION)$(if $(WTDIRTY),-dirty)"' +endif all: $(PROGS) +all-debug: $(PROGS) +all-debug: CFLAGS += $(DFLAGS) docs: $(DOCS) install: all @@ -21,7 +29,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 @@ -29,10 +40,13 @@ tig: tig.c tig.1.txt: tig.c sed -n '/\/\*\*/,/\*\*\//p' < $< | \ - sed 's/.*\*\*\///' | \ + sed 's/.*\*\*\/.*//' | \ 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 $<