-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
475 lines (385 loc) · 14.5 KB
/
Makefile
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
## Makefile for tig
# The last tagged version. Can be overridden either by the version from
# git or from the value of the DIST_VERSION environment variable.
VERSION = 2.5.8
all:
# Include kernel specific configuration
kernel_name := $(shell sh -c 'uname -s 2>/dev/null || echo unknown')
-include contrib/config.make-$(kernel_name)
# Include setting from the configure script
-include config.make
# Optional defaults.
# TIG_ variables are set by contrib/config.make-$(kernel_name).
TIG_NCURSES ?= -lcurses
LDFLAGS ?= $(TIG_LDFLAGS)
CPPFLAGS ?= $(TIG_CPPFLAGS)
LDLIBS ?= $(TIG_NCURSES) $(TIG_LDLIBS)
CFLAGS ?= -Wall -O2 $(TIG_CFLAGS)
prefix ?= $(HOME)
bindir ?= $(prefix)/bin
datarootdir ?= $(prefix)/share
sysconfdir ?= $(prefix)/etc
docdir ?= $(datarootdir)/doc
mandir ?= $(datarootdir)/man
# DESTDIR=
ifneq (,$(wildcard .git))
GITDESC = $(subst tig-,,$(shell git describe 2>/dev/null))
COMMIT := $(if $(GITDESC),$(GITDESC),$(VERSION)-g$(shell git describe --always))
WTDIRTY = $(if $(shell git diff-index HEAD 2>/dev/null),-dirty)
VERSION = $(COMMIT)$(WTDIRTY)
endif
ifdef DIST_VERSION
VERSION = $(DIST_VERSION)
endif
# Split the version "TAG-OFFSET-gSHA1-DIRTY" into "TAG OFFSET"
# and append 0 as a fallback offset for "exact" tagged versions.
RPM_VERLIST = $(filter-out g% dirty,$(subst -, ,$(VERSION))) 0
RPM_VERSION = $(word 1,$(RPM_VERLIST))
RPM_RELEASE = $(word 2,$(RPM_VERLIST))$(if $(WTDIRTY),.dirty)
DFLAGS = -g -DDEBUG -Werror -O0
EXE = src/tig
TOOLS = test/tools/test-graph tools/doc-gen
TXTDOC = doc/tig.1.adoc doc/tigrc.5.adoc doc/manual.adoc NEWS.adoc README.adoc INSTALL.adoc test/API.adoc
MANDOC = doc/tig.1 doc/tigrc.5 doc/tigmanual.7
HTMLDOC = doc/tig.1.html doc/tigrc.5.html doc/manual.html README.html INSTALL.html NEWS.html
ALLDOC = $(MANDOC) $(HTMLDOC) doc/manual.html-chunked doc/manual.pdf
# Never include the release number in the tarname for tagged
# versions.
ifneq ($(if $(DIST_VERSION),$(words $(RPM_VERLIST))),2)
TARNAME = tig-$(RPM_VERSION)-$(RPM_RELEASE)
else
TARNAME = tig-$(RPM_VERSION)
endif
override CPPFLAGS += '-DTIG_VERSION="$(VERSION)"'
override CPPFLAGS += '-DSYSCONFDIR="$(sysconfdir)"'
ifdef TIG_USER_CONFIG
override CPPFLAGS += '-DTIG_USER_CONFIG="$(TIG_USER_CONFIG)"'
endif
ASCIIDOC ?= asciidoc
ASCIIDOC_FLAGS = -aversion=$(VERSION) -asysconfdir=$(sysconfdir) -f doc/asciidoc.conf
XMLTO ?= xmlto
DOCBOOK2PDF ?= docbook2pdf
LCOV ?= lcov
GENHTML ?= genhtml
ifneq (,$(shell which gsed 2>/dev/null))
SED ?= gsed
else
SED ?= sed
endif
ifneq (,$(shell which gtar 2>/dev/null))
TAR ?= gtar
else
TAR ?= tar
endif
GENERATE_COMPILATION_DATABASE ?= no
ifeq ($(GENERATE_COMPILATION_DATABASE),yes)
compdb_check = $(shell $(CC) $(ALL_CFLAGS) \
-c -MJ /dev/null \
-x c /dev/null -o /dev/null 2>&1; \
echo $$?)
ifneq ($(compdb_check),0)
override GENERATE_COMPILATION_DATABASE = no
$(warning GENERATE_COMPILATION_DATABASE is set to "yes", but your compiler does not \
support generating compilation database entries)
endif
else
ifneq ($(GENERATE_COMPILATION_DATABASE),no)
$(error please set GENERATE_COMPILATION_DATABASE to "yes" or "no" \
(not "$(GENERATE_COMPILATION_DATABASE)"))
endif
endif
compdb_dir = compile_commands
ifeq ($(GENERATE_COMPILATION_DATABASE),yes)
missing_compdb_dir = $(compdb_dir)
$(missing_compdb_dir):
@mkdir -p $@
compdb_file = $(compdb_dir)/$(subst /,-,[email protected])
compdb_args = -MJ $(compdb_file)
else
missing_compdb_dir =
compdb_args =
endif
all: $(EXE) $(TOOLS)
all-debug: all
all-debug: CFLAGS += $(DFLAGS)
doc: $(ALLDOC)
doc-man: $(MANDOC)
doc-html: $(HTMLDOC)
ifeq ($(GENERATE_COMPILATION_DATABASE),yes)
all: compile_commands.json
compile_commands.json:
$(QUIET_GEN)sed -e '1s/^/[/' -e '$$s/,$$/]/' $(compdb_dir)/*.o.json > $@+
@if test -s $@+; then mv $@+ $@; else $(RM) $@+; fi
endif
export sysconfdir
install: all
$(QUIET_INSTALL)tools/install.sh bin $(EXE) "$(DESTDIR)$(bindir)"
$(QUIET_INSTALL)tools/install.sh data tigrc "$(DESTDIR)$(sysconfdir)"
install-doc-man: doc-man
$(Q)$(foreach doc, $(filter %.1, $(MANDOC)), \
$(QUIET_INSTALL_EACH)tools/install.sh data $(doc) "$(DESTDIR)$(mandir)/man1";)
$(Q)$(foreach doc, $(filter %.5, $(MANDOC)), \
$(QUIET_INSTALL_EACH)tools/install.sh data $(doc) "$(DESTDIR)$(mandir)/man5";)
$(Q)$(foreach doc, $(filter %.7, $(MANDOC)), \
$(QUIET_INSTALL_EACH)tools/install.sh data $(doc) "$(DESTDIR)$(mandir)/man7";)
install-release-doc-man:
GIT_INDEX_FILE=.tmp-doc-index git read-tree origin/release
GIT_INDEX_FILE=.tmp-doc-index git checkout-index -f --prefix=./ $(MANDOC)
rm -f .tmp-doc-index
$(MAKE) install-doc-man
install-doc-html: doc-html
$(Q)$(foreach doc, $(HTMLDOC), \
$(QUIET_INSTALL_EACH)tools/install.sh data $(doc) "$(DESTDIR)$(docdir)/tig";)
install-release-doc-html:
GIT_INDEX_FILE=.tmp-doc-index git read-tree origin/release
GIT_INDEX_FILE=.tmp-doc-index git checkout-index -f --prefix=./ $(HTMLDOC)
rm -f .tmp-doc-index
$(MAKE) install-doc-html
install-doc: install-doc-man install-doc-html
install-release-doc: install-release-doc-man install-release-doc-html
uninstall:
$(QUIET_UNINSTALL)tools/uninstall.sh "$(DESTDIR)$(bindir)/$(EXE:src/%=%)"
$(QUIET_UNINSTALL)tools/uninstall.sh "$(DESTDIR)$(sysconfdir)/tigrc"
$(Q)$(foreach doc, $(filter %.1, $(MANDOC:doc/%=%)), \
$(QUIET_UNINSTALL_EACH)tools/uninstall.sh "$(DESTDIR)$(mandir)/man1/$(doc)";)
$(Q)$(foreach doc, $(filter %.5, $(MANDOC:doc/%=%)), \
$(QUIET_UNINSTALL_EACH)tools/uninstall.sh "$(DESTDIR)$(mandir)/man5/$(doc)";)
$(Q)$(foreach doc, $(filter %.7, $(MANDOC:doc/%=%)), \
$(QUIET_UNINSTALL_EACH)tools/uninstall.sh "$(DESTDIR)$(mandir)/man7/$(doc)";)
$(Q)$(foreach doc, $(HTMLDOC:doc/%=%), \
$(QUIET_UNINSTALL_EACH)tools/uninstall.sh "$(DESTDIR)$(docdir)/tig/$(doc)";)
clean: clean-test clean-coverage
$(Q)$(RM) -r $(TARNAME) tig-*.tar.gz tig-*.tar.gz.sha256 .deps _book node_modules
$(Q)$(RM) -r $(compdb_dir) compile_commands.json
$(Q)$(RM) $(EXE) $(TOOLS) $(OBJS) core doc/*.xml src/builtin-config.c
$(Q)$(RM) $(OBJS:%.o=%.gcda) $(OBJS:%.o=%.gcno)
distclean: clean
$(RM) -r doc/manual.html-chunked autom4te.cache
$(RM) doc/*.toc configure~
$(RM) config.h config.log config.make config.status config.h.in~
veryclean: distclean
$(RM) tig.spec $(ALLDOC) aclocal.m4 configure config.h.in
spell-check:
for file in $(TXTDOC) src/tig.c; do \
aspell --lang=en --dont-backup \
--personal=./tools/aspell.dict check $$file; \
done
strip: $(EXE)
strip $(EXE)
update-headers:
@for file in include/tig/*.h src/*.c tools/*.c test/tools/*.c; do \
grep -q '/* Copyright' "$$file" && \
$(SED) '0,/.*\*\//d' < "$$file" | \
grep -v '/* vim: set' > "$$file.tmp"; \
{ cat tools/header.h "$$file.tmp"; \
echo "/* vim: set ts=8 sw=8 noexpandtab: */"; } > "$$file"; \
rm "$$file.tmp"; \
echo "Updated $$file"; \
done
update-docs: tools/doc-gen
doc="doc/tigrc.5.adoc"; \
$(SED) -n '0,/ifndef::DOC_GEN_ACTIONS/p' < "$$doc" > "$$doc.gen"; \
./tools/doc-gen actions >> "$$doc.gen"; \
$(SED) -n '/endif::DOC_GEN_ACTIONS/,$$p' < "$$doc" >> "$$doc.gen" ; \
mv "$$doc.gen" "$$doc"
dist: configure config.h.in aclocal.m4 tig.spec
$(Q)mkdir -p $(TARNAME) && \
cp Makefile tig.spec configure config.h.in aclocal.m4 $(TARNAME) && \
$(SED) -i "s/VERSION\s\+=\s\+[0-9]\+\([.][0-9]\+\)\+/VERSION = $(VERSION)/" $(TARNAME)/Makefile
git archive --format=tar --prefix=$(TARNAME)/ HEAD | \
$(TAR) --delete $(TARNAME)/Makefile > $(TARNAME).tar && \
find $(TARNAME) -type f -print0 | LC_ALL=C sort -z | $(TAR) --mtime=$(shell git show -s --format=@%ct) --mode=o=rX,ug+rw,a-s --owner=root --group=root --null -T - -rf $(TARNAME).tar && \
gzip -f -n -9 $(TARNAME).tar && \
sha256sum $(TARNAME).tar.gz > $(TARNAME).tar.gz.sha256
$(Q)$(RM) -r $(TARNAME)
rpm: dist
rpmbuild -ta $(TARNAME).tar.gz
COVERAGE_CFLAGS ?= -fprofile-arcs -ftest-coverage
all-coverage: all
all-coverage: CFLAGS += $(COVERAGE_CFLAGS)
COVERAGE_DIR ?= test/coverage
clean-coverage:
@$(RM) -rf $(COVERAGE_DIR)
reset-coverage: clean-coverage
$(LCOV) --reset-counters
test-coverage: clean-coverage all-coverage test $(COVERAGE_DIR)/index.html
$(COVERAGE_DIR)/trace:
@mkdir -p $(COVERAGE_DIR)
$(QUIET_LCOV)$(LCOV) $(Q:@=--quiet) --capture --no-external --directory . --output-file $@
$(COVERAGE_DIR)/index.html: $(COVERAGE_DIR)/trace
$(QUIET_GENHTML)$(GENHTML) $(Q:@=--quiet) --output-directory $(COVERAGE_DIR) $<
ADDRESS_SANITIZER_CFLAGS ?= -fsanitize=address -fno-omit-frame-pointer
all-address-sanitizer: all
all-address-sanitizer: CFLAGS += $(ADDRESS_SANITIZER_CFLAGS)
test-address-sanitizer: clean all-address-sanitizer test
test-address-sanitizer: export TIG_ADDRESS_SANITIZER_ENABLED=yes
TESTS = $(sort $(shell find test -type f -name '*-test'))
TESTS_TODO = $(sort $(shell find test -type f -name '*-test' -exec grep -l '\(test_todo\|-todo=\)' {} \+))
clean-test:
$(Q)$(RM) -r test/tmp
test: clean-test $(TESTS)
$(QUIET_SUMMARY)test/tools/show-results.sh
ifneq (,$(strip $(V:@=)))
export MAKE_TEST_OPTS = no-indent
else
export MAKE_TEST_OPTS =
endif
$(TESTS): PATH := $(CURDIR)/test/tools:$(CURDIR)/src:$(PATH)
$(TESTS): $(EXE) test/tools/test-graph
$(QUIET_TEST)$(TEST_SHELL) $@
test-todo: MAKE_TEST_OPTS += todo
test-todo: $(TESTS_TODO)
# Other autoconf-related rules are hidden in config.make.in so that
# they don't confuse Make when we aren't actually using ./configure
configure config.h.in aclocal.m4: configure.ac tools/*.m4
$(QUIET_GEN)./autogen.sh
site:
gitbook install
gitbook build
find _book -type f | grep -E -v '(gitbook|json|html)' | xargs rm
.PHONY: all all-coverage all-debug clean clean-coverage clean-test doc \
doc-man doc-html dist distclean install install-doc \
install-doc-man install-doc-html install-release-doc-html \
install-release-doc-man rpm spell-check strip test \
test-coverage update-docs update-headers veryclean $(TESTS)
ifdef NO_MKSTEMPS
COMPAT_CPPFLAGS += -DNO_MKSTEMPS
COMPAT_OBJS += compat/mkstemps.o
endif
ifdef NO_SETENV
COMPAT_CPPFLAGS += -DNO_SETENV
COMPAT_OBJS += compat/setenv.o
endif
ifdef NO_STRNDUP
COMPAT_CPPFLAGS += -DNO_STRNDUP
COMPAT_OBJS += compat/strndup.o
endif
ifdef NO_WORDEXP
COMPAT_CPPFLAGS += -DNO_WORDEXP
COMPAT_OBJS += compat/wordexp.o
endif
COMPAT_OBJS += compat/hashtab.o compat/utf8proc.o
override CPPFLAGS += $(COMPAT_CPPFLAGS)
GRAPH_OBJS = src/graph.o src/graph-v1.o src/graph-v2.o
TIG_OBJS = \
src/tig.o \
src/types.o \
src/string.o \
src/util.o \
src/map.o \
src/argv.o \
src/io.o \
src/refdb.o \
src/builtin-config.o \
src/request.o \
src/line.o \
src/keys.o \
src/repo.o \
src/options.o \
src/draw.o \
src/prompt.o \
src/display.o \
src/view.o \
src/search.o \
src/parse.o \
src/watch.o \
src/pager.o \
src/log.o \
src/reflog.o \
src/diff.o \
src/help.o \
src/tree.o \
src/blob.o \
src/blame.o \
src/refs.o \
src/status.o \
src/stage.o \
src/main.o \
src/stash.o \
src/grep.o \
src/ui.o \
src/apps.o \
$(GRAPH_OBJS) \
$(COMPAT_OBJS)
src/tig: $(TIG_OBJS)
TEST_GRAPH_OBJS = test/tools/test-graph.o src/string.o src/util.o src/io.o $(GRAPH_OBJS) $(COMPAT_OBJS)
test/tools/test-graph: $(TEST_GRAPH_OBJS)
DOC_GEN_OBJS = tools/doc-gen.o src/string.o src/types.o src/util.o src/request.o $(COMPAT_OBJS)
tools/doc-gen: $(DOC_GEN_OBJS)
OBJS = $(sort $(TIG_OBJS) $(TEST_GRAPH_OBJS) $(DOC_GEN_OBJS))
DEPS_CFLAGS ?= -MMD -MP -MF .deps/$*.d
%: %.o
$(QUIET_LINK)$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
%.o: %.c $(CONFIG_H) $(missing_compdb_dir)
@mkdir -p .deps/$(*D)
$(QUIET_CC)$(CC) -I. -Iinclude $(compdb_args) $(CFLAGS) $(DEPS_CFLAGS) $(CPPFLAGS) -c -o $@ $<
-include $(OBJS:%.o=.deps/%.d)
src/builtin-config.c: tigrc tools/make-builtin-config.sh
$(QUIET_GEN)tools/make-builtin-config.sh $< > $@
tig.spec: contrib/tig.spec.in
$(QUIET_GEN)$(SED) -e 's/@@VERSION@@/$(RPM_VERSION)/g' \
-e 's/@@RELEASE@@/$(RPM_RELEASE)/g' < $< > $@
doc/manual.html: doc/manual.toc
doc/manual.html: ASCIIDOC_FLAGS += -ainclude-manual-toc
%.toc: %.adoc
$(QUIET_GEN)$(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/' > $@
README.html: README.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article -a readme $<
INSTALL.html: INSTALL.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article $<
NEWS.html: NEWS.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article $<
doc/tigmanual.7: doc/manual.adoc
test/API.adoc: test/tools/libtest.sh
@printf '%s\n%s\n' 'Testing API' '-----------' > $@
$(QUIET_ASCIIDOC)egrep '^#\|' test/tools/libtest.sh | $(SED) 's/^#| \{0,1\}//' | cat -s >> $@
%.1.html : %.1.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d manpage $<
%.1.xml : %.1.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b docbook -d manpage $<
%.5.html : %.5.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d manpage $<
%.5.xml : %.5.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b docbook -d manpage $<
%.7.xml : %.7.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b docbook -d manpage $<
%.html: ASCIIDOC_FLAGS += -adocext=html
%.html : %.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article -n $<
%.xml : %.adoc doc/asciidoc.conf
$(QUIET_ASCIIDOC)$(ASCIIDOC) $(ASCIIDOC_FLAGS) -b docbook -d article $<
% : %.xml
$(QUIET_XMLTO)$(XMLTO) man -o doc $<
%.html-chunked : %.xml
$(QUIET_XMLTO)$(XMLTO) html -o $@ $<
%.pdf : %.xml
$(QUIET_DB2PDF)$(DOCBOOK2PDF) -o doc $<
#############################################################################
# Quiet make
#############################################################################
ifneq ($(findstring $(MAKEFLAGS),s),s)
V = @
Q = $(V:1=)
QUIET_CC = $(Q:@=@echo ' CC '$@;)
QUIET_LINK = $(Q:@=@echo ' LINK '$@;)
QUIET_GEN = $(Q:@=@echo ' GEN '$@;)
QUIET_ASCIIDOC = $(Q:@=@echo ' ASCIIDOC '$@;)
QUIET_XMLTO = $(Q:@=@echo ' XMLTO '$@;)
QUIET_DB2PDF = $(Q:@=@echo ' DB2PDF '$@;)
# tools/install.sh will print 'file -> $install_dir/file'
QUIET_INSTALL = $(Q:@=@printf ' INSTALL ';)
QUIET_INSTALL_EACH = $(Q:@=printf ' INSTALL ';)
QUIET_UNINSTALL = $(Q:@=@printf ' UNINSTALL ';)
QUIET_UNINSTALL_EACH = $(Q:@=printf ' UNINSTALL ';)
QUIET_TEST = $(Q:@=@echo ' TEST '$@;)
QUIET_SUMMARY = $(Q:@=@printf ' SUMMARY ';)
QUIET_LCOV = $(Q:@=@echo ' LCOV '$@;)
QUIET_GENHTML = $(Q:@=@echo ' GENHTML '$@;)
export V
endif