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
73 all-debug
: $(EXE
) $(TOOLS
)
74 all-debug
: CFLAGS
+= $(DFLAGS
)
82 $(QUIET_INSTALL
)tools
/install.sh bin
$(EXE
) "$(DESTDIR)$(bindir)"
83 $(QUIET_INSTALL
)tools
/install.sh data tigrc
"$(DESTDIR)$(sysconfdir)"
85 install-doc-man
: doc-man
86 $(Q
)$(foreach doc
, $(filter %.1, $(MANDOC
)), \
87 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man1";)
88 $(Q
)$(foreach doc
, $(filter %.5, $(MANDOC
)), \
89 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man5";)
90 $(Q
)$(foreach doc
, $(filter %.7, $(MANDOC
)), \
91 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(mandir)/man7";)
93 install-release-doc-man
:
94 GIT_INDEX_FILE
=.tmp-doc-index git read-tree
origin/release
95 GIT_INDEX_FILE
=.tmp-doc-index git checkout-index
-f
--prefix=.
/ $(MANDOC
)
97 $(MAKE
) install-doc-man
99 install-doc-html
: doc-html
100 $(Q
)$(foreach doc
, $(HTMLDOC
), \
101 $(QUIET_INSTALL_EACH
)tools
/install.sh data
$(doc
) "$(DESTDIR)$(docdir)/tig";)
103 install-release-doc-html
:
104 GIT_INDEX_FILE
=.tmp-doc-index git read-tree
origin/release
105 GIT_INDEX_FILE
=.tmp-doc-index git checkout-index
-f
--prefix=.
/ $(HTMLDOC
)
107 $(MAKE
) install-doc-html
109 install-doc
: install-doc-man install-doc-html
110 install-release-doc
: install-release-doc-man install-release-doc-html
113 $(RM
) -r
$(TARNAME
) *.spec tig-
*.
tar.gz tig-
*.
tar.gz.md5 .deps
114 $(RM
) $(EXE
) $(TOOLS
) $(OBJS
) core doc
/*.xml src
/builtin-config.c
117 $(RM
) -r doc
/manual.html-chunked autom4te.cache release-docs
118 $(RM
) doc
/*.toc
$(ALLDOC
) aclocal.m4 configure
119 $(RM
) config.h config.log config.make config.status config.h.in
122 for file in
$(TXTDOC
) src
/tig.c
; do \
123 aspell
--lang
=en
--dont-backup \
124 --personal
=.
/tools
/aspell.dict
check $$file; \
131 @for file in
include/tig
/*.h src
/*.c tools
/*.c
test/tools
/*.c
; do \
132 grep
-q
'/* Copyright' "$$file" && \
133 sed
'0,/.*\*\//d' < "$$file" | \
134 grep
-v
'/* vim: set' > "$$file.tmp"; \
135 { cat tools
/header.h
"$$file.tmp"; \
136 echo
"/* vim: set ts=8 sw=8 noexpandtab: */"; } > "$$file"; \
138 echo
"Updated $$file"; \
141 update-docs
: tools
/doc-gen
142 doc
="doc/tigrc.5.adoc"; \
143 sed
-n
'0,/ifndef::DOC_GEN_ACTIONS/p' < "$$doc" > "$$doc.gen"; \
144 .
/tools
/doc-gen actions
>> "$$doc.gen"; \
145 sed
-n
'/endif::DOC_GEN_ACTIONS/,$$p' < "$$doc" >> "$$doc.gen" ; \
146 mv
"$$doc.gen" "$$doc"
148 dist: configure tig.spec
149 $(Q
)mkdir
-p
$(TARNAME
) && \
150 cp Makefile tig.spec configure config.h.in aclocal.m4
$(TARNAME
) && \
151 sed
-i
"s/VERSION\s\+=\s\+[0-9]\+\([.][0-9]\+\)\+/VERSION = $(VERSION)/" $(TARNAME
)/Makefile
152 git archive
--format
=tar --prefix=$(TARNAME
)/ HEAD | \
153 tar --delete
$(TARNAME
)/Makefile
> $(TARNAME
).
tar && \
154 tar rf
$(TARNAME
).
tar `find $(TARNAME)/*` && \
155 gzip
-f
-9 $(TARNAME
).
tar && \
156 md5sum
$(TARNAME
).
tar.gz
> $(TARNAME
).
tar.gz.md5
157 $(Q
)$(RM
) -r
$(TARNAME
)
160 rpmbuild
-ta
$(TARNAME
).
tar.gz
162 TESTS
= $(sort $(shell find
test -type f
-name
'*-test'))
165 $(Q
)$(RM
) -r
test/tmp
167 test: clean-test
$(TESTS
)
168 $(QUIET_SUMMARY
)test/tools
/show-results.sh
170 export TEST_OPTS ?
= $(V
:1=no-indent
)
172 $(TESTS
): PATH
:= $(CURDIR
)/test/tools
:$(CURDIR
)/src
:$(PATH
)
173 $(TESTS
): $(EXE
) test/tools
/test-graph
174 $(QUIET_TEST
)$(TEST_SHELL
) $@
176 # Other autoconf-related rules are hidden in config.make.in so that
177 # they don't confuse Make when we aren't actually using ./configure
178 configure
: configure.ac acinclude.m4 tools
/*.m4
181 .PHONY
: all all-debug doc doc-man doc-html
install install-doc
$(TESTS
) \
182 install-doc-man install-doc-html
clean spell-check
dist rpm
test
185 COMPAT_CPPFLAGS
+= -DNO_MKSTEMPS
186 COMPAT_OBJS
+= compat
/mkstemps.o
190 COMPAT_CPPFLAGS
+= -DNO_SETENV
191 COMPAT_OBJS
+= compat
/setenv.o
195 COMPAT_CPPFLAGS
+= -DNO_STRNDUP
196 COMPAT_OBJS
+= compat
/strndup.o
199 COMPAT_OBJS
+= compat
/hashtab.o
201 override CPPFLAGS
+= $(COMPAT_CPPFLAGS
)
203 GRAPH_OBJS
= src
/graph.o src
/graph-v1.o src
/graph-v2.o
214 src
/builtin-config.o \
244 TEST_GRAPH_OBJS
= test/tools
/test-graph.o src
/string.o src
/util.o src
/io.o
$(GRAPH_OBJS
) $(COMPAT_OBJS
)
245 test/tools
/test-graph
: $(TEST_GRAPH_OBJS
)
247 DOC_GEN_OBJS
= tools
/doc-gen.o src
/string.o src
/types.o src
/util.o src
/request.o
248 tools
/doc-gen
: $(DOC_GEN_OBJS
)
250 OBJS
= $(sort $(TIG_OBJS
) $(TEST_GRAPH_OBJS
) $(DOC_GEN_OBJS
))
252 DEPS_CFLAGS ?
= -MMD
-MP
-MF .deps
/$*.d
255 $(QUIET_LINK
)$(CC
) $(CFLAGS
) $(CPPFLAGS
) $(LDFLAGS
) $^
$(LDLIBS
) -o
$@
258 @mkdir
-p .deps
/$(*D
)
259 $(QUIET_CC
)$(CC
) -I.
-Iinclude
$(CFLAGS
) $(DEPS_CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
261 -include $(OBJS
:%.o
=.deps
/%.d
)
263 src
/builtin-config.c
: tigrc tools
/make-builtin-config.sh
264 $(QUIET_GEN
)tools
/make-builtin-config.sh
$< > $@
266 tig.spec
: contrib
/tig.spec.in
267 $(QUIET_GEN
)sed
-e
's/@@VERSION@@/$(RPM_VERSION)/g' \
268 -e
's/@@RELEASE@@/$(RPM_RELEASE)/g' < $< > $@
270 doc
/manual.html
: doc
/manual.toc
271 doc
/manual.html
: ASCIIDOC_FLAGS
+= -ainclude-manual-toc
273 $(QUIET_GEN
)sed
-n
'/^\[\[/,/\(---\|~~~\)/p' < $< | while read line
; do \
275 "----"*) echo
". <<$$ref>>"; ref
= ;; \
276 "~~~~"*) echo
"- <<$$ref>>"; ref
= ;; \
277 "[["*"]]") ref
="$$line" ;; \
278 *) ref
="$$ref, $$line" ;; \
279 esac
; done | sed
's/\[\[\(.*\)\]\]/\1/' > $@
281 README.html
: README.adoc doc
/asciidoc.conf
282 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-a readme
$<
284 INSTALL.html
: INSTALL.adoc doc
/asciidoc.conf
285 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
$<
287 NEWS.html
: NEWS.adoc doc
/asciidoc.conf
288 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
$<
290 doc
/tigmanual
.7: doc
/manual.adoc
292 %.1.html
: %.1.adoc doc
/asciidoc.conf
293 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
295 %.1.xml
: %.1.adoc doc
/asciidoc.conf
296 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
298 %.5.html
: %.5.adoc doc
/asciidoc.conf
299 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d manpage
$<
301 %.5.xml
: %.5.adoc doc
/asciidoc.conf
302 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
304 %.7.xml
: %.7.adoc doc
/asciidoc.conf
305 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d manpage
$<
307 %.html
: ASCIIDOC_FLAGS
+= -adocext
=html
308 %.html
: %.adoc doc
/asciidoc.conf
309 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b xhtml11
-d article
-n
$<
311 %.xml
: %.adoc doc
/asciidoc.conf
312 $(QUIET_ASCIIDOC
)$(ASCIIDOC
) $(ASCIIDOC_FLAGS
) -b docbook
-d article
$<
315 $(QUIET_XMLTO
)$(XMLTO
) man
-o doc
$<
317 %.html-chunked
: %.xml
318 $(QUIET_XMLTO
)$(XMLTO
) html
-o
$@
$<
321 $(QUIET_DB2PDF
)$(DOCBOOK2PDF
) -o doc
$<
323 #############################################################################
325 #############################################################################
327 ifneq ($(findstring $(MAKEFLAGS
),s
),s
)
330 QUIET_CC
= $(Q
:@
=@echo
' CC '$@
;)
331 QUIET_LINK
= $(Q
:@
=@echo
' LINK '$@
;)
332 QUIET_GEN
= $(Q
:@
=@echo
' GEN '$@
;)
333 QUIET_ASCIIDOC
= $(Q
:@
=@echo
' ASCIIDOC '$@
;)
334 QUIET_XMLTO
= $(Q
:@
=@echo
' XMLTO '$@
;)
335 QUIET_DB2PDF
= $(Q
:@
=@echo
' DB2PDF '$@
;)
336 # tools/install.sh will print 'file -> $install_dir/file'
337 QUIET_INSTALL
= $(Q
:@
=@printf
' INSTALL ';)
338 QUIET_INSTALL_EACH
= $(Q
:@
=printf
' INSTALL ';)
339 QUIET_TEST
= $(Q
:@
=@echo
' TEST '$@
;)
340 QUIET_SUMMARY
= $(Q
:@
=@printf
' SUMMARY ';)