X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/a7bc4b1447f974fbbe400c3657d9ec3d0fda133e..b801d8b2bc1a6aac6b9744f21f7a10a51e16c53e:/Makefile diff --git a/Makefile b/Makefile index efeca0d..3872851 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ LDFLAGS = -lcurses -CFLAGS = -g -PROGS = cgit -DOCS = cgit.1.txt cgit.1 cgit.1.html +CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall +PROGS = tig +DOCS = tig.1.txt tig.1 tig.1.html +VERSION = $(shell git-describe) all: $(PROGS) docs: $(DOCS) @@ -14,12 +15,14 @@ install: all clean: rm -f $(PROGS) $(DOCS) -cgit: cgit.c +.PHONY: all docs install clean -cgit.1.txt: cgit.c - sed -n '/\*\*/,/\*\*/p' < $< | \ - sed '/\*\*/d' | \ - sed -n 's/^ \* *//p' > $@ +tig: tig.c + +tig.1.txt: tig.c + sed -n '/^\/\*\*/,/\*\*\//p' < $< | \ + sed '/^[^*]\*\*/d' | \ + sed 's/\*\///;s/^[^*]*\* *//' > $@ %.1.html : %.1.txt asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<