TODO's and TODON'T's ...
[tig] / Makefile
index efeca0d..9a0cb60 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,31 +1,43 @@
+PREFIX = $(HOME)
 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)
 
 install: all
        for prog in $(PROGS); do \
-               install $$prog $(HOME)/bin; \
+               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 $(PROGS) $(DOCS)
 
-cgit: cgit.c
+.PHONY: all docs install clean
+
+tig: tig.c
 
-cgit.1.txt: cgit.c
-       sed -n '/\*\*/,/\*\*/p' < $< | \
-       sed '/\*\*/d' | \
-       sed -n 's/^ \* *//p' > $@
+tig.1.txt: tig.c
+       sed -n '/\/\*\*/,/\*\*\//p' < $< | \
+       sed 's/.*\*\*\///' | \
+       sed '/^[^*]*\*\*/d' | \
+       sed 's/\*\///;s/^[^*]*\* *//' > $@
 
 %.1.html : %.1.txt
-       asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
+       asciidoc -b xhtml11 -d manpage $<
 
 %.1.xml : %.1.txt
-       asciidoc -b docbook -d manpage -f asciidoc.conf $<
+       asciidoc -b docbook -d manpage $<
 
 %.1 : %.1.xml
        xmlto man $<