X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/05f1685b4ce49e79cbe632a6779556a42263be2f..415de53cef9d8477e97fbee65403932cd45ed042:/Makefile diff --git a/Makefile b/Makefile index eec1e03..78d47a4 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,57 @@ -LDFLAGS = -lcurses -CFLAGS = -g +PREFIX = $(HOME) +LDLIBS = -lcurses +CFLAGS = -Wall +DFLAGS = -g -DDEBUG -Werror +PROGS = tig +DOCS = tig.1.txt tig.1.html tig.1 README.html -all: cgit +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 - install cgit $(HOME)/bin + for prog in $(PROGS); do \ + install $$prog $(PREFIX)/bin; \ + done + +install-docs: docs + for doc in $(DOCS); do \ + case "$$doc" in \ + *.1) install $$doc $(PREFIX)/man/man1 ;; \ + esac \ + done clean: - rm -f cgit + rm -f $(PROGS) $(DOCS) core + +spell-check: + aspell --lang=en --check tig.1.txt + +.PHONY: all docs install clean + +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 $< + +%.1.html : %.1.txt + asciidoc -b xhtml11 -d manpage $< + +%.1.xml : %.1.txt + asciidoc -b docbook -d manpage $< -cgit: cgit.c +%.1 : %.1.xml + xmlto man $<