Cleanup line matching
[tig] / Makefile
... / ...
CommitLineData
1LDFLAGS = -lcurses
2CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall
3PROGS = tig
4DOCS = tig.1.txt tig.1 tig.1.html
5VERSION = $(shell git-describe)
6
7all: $(PROGS)
8docs: $(DOCS)
9
10install: all
11 for prog in $(PROGS); do \
12 install $$prog $(HOME)/bin; \
13 done
14
15clean:
16 rm -f $(PROGS) $(DOCS)
17
18.PHONY: all docs install clean
19
20tig: tig.c
21
22tig.1.txt: tig.c
23 sed -n '/^\/\*\*/,/\*\*\//p' < $< | \
24 sed '/^[^*]\*\*/d' | \
25 sed 's/\*\///;s/^[^*]*\* *//' > $@
26
27%.1.html : %.1.txt
28 asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
29
30%.1.xml : %.1.txt
31 asciidoc -b docbook -d manpage -f asciidoc.conf $<
32
33%.1 : %.1.xml
34 xmlto man $<