chiark / gitweb /
Sync. Home/End seems to finally work.
[tig] / Makefile
index eec1e0301682a79a2fd583c0321abe8f0b3c57ec..38728516b42deff51de25b9405b7c18c8056deac 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,34 @@
 LDFLAGS = -lcurses
-CFLAGS = -g
+CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall
+PROGS  = tig
+DOCS   = tig.1.txt tig.1 tig.1.html
+VERSION        = $(shell git-describe)
 
-all: cgit
+all: $(PROGS)
+docs: $(DOCS)
 
 install: all
-       install cgit $(HOME)/bin
+       for prog in $(PROGS); do \
+               install $$prog $(HOME)/bin; \
+       done
 
 clean:
-       rm -f cgit
+       rm -f $(PROGS) $(DOCS)
 
-cgit: cgit.c
+.PHONY: all docs install clean
+
+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 $<
+
+%.1.xml : %.1.txt
+       asciidoc -b docbook -d manpage -f asciidoc.conf $<
+
+%.1 : %.1.xml
+       xmlto man $<