5 # Include setting from the configure script
9 bindir ?
= $(prefix)/bin
10 datarootdir ?
= $(prefix)/share
11 sysconfdir ?
= $(prefix)/etc
12 docdir ?
= $(datarootdir
)/doc
13 mandir ?
= $(datarootdir
)/man
16 # Get version either via git or from VERSION file. Allow either
17 # to be overwritten by setting DIST_VERSION on the command line.
18 ifneq (,$(wildcard .git
))
19 GITDESC
= $(subst tig-
,,$(shell git describe
))
20 WTDIRTY
= $(if
$(shell git diff-index HEAD
2>/dev
/null
),-dirty
)
21 VERSION
= $(GITDESC
)$(WTDIRTY
)
23 VERSION
= $(shell test -f VERSION
&& cat VERSION || echo
"unknown-version")
26 VERSION
= $(DIST_VERSION
)
29 # Split the version "TAG-OFFSET-gSHA1-DIRTY" into "TAG OFFSET"
30 # and append 0 as a fallback offset for "exact" tagged versions.
31 RPM_VERLIST
= $(filter-out g
% dirty
,$(subst -, ,$(VERSION
))) 0
32 RPM_VERSION
= $(word 1,$(RPM_VERLIST
))
33 RPM_RELEASE
= $(word 2,$(RPM_VERLIST
))$(if
$(WTDIRTY
),.dirty
)
37 DFLAGS
= -g
-DDEBUG
-Werror
-O0
39 TXTDOC
= tig
.1.txt tigrc
.5.txt manual.txt NEWS README INSTALL BUGS TODO
40 MANDOC
= tig
.1 tigrc
.5
41 HTMLDOC
= tig
.1.html tigrc
.5.html manual.html README.html NEWS.html
42 ALLDOC
= $(MANDOC
) $(HTMLDOC
) manual.html-chunked manual.pdf
44 # Never include the release number in the tarname for tagged
46 ifneq ($(if
$(DIST_VERSION
),$(words $(RPM_VERLIST
))),2)
47 TARNAME
= tig-
$(RPM_VERSION
)-$(RPM_RELEASE
)
49 TARNAME
= tig-
$(RPM_VERSION
)
52 override CPPFLAGS
+= '-DTIG_VERSION="$(VERSION)"'
53 override CPPFLAGS
+= '-DSYSCONFDIR="$(sysconfdir)"'
55 AUTORECONF ?
= autoreconf
57 ASCIIDOC_FLAGS
= -aversion
=$(VERSION
) -asysconfdir
=$(sysconfdir
)
59 DOCBOOK2PDF ?
= docbook2pdf
63 all-debug
: CFLAGS
+= $(DFLAGS
)
69 mkdir
-p
$(DESTDIR
)$(bindir) && \
70 for prog in
$(PROGS
); do \
71 install -p
-m
0755 "$$prog" "$(DESTDIR)$(bindir)"; \
74 install-doc-man
: doc-man
75 mkdir
-p
$(DESTDIR
)$(mandir)/man1 \
76 $(DESTDIR
)$(mandir)/man5
77 for doc in
$(MANDOC
); do \
78 sed
's#++SYSCONFDIR++#$(sysconfdir)#' < "$$doc" > "$$doc+"; \
80 *.1) install -p
-m
0644 "$$doc+" "$(DESTDIR)$(mandir)/man1/$$doc" ;; \
81 *.5) install -p
-m
0644 "$$doc+" "$(DESTDIR)$(mandir)/man5/$$doc" ;; \
86 install-doc-html
: doc-html
87 mkdir
-p
$(DESTDIR
)$(docdir
)/tig
88 for doc in
$(HTMLDOC
); do \
89 sed
's#++SYSCONFDIR++#$(sysconfdir)#' < "$$doc" > "$$doc+"; \
91 *.html
) install -p
-m
0644 "$$doc+" "$(DESTDIR)$(docdir)/tig/$$doc" ;; \
96 install-doc
: install-doc-man install-doc-html
99 $(RM
) -r
$(TARNAME
) *.spec tig-
*.
tar.gz tig-
*.
tar.gz.md5
100 $(RM
) $(PROGS
) core
*.o
*.xml
103 $(RM
) -r manual.html-chunked autom4te.cache
104 $(RM
) *.toc
$(ALLDOC
) aclocal.m4 configure
105 $(RM
) config.h config.log config.make config.status config.h.in
108 for file in
$(TXTDOC
) tig.c
; do \
109 aspell
--lang
=en
--dont-backup \
110 --personal
=.
/contrib
/aspell.dict
check $$file; \
116 dist: configure tig.spec
117 @mkdir
-p
$(TARNAME
) && \
118 cp tig.spec configure config.h.in aclocal.m4
$(TARNAME
) && \
119 echo
$(VERSION
) > $(TARNAME
)/VERSION
120 git archive
--format
=tar --prefix=$(TARNAME
)/ HEAD | \
121 tar --delete
$(TARNAME
)/VERSION
> $(TARNAME
).
tar && \
122 tar rf
$(TARNAME
).
tar `find $(TARNAME)/*` && \
123 gzip
-f
-9 $(TARNAME
).
tar && \
124 md5sum
$(TARNAME
).
tar.gz
> $(TARNAME
).
tar.gz.md5
128 rpmbuild
-ta
$(TARNAME
).
tar.gz
130 configure
: configure.ac acinclude.m4
133 .PHONY
: all all-debug doc doc-man doc-html
install install-doc \
134 install-doc-man install-doc-html
clean spell-check
dist rpm
139 tig.spec
: contrib
/tig.spec.in
140 sed
-e
's/@@VERSION@@/$(RPM_VERSION)/g' \
141 -e
's/@@RELEASE@@/$(RPM_RELEASE)/g' < $< > $@
143 manual.html
: manual.toc
144 manual.toc
: manual.txt
145 sed
-n
'/^\[\[/,/\(---\|~~~\)/p' < $< | while read line
; do \
147 "-----"*) echo
". <<$$ref>>"; ref
= ;; \
148 "~~~~~"*) echo
"- <<$$ref>>"; ref
= ;; \
149 "[["*"]]") ref
="$$line" ;; \
150 *) ref
="$$ref, $$line" ;; \
151 esac
; done | sed
's/\[\[\(.*\)\]\]/\1/' > $@
153 README.html
: README asciidoc.conf
154 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-a readme
$<
156 NEWS.html
: NEWS asciidoc.conf
157 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
$<
159 %.1.html
: %.1.txt asciidoc.conf
160 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
162 %.1.xml
: %.1.txt asciidoc.conf
163 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
165 %.5.html
: %.5.txt asciidoc.conf
166 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
168 %.5.xml
: %.5.txt asciidoc.conf
169 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
171 %.html
: %.txt asciidoc.conf
172 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-n
$<
174 %.xml
: %.txt asciidoc.conf
175 $(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d article
$<
180 %.html-chunked
: %.xml
181 $(XMLTO
) html
-o
$@
$<