1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
prefix = $(HOME)
bindir= $(prefix)/bin
mandir = $(prefix)/man
docdir = $(prefix)/share/doc
# DESTDIR=
LDLIBS = -lcurses
CFLAGS = -Wall -O2
DFLAGS = -g -DDEBUG -Werror
PROGS = tig
DOCS = tig.1.html tig.1 tigrc.5.html tigrc.5 \
manual.toc manual.html manual.html-chunked manual.pdf \
README.html
ifneq (,$(wildcard .git))
VERSION = $(shell git-describe)
WTDIRTY = $(shell git-diff-index --name-only HEAD 2>/dev/null)
CFLAGS += '-DVERSION="$(VERSION)$(if $(WTDIRTY),-dirty)"'
endif
all: $(PROGS)
all-debug: $(PROGS)
all-debug: CFLAGS += $(DFLAGS)
doc: $(DOCS)
install: all
mkdir -p $(DESTDIR)$(bindir) && \
for prog in $(PROGS); do \
install $$prog $(DESTDIR)$(bindir); \
done
install-doc: doc
mkdir -p $(DESTDIR)$(mandir)/man1 \
$(DESTDIR)$(mandir)/man5 \
$(DESTDIR)$(docdir)/tig
for doc in $(DOCS); do \
case "$$doc" in \
*.1) install $$doc $(DESTDIR)$(mandir)/man1 ;; \
*.5) install $$doc $(DESTDIR)$(mandir)/man5 ;; \
*.html) install $$doc $(DESTDIR)$(docdir)/tig ;; \
esac \
done
clean:
rm -rf manual.html-chunked
rm -f $(PROGS) $(DOCS) core *.xml
spell-check:
aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt
strip: all
strip $(PROGS)
.PHONY: all all-debug doc install install-doc clean spell-check
manual.toc: manual.txt
sed -n '/^\[\[/,/\(---\|~~~\)/p' < $< | while read line; do \
case "$$line" in \
"-----"*) echo ". <<$$ref>>"; ref= ;; \
"~~~~~"*) echo "- <<$$ref>>"; ref= ;; \
"[["*"]]") ref="$$line" ;; \
*) ref="$$ref, $$line" ;; \
esac; done | sed 's/\[\[\(.*\)\]\]/\1/' > $@
tig: tig.c
README.html: README
asciidoc -b xhtml11 -d article -a readme $<
%.pdf : %.xml
docbook2pdf $<
%.1.html : %.1.txt
asciidoc -b xhtml11 -d manpage $<
%.1.xml : %.1.txt
asciidoc -b docbook -d manpage $<
%.1 : %.1.xml
xmlto man $<
%.5.html : %.5.txt
asciidoc -b xhtml11 -d manpage $<
%.5.xml : %.5.txt
asciidoc -b docbook -d manpage $<
%.5 : %.5.xml
xmlto man $<
%.html : %.txt
asciidoc -b xhtml11 -d article -n $<
%.xml : %.txt
asciidoc -b docbook -d article $<
%.html-chunked : %.xml
xmlto html -o $@ $<
# Maintainer stuff
sync-docs:
cg switch release
-cg merge -n master
cg commit -m "Merge with master"
make doc
cg commit -m "Sync docs"
cg switch master
|