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