3 # The last tagged version. Can be overridden either by the version from
4 # git or from the value of the DIST_VERSION environment variable.
9 # Include kernel specific configuration
10 kernel_name
:= $(shell sh
-c
'uname -s 2>/dev/null || echo unknown')
11 -include contrib
/config.make-
$(kernel_name
)
13 # Include setting from the configure script
17 # TIG_ variables are set by contrib/config.make-$(kernel_name).
18 TIG_NCURSES ?
= -lcurses
19 LDFLAGS ?
= $(TIG_LDFLAGS
)
20 CPPFLAGS ?
= $(TIG_CPPFLAGS
)
21 LDLIBS ?
= $(TIG_NCURSES
) $(TIG_LDLIBS
)
22 CFLAGS ?
= -Wall
-O2
$(TIG_CFLAGS
)
25 bindir ?
= $(prefix)/bin
26 datarootdir ?
= $(prefix)/share
27 sysconfdir ?
= $(prefix)/etc
28 docdir ?
= $(datarootdir
)/doc
29 mandir ?
= $(datarootdir
)/man
32 ifneq (,$(wildcard .git
))
33 GITDESC
= $(subst tig-
,,$(shell git describe
2>/dev
/null
))
34 COMMIT
:= $(if
$(GITDESC
),$(GITDESC
),$(VERSION
)-g
$(shell git describe
--always
))
35 WTDIRTY
= $(if
$(shell git diff-index HEAD
2>/dev
/null
),-dirty
)
36 VERSION
= $(COMMIT
)$(WTDIRTY
)
39 VERSION
= $(DIST_VERSION
)
42 # Split the version "TAG-OFFSET-gSHA1-DIRTY" into "TAG OFFSET"
43 # and append 0 as a fallback offset for "exact" tagged versions.
44 RPM_VERLIST
= $(filter-out g
% dirty
,$(subst -, ,$(VERSION
))) 0
45 RPM_VERSION
= $(word 1,$(RPM_VERLIST
))
46 RPM_RELEASE
= $(word 2,$(RPM_VERLIST
))$(if
$(WTDIRTY
),.dirty
)
48 DFLAGS
= -g
-DDEBUG
-Werror
-O0
50 TOOLS
= test/tools
/test-graph tools
/doc-gen
51 TXTDOC
= doc
/tig
.1.adoc doc
/tigrc
.5.adoc doc
/manual.adoc NEWS.adoc README.adoc INSTALL.adoc
52 MANDOC
= doc
/tig
.1 doc
/tigrc
.5 doc
/tigmanual
.7
53 HTMLDOC
= doc
/tig
.1.html doc
/tigrc
.5.html doc
/manual.html README.html INSTALL.html NEWS.html
54 ALLDOC
= $(MANDOC
) $(HTMLDOC
) doc
/manual.html-chunked doc
/manual.pdf
56 # Never include the release number in the tarname for tagged
58 ifneq ($(if
$(DIST_VERSION
),$(words $(RPM_VERLIST
))),2)
59 TARNAME
= tig-
$(RPM_VERSION
)-$(RPM_RELEASE
)
61 TARNAME
= tig-
$(RPM_VERSION
)
64 override CPPFLAGS
+= '-DTIG_VERSION="$(VERSION)"'
65 override CPPFLAGS
+= '-DSYSCONFDIR="$(sysconfdir)"'
68 ASCIIDOC_FLAGS
= -aversion
=$(VERSION
) -asysconfdir
=$(sysconfdir
) -f doc
/asciidoc.conf
70 DOCBOOK2PDF ?
= docbook2pdf
77 all-debug
: CFLAGS
+= $(DFLAGS
)
85 $(QUIET_INSTALL
)tools
/install.sh bin
$(EXE
) "$(DESTDIR)$(bindir)"
86 $(QUIET_INSTALL
)tools
/install.sh data tigrc
"$(DESTDIR)$(sysconfdir)"
88 install-doc-man
: doc-man
89 $(Q
)$(foreach doc
, $(filter %.1, $(MANDOC
)), \
90 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man1";)
91 $(Q
)$(foreach doc
, $(filter %.5, $(MANDOC
)), \
92 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man5";)
93 $(Q
)$(foreach doc
, $(filter %.7, $(MANDOC
)), \
94 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man7";)
96 install-release-doc-man
:
97 GIT_INDEX_FILE
=.tmp-doc-index git read-tree
origin/release
98 GIT_INDEX_FILE
=.tmp-doc-index git checkout-index
-f
--prefix=.
/ $(MANDOC
)
100 $(MAKE
) install-doc-man
102 install-doc-html
: doc-html
103 $(Q
)$(foreach doc
, $(HTMLDOC
), \
104 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(docdir)/tig";)
106 install-release-doc-html
:
107 GIT_INDEX_FILE
=.tmp-doc-index git read-tree
origin/release
108 GIT_INDEX_FILE
=.tmp-doc-index git checkout-index
-f
--prefix=.
/ $(HTMLDOC
)
110 $(MAKE
) install-doc-html
112 install-doc
: install-doc-man install-doc-html
113 install-release-doc
: install-release-doc-man install-release-doc-html
116 $(QUIET_UNINSTALL
)tools
/uninstall.sh
"$(DESTDIR)$(bindir)/$(EXE:src/%=%)"
117 $(QUIET_UNINSTALL
)tools
/uninstall.sh
"$(DESTDIR)$(sysconfdir)/tigrc"
118 $(Q
)$(foreach doc
, $(filter %.1, $(MANDOC
:doc
/%=%)), \
119 $(QUIET_UNINSTALL_EACH
)tools
/uninstall.sh
"$(DESTDIR)$(mandir)/man1/$(doc)";)
120 $(Q
)$(foreach doc
, $(filter %.5, $(MANDOC
:doc
/%=%)), \
121 $(QUIET_UNINSTALL_EACH
)tools
/uninstall.sh
"$(DESTDIR)$(mandir)/man5/$(doc)";)
122 $(Q
)$(foreach doc
, $(filter %.7, $(MANDOC
:doc
/%=%)), \
123 $(QUIET_UNINSTALL_EACH
)tools
/uninstall.sh
"$(DESTDIR)$(mandir)/man7/$(doc)";)
124 $(Q
)$(foreach doc
, $(HTMLDOC
:doc
/%=%), \
125 $(QUIET_UNINSTALL_EACH
)tools
/uninstall.sh
"$(DESTDIR)$(docdir)/tig/$(doc)";)
127 clean: clean-test clean-coverage
128 $(Q
)$(RM
) -r
$(TARNAME
) *.spec tig-
*.
tar.gz tig-
*.
tar.gz.md5 .deps
129 $(Q
)$(RM
) $(EXE
) $(TOOLS
) $(OBJS
) core doc
/*.xml src
/builtin-config.c
130 $(Q
)$(RM
) $(OBJS
:%.o
=%.gcda
) $(OBJS
:%.o
=%.gcno
)
133 $(RM
) -r doc
/manual.html-chunked autom4te.cache release-docs
134 $(RM
) doc
/*.toc
$(ALLDOC
) aclocal.m4 configure
135 $(RM
) config.h config.log config.make config.status config.h.in
138 for file in
$(TXTDOC
) src
/tig.c
; do \
139 aspell
--lang
=en
--dont-backup \
140 --personal
=.
/tools
/aspell.dict
check $$file; \
147 @for file in
include/tig
/*.h src
/*.c tools
/*.c
test/tools
/*.c
; do \
148 grep
-q
'/* Copyright' "$$file" && \
149 sed
'0,/.*\*\//d' < "$$file" | \
150 grep
-v
'/* vim: set' > "$$file.tmp"; \
151 { cat tools
/header.h
"$$file.tmp"; \
152 echo
"/* vim: set ts=8 sw=8 noexpandtab: */"; } > "$$file"; \
154 echo
"Updated $$file"; \
157 update-docs
: tools
/doc-gen
158 doc
="doc/tigrc.5.adoc"; \
159 sed
-n
'0,/ifndef::DOC_GEN_ACTIONS/p' < "$$doc" > "$$doc.gen"; \
160 .
/tools
/doc-gen actions
>> "$$doc.gen"; \
161 sed
-n
'/endif::DOC_GEN_ACTIONS/,$$p' < "$$doc" >> "$$doc.gen" ; \
162 mv
"$$doc.gen" "$$doc"
164 dist: configure tig.spec
165 $(Q
)mkdir
-p
$(TARNAME
) && \
166 cp Makefile tig.spec configure config.h.in aclocal.m4
$(TARNAME
) && \
167 sed
-i
"s/VERSION\s\+=\s\+[0-9]\+\([.][0-9]\+\)\+/VERSION = $(VERSION)/" $(TARNAME
)/Makefile
168 git archive
--format
=tar --prefix=$(TARNAME
)/ HEAD | \
169 tar --delete
$(TARNAME
)/Makefile
> $(TARNAME
).
tar && \
170 tar rf
$(TARNAME
).
tar `find $(TARNAME)/*` && \
171 gzip
-f
-9 $(TARNAME
).
tar && \
172 md5sum
$(TARNAME
).
tar.gz
> $(TARNAME
).
tar.gz.md5
173 $(Q
)$(RM
) -r
$(TARNAME
)
176 rpmbuild
-ta
$(TARNAME
).
tar.gz
178 COVERAGE_CFLAGS ?
= -fprofile-arcs
-ftest-coverage
180 all-coverage
: CFLAGS
+= $(COVERAGE_CFLAGS
)
182 COVERAGE_DIR ?
= test/coverage
185 @
$(RM
) -rf
$(COVERAGE_DIR
)
187 reset-coverage
: clean-coverage
188 $(LCOV
) --reset-counters
190 test-coverage
: clean-coverage all-coverage
test $(COVERAGE_DIR
)/index.html
192 $(COVERAGE_DIR
)/trace
:
193 @mkdir
-p
$(COVERAGE_DIR
)
194 $(QUIET_LCOV
)$(LCOV
) $(Q
:@
=--quiet
) --capture
--no-external
--directory .
--output-file
$@
196 $(COVERAGE_DIR
)/index.html
: $(COVERAGE_DIR
)/trace
197 $(QUIET_GENHTML
)$(GENHTML
) $(Q
:@
=--quiet
) --output-directory
$(COVERAGE_DIR
) $<
199 TESTS
= $(sort $(shell find
test -type f
-name
'*-test'))
202 $(Q
)$(RM
) -r
test/tmp
204 test: clean-test
$(TESTS
)
205 $(QUIET_SUMMARY
)test/tools
/show-results.sh
207 export TIG_TEST_OPTS
= $(V
:1=no-indent
)
209 $(TESTS
): PATH
:= $(CURDIR
)/test/tools
:$(CURDIR
)/src
:$(PATH
)
210 $(TESTS
): $(EXE
) test/tools
/test-graph
211 $(QUIET_TEST
)$(TEST_SHELL
) $@
213 # Other autoconf-related rules are hidden in config.make.in so that
214 # they don't confuse Make when we aren't actually using ./configure
215 configure
: configure.ac acinclude.m4 tools
/*.m4
218 .PHONY
: all all-coverage all-debug
clean clean-coverage clean-test doc \
219 doc-man doc-html
dist distclean install install-doc \
220 install-doc-man install-doc-html install-release-doc-html \
221 install-release-doc-man rpm spell-check
strip test \
222 test-coverage update-docs update-headers
$(TESTS
)
225 COMPAT_CPPFLAGS
+= -DNO_MKSTEMPS
226 COMPAT_OBJS
+= compat
/mkstemps.o
230 COMPAT_CPPFLAGS
+= -DNO_SETENV
231 COMPAT_OBJS
+= compat
/setenv.o
235 COMPAT_CPPFLAGS
+= -DNO_STRNDUP
236 COMPAT_OBJS
+= compat
/strndup.o
239 COMPAT_OBJS
+= compat
/hashtab.o
241 override CPPFLAGS
+= $(COMPAT_CPPFLAGS
)
243 GRAPH_OBJS
= src
/graph.o src
/graph-v1.o src
/graph-v2.o
254 src
/builtin-config.o \
286 TEST_GRAPH_OBJS
= test/tools
/test-graph.o src
/string.o src
/util.o src
/io.o
$(GRAPH_OBJS
) $(COMPAT_OBJS
)
287 test/tools
/test-graph
: $(TEST_GRAPH_OBJS
)
289 DOC_GEN_OBJS
= tools
/doc-gen.o src
/string.o src
/types.o src
/util.o src
/request.o
290 tools
/doc-gen
: $(DOC_GEN_OBJS
)
292 OBJS
= $(sort $(TIG_OBJS
) $(TEST_GRAPH_OBJS
) $(DOC_GEN_OBJS
))
294 DEPS_CFLAGS ?
= -MMD
-MP
-MF .deps
/$*.d
297 $(QUIET_LINK
)$(CC
) $(CFLAGS
) $(CPPFLAGS
) $(LDFLAGS
) $^
$(LDLIBS
) -o
$@
300 @mkdir
-p .deps
/$(*D
)
301 $(QUIET_CC
)$(CC
) -I.
-Iinclude
$(CFLAGS
) $(DEPS_CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
303 -include $(OBJS
:%.o
=.deps
/%.d
)
305 src
/builtin-config.c
: tigrc tools
/make-builtin-config.sh
306 $(QUIET_GEN
)tools
/make-builtin-config.sh
$< > $@
308 tig.spec
: contrib
/tig.spec.in
309 $(QUIET_GEN
)sed
-e
's/@@VERSION@@/$(RPM_VERSION)/g' \
310 -e
's/@@RELEASE@@/$(RPM_RELEASE)/g' < $< > $@
312 doc
/manual.html
: doc
/manual.toc
313 doc
/manual.html
: ASCIIDOC_FLAGS
+= -ainclude-manual-toc
315 $(QUIET_GEN
)sed
-n
'/^\[\[/,/\(---\|~~~\)/p' < $< | while read line
; do \
317 "----"*) echo
". <<$$ref>>"; ref
= ;; \
318 "~~~~"*) echo
"- <<$$ref>>"; ref
= ;; \
319 "[["*"]]") ref
="$$line" ;; \
320 *) ref
="$$ref, $$line" ;; \
321 esac
; done | sed
's/\[\[\(.*\)\]\]/\1/' > $@
323 README.html
: README.adoc doc
/asciidoc.conf
324 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-a readme
$<
326 INSTALL.html
: INSTALL.adoc doc
/asciidoc.conf
327 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
$<
329 NEWS.html
: NEWS.adoc doc
/asciidoc.conf
330 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
$<
332 doc
/tigmanual
.7: doc
/manual.adoc
334 %.1.html
: %.1.adoc doc
/asciidoc.conf
335 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
337 %.1.xml
: %.1.adoc doc
/asciidoc.conf
338 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
340 %.5.html
: %.5.adoc doc
/asciidoc.conf
341 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
343 %.5.xml
: %.5.adoc doc
/asciidoc.conf
344 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
346 %.7.xml
: %.7.adoc doc
/asciidoc.conf
347 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
349 %.html
: ASCIIDOC_FLAGS
+= -adocext
=html
350 %.html
: %.adoc doc
/asciidoc.conf
351 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-n
$<
353 %.xml
: %.adoc doc
/asciidoc.conf
354 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d article
$<
357 $(QUIET_XMLTO
)$(XMLTO
) man
-o doc
$<
359 %.html-chunked
: %.xml
360 $(QUIET_XMLTO
)$(XMLTO
) html
-o
$@
$<
363 $(QUIET_DB2PDF
)$(DOCBOOK2PDF
) -o doc
$<
365 #############################################################################
367 #############################################################################
369 ifneq ($(findstring $(MAKEFLAGS
),s
),s
)
372 QUIET_CC
= $(Q
:@
=@echo
' CC '$@
;)
373 QUIET_LINK
= $(Q
:@
=@echo
' LINK '$@
;)
374 QUIET_GEN
= $(Q
:@
=@echo
' GEN '$@
;)
375 QUIET_ASCIIDOC
= $(Q
:@
=@echo
' ASCIIDOC '$@
;)
376 QUIET_XMLTO
= $(Q
:@
=@echo
' XMLTO '$@
;)
377 QUIET_DB2PDF
= $(Q
:@
=@echo
' DB2PDF '$@
;)
378 # tools/install.sh will print 'file -> $install_dir/file'
379 QUIET_INSTALL
= $(Q
:@
=@printf
' INSTALL ';)
380 QUIET_INSTALL_EACH
= $(Q
:@
=printf
' INSTALL ';)
381 QUIET_UNINSTALL
= $(Q
:@
=@printf
' UNINSTALL ';)
382 QUIET_UNINSTALL_EACH
= $(Q
:@
=printf
' UNINSTALL ';)
383 QUIET_TEST
= $(Q
:@
=@echo
' TEST '$@
;)
384 QUIET_SUMMARY
= $(Q
:@
=@printf
' SUMMARY ';)
385 QUIET_LCOV
= $(Q
:@
=@echo
' LCOV '$@
;)
386 QUIET_GENHTML
= $(Q
:@
=@echo
' GENHTML '$@
;)