forked from koreader/koreader-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
266 lines (194 loc) · 7.38 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
KOR_BASE ?= .
# Are we being included?
STANDALONE := $(if $(filter-out $(lastword $(MAKEFILE_LIST)),$(MAKEFILE_LIST)),,1)
ifeq (,$(STANDALONE))
BASE_PREFIX = base-
else
include $(KOR_BASE)/Makefile.defs
endif
# As we do not want to run parallel ninja invocations into the
# same directory (e.g. when invoked with `make mupdf k2pdfopt`),
# we disable parallelisation for this top-level Makefile.
.NOTPARALLEL:
DO_STRIP := $(if $(or $(EMULATE_READER),$(KODEBUG)),,1)
DO_STRIP := $(if $(or $(DO_STRIP),$(APPIMAGE),$(LINUX)),1,)
define build_info
$(info ************ Building for MACHINE: "$(MACHINE)" **********)
$(info ************ PATH: "$(PATH)" **********)
$(info ************ CHOST: "$(CHOST)" **********)
$(info ************ NINJA: $(strip $(NINJA) $(PARALLEL_JOBS:%=-j%) $(PARALLEL_LOAD:%=-l%)) **********)
$(info ************ MAKE: $(strip $(MAKE) $(PARALLEL_JOBS:%=-j%) $(PARALLEL_LOAD:%=-l%)) **********)
endef
PHONY += $(addprefix $(BASE_PREFIX),all clean distclean fetchthirdparty re reinstall test uninstall)
PHONY += bininfo bincheck buildstats info %-re setup skeleton test-data
SOUND += cache-key build/% $(OUTPUT_DIR)/% $(STAGING_DIR)/bincheck/%
# Main rules. {{{
$(BASE_PREFIX)all: $(BUILD_ENTRYPOINT)
$(BASE_PREFIX)clean:
rm -rf $(OUTPUT_DIR)
$(BASE_PREFIX)distclean:
rm -rf $(dir $(filter $(KOR_BASE)/build/%,$(OUTPUT_DIR))) $(wildcard $(THIRDPARTY_DIR)/*/build)
info:
$(strip $(build_info))
$(BASE_PREFIX)re: $(BASE_PREFIX)clean
$(MAKE) $(BASE_PREFIX)all
%-re:
$(MAKE) $*-clean
$(MAKE) $*
$(BASE_PREFIX)fetchthirdparty:
git submodule init
git submodule sync
git submodule update --jobs 3 $(if $(CI),--depth 1)
$(BASE_PREFIX)reinstall: $(BASE_PREFIX)uninstall
$(MAKE) $(BASE_PREFIX)all
$(BASE_PREFIX)uninstall:
rm -vrf $(filter-out $(CMAKE_DIR) $(OUTPUT_DIR)/thirdparty,$(wildcard $(OUTPUT_DIR)/*))
$(MAKE) rm-install-stamps
# }}}
# CMake build interface. {{{
setup $(BUILD_ENTRYPOINT): $(CMAKE_KOVARS) $(CMAKE_TCF) $(MESON_CROSS_TOOLCHAIN) $(MESON_HOST_TOOLCHAIN)
$(strip $(build_info))
$(CMAKE) $(CMAKE_FLAGS) -S $(KOR_BASE)/cmake -B $(CMAKE_DIR)
define write_file
$(if $(DRY_RUN),: write $1,$(file >$1,$2))
endef
$(CMAKE_KOVARS): $(KOR_BASE)/Makefile.defs | $(CMAKE_DIR)/
$(call write_file,$@,$(cmake_koreader_vars))
$(CMAKE_TCF): $(KOR_BASE)/Makefile.defs | $(CMAKE_DIR)/
$(call write_file,$@,$(if $(EMULATE_READER),$(cmake_toolchain),$(cmake_cross_toolchain)))
$(CMAKE_DIR)/meson_%.ini: $(KOR_BASE)/Makefile.defs | $(CMAKE_DIR)/
$(call write_file,$@,$(meson_$*))
# Forward unknown targets to the CMake build system.
LEFTOVERS = $(filter-out $(PHONY) $(SOUND),$(MAKECMDGOALS))
.PHONY: $(LEFTOVERS)
$(BASE_PREFIX)all $(LEFTOVERS): skeleton $(BUILD_ENTRYPOINT)
$(and $(DRY_RUN),$(wildcard $(BUILD_ENTRYPOINT)),+)cd $(CMAKE_DIR) && $(strip $(NINJA) $(NINJAFLAGS) $(patsubst $(BASE_PREFIX)all,all,$@))
# }}}
# Output skeleton. {{{
CR3GUI_DATADIR = $(THIRDPARTY_DIR)/kpvcrlib/crengine/cr3gui/data
define SKELETON
$(CMAKE_DIR)/
$(OUTPUT_DIR)/cache/
$(OUTPUT_DIR)/clipboard/
$(OUTPUT_DIR)/data/
$(OUTPUT_DIR)/data/dict
$(OUTPUT_DIR)/data/tessdata
$(OUTPUT_DIR)/ffi
$(OUTPUT_DIR)/fonts/
$(STAGING_DIR)/
endef
ifneq (,$(EMULATE_READER))
define SKELETON +=
$(OUTPUT_DIR)/spec/base
endef
endif
skeleton: $(strip $(SKELETON))
$(OUTPUT_DIR)/data/%: $(CR3GUI_DATADIR)/% | $(OUTPUT_DIR)/data/
$(SYMLINK) $(CR3GUI_DATADIR)/$* $@
$(CR3GUI_DATADIR)/%:
mkdir $@
$(OUTPUT_DIR)/ffi: | $(OUTPUT_DIR)/
$(SYMLINK) $(KOR_BASE)/ffi $@
$(OUTPUT_DIR)/:
mkdir -p $@
$(OUTPUT_DIR)/%/:
mkdir -p $@
# }}}
# Testsuite support. {{{
ifneq (,$(EMULATE_READER))
$(OUTPUT_DIR)/.busted: | $(OUTPUT_DIR)/
$(SYMLINK) $(KOR_BASE)/.busted $@
$(OUTPUT_DIR)/spec/base: | $(OUTPUT_DIR)/spec/
$(SYMLINK) $(KOR_BASE)/spec $@
$(BASE_PREFIX)test: $(BASE_PREFIX)all test-data
cd $(OUTPUT_DIR) && $(BUSTED_LUAJIT) $(BUSTED_OVERRIDES)
test-data: $(OUTPUT_DIR)/.busted $(OUTPUT_DIR)/data/tessdata/eng.traineddata $(OUTPUT_DIR)/spec/base $(OUTPUT_DIR)/fonts/droid/DroidSansMono.ttf
TESSDATA_FILE = $(THIRDPARTY_DIR)/tesseract/build/downloads/eng.traineddata
TESSDATA_FILE_URL = https://github.com/tesseract-ocr/tessdata/raw/4.1.0/$(notdir $(TESSDATA_FILE))
TESSDATA_FILE_SHA1 = 007b522901a665bc2037428602d4d527f5ead7ed
$(OUTPUT_DIR)/data/tessdata/eng.traineddata: $(TESSDATA_FILE) | $(OUTPUT_DIR)/data/tessdata
$(SYMLINK) $(TESSDATA_FILE) $@
$(TESSDATA_FILE):
mkdir -p $(dir $(TESSDATA_FILE))
$(call wget_and_validate,$(TESSDATA_FILE),$(TESSDATA_FILE_URL),$(TESSDATA_FILE_SHA1))
DROID_FONT = $(THIRDPARTY_DIR)/fonts/build/downloads/DroidSansMono.ttf
DROID_FONT_URL = https://github.com/koreader/koreader-fonts/raw/master/droid/$(notdir $(DROID_FONT))
DROID_FONT_SHA1 = 0b75601f8ef8e111babb6ed11de6573f7178ce44
$(OUTPUT_DIR)/fonts/droid/DroidSansMono.ttf: $(DROID_FONT) | $(OUTPUT_DIR)/fonts/
$(SYMLINK) $(dir $(DROID_FONT)) $(OUTPUT_DIR)/fonts/droid
$(DROID_FONT):
mkdir -p $(dir $(DROID_FONT))
$(call wget_and_validate,$(DROID_FONT),$(DROID_FONT_URL),$(DROID_FONT_SHA1))
endif
# }}}
# CI helpers. {{{
define cache_key_cmd
git -C $(KOR_BASE) ls-files -z
--cached --ignored --exclude-from=$(abspath $1)
| xargs -0 git -C $(KOR_BASE) ls-tree @
endef
cache-key: $(KOR_BASE)/Makefile $(KOR_BASE)/cache-key.base
$(strip $(call cache_key_cmd,$(KOR_BASE)/cache-key.base)) | tee $@
# }}}
# Dump/check binaries runtime path and dependencies. {{{
define BINARY_PATHS
$(filter-out
$(addprefix $(OUTPUT_DIR)/,cmake staging thirdparty),
$(wildcard $(OUTPUT_DIR)/*))
endef
bininfo:
@$(KOR_BASE)/utils/bininfo.py $(BINARY_PATHS)
ifneq (,$(filter bincheck,$(MAKECMDGOALS)))
BINCHECK_DEPS :=
BINCHECK_LD_PATH :=
# Preload.
ifeq (,$(USE_LUAJIT_LIB))
# When not using the luajit library, preload
# luajit so the LUA API' symbols are available.
BINCHECK_DEPS += $(OUTPUT_DIR)/luajit
BINCHECK_LD_PATH += $(OUTPUT_DIR)/luajit
endif
# Stubs for platform libraries.
ifneq (,$(POCKETBOOK))
BINCHECK_DEPS += $(STAGING_DIR)/bincheck/libinkview.so
endif
ifneq (,$(KINDLE))
BINCHECK_DEPS += $(STAGING_DIR)/bincheck/liblipc.so
endif
# Library directories.
BINCHECK_LD_PATH += $(STAGING_DIR)/bincheck $(OUTPUT_DIR)/libs
# Sysroot.
define sysroot_libdir
$(dir $(abspath $(or
$(filter /%,$(shell $(CC) -print-file-name=$1)),
$(error could not find library directory for `$1`))))
endef
ifneq (,$(EMULATE_READER))
ifeq (,$(DARWIN))
BINCHECK_LD_PATH += $(call sysroot_libdir,libc.so)
endif
else ifneq (,$(ANDROID))
BINCHECK_LD_PATH += $(call sysroot_libdir,libc.so)
BINCHECK_LD_PATH += $(call sysroot_libdir,libc++_shared.so)
else
BINCHECK_LD_PATH += $(call sysroot_libdir,libc.so.6)
endif
bincheck: $(BINCHECK_DEPS)
$(KOR_BASE)/utils/bincheck.py $(if $(GLIBC_VERSION_MAX),--glibc-version-max $(GLIBC_VERSION_MAX) )'$(subst $(empty) $(empty),:,$(strip $(BINCHECK_LD_PATH)))' $(BINARY_PATHS)
endif
$(STAGING_DIR)/bincheck/%.so: $(KOR_BASE)/utils/bincheck/%.c | $(STAGING_DIR)/bincheck/
$(CC) $(DYNLIB_LDFLAGS) -o $@ $<
# }}}
# }}}
# Dump build timings for last ninja invocation. {{{
# Show external project tasks with a duration of 1s or more (descending order).
define buildstats_jq_script
sort_by(-.dur) | .[] | select(.dur >= 1e6) | (.dur*1e-5 | round | ./10), "\n",
(.name | sub("(.*[/ ])?(?<p>[^/]*)/stamp/(?<t>[^/]*)$$"; "\(.p) \(.t)")), "\n"
endef
buildstats: $(CMAKE_DIR)/.ninja_log
ninjatracing $< | jq -j '$(strip $(buildstats_jq_script))' | \
xargs -n3 printf '%6.2fs %s %s\n' | \
git column --mode=row
# }}}
# vim: foldmethod=marker foldlevel=0