]> granicus.if.org Git - libvpx/blob - libs.mk
Merge "Fix crash when mkvparser returns a NULL BlockEntry."
[libvpx] / libs.mk
1 ##
2 ##  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ##
4 ##  Use of this source code is governed by a BSD-style license
5 ##  that can be found in the LICENSE file in the root of the source
6 ##  tree. An additional intellectual property rights grant can be found
7 ##  in the file PATENTS.  All contributing project authors may
8 ##  be found in the AUTHORS file in the root of the source tree.
9 ##
10
11
12 # ARM assembly files are written in RVCT-style. We use some make magic to
13 # filter those files to allow GCC compilation
14 ifeq ($(ARCH_ARM),yes)
15   ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.s,.asm)
16 else
17   ASM:=.asm
18 endif
19
20 #
21 # Rule to generate runtime cpu detection files
22 #
23 define rtcd_h_template
24 $$(BUILD_PFX)$(1).h: $$(SRC_PATH_BARE)/$(2)
25         @echo "    [CREATE] $$@"
26         $$(qexec)$$(SRC_PATH_BARE)/build/make/rtcd.pl --arch=$$(TGT_ISA) \
27           --sym=$(1) \
28           --config=$$(CONFIG_DIR)$$(target)-$$(TOOLCHAIN).mk \
29           $$(RTCD_OPTIONS) $$^ > $$@
30 CLEAN-OBJS += $$(BUILD_PFX)$(1).h
31 RTCD += $$(BUILD_PFX)$(1).h
32 endef
33
34 CODEC_SRCS-yes += CHANGELOG
35 CODEC_SRCS-yes += libs.mk
36
37 include $(SRC_PATH_BARE)/vpx/vpx_codec.mk
38 CODEC_SRCS-yes += $(addprefix vpx/,$(call enabled,API_SRCS))
39 CODEC_DOC_SRCS += $(addprefix vpx/,$(call enabled,API_DOC_SRCS))
40
41 include $(SRC_PATH_BARE)/vpx_mem/vpx_mem.mk
42 CODEC_SRCS-yes += $(addprefix vpx_mem/,$(call enabled,MEM_SRCS))
43
44 include $(SRC_PATH_BARE)/vpx_scale/vpx_scale.mk
45 CODEC_SRCS-yes += $(addprefix vpx_scale/,$(call enabled,SCALE_SRCS))
46
47 include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk
48 CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS))
49
50 include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk
51 CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS))
52
53 include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk
54 CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS))
55
56 ifeq ($(CONFIG_VP8),yes)
57   VP8_PREFIX=vp8/
58   include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
59 endif
60
61 ifeq ($(CONFIG_VP8_ENCODER),yes)
62   include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8cx.mk
63   CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_CX_SRCS))
64   CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_CX_EXPORTS))
65   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
66   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
67   CODEC_DOC_SECTIONS += vp8 vp8_encoder
68 endif
69
70 ifeq ($(CONFIG_VP8_DECODER),yes)
71   include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8dx.mk
72   CODEC_SRCS-yes += $(addprefix $(VP8_PREFIX),$(call enabled,VP8_DX_SRCS))
73   CODEC_EXPORTS-yes += $(addprefix $(VP8_PREFIX),$(VP8_DX_EXPORTS))
74   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
75   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
76   CODEC_DOC_SECTIONS += vp8 vp8_decoder
77 endif
78
79 ifeq ($(CONFIG_VP9),yes)
80   VP9_PREFIX=vp9/
81   include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk
82 endif
83
84 ifeq ($(CONFIG_VP9_ENCODER),yes)
85   VP9_PREFIX=vp9/
86   include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9cx.mk
87   CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_CX_SRCS))
88   CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_CX_EXPORTS))
89   CODEC_SRCS-yes += $(VP9_PREFIX)vp9cx.mk vpx/vp8.h vpx/vp8cx.h
90   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
91   INSTALL-LIBS-$(CONFIG_SPATIAL_SVC) += include/vpx/svc_context.h
92   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
93   CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h
94   CODEC_DOC_SECTIONS += vp9 vp9_encoder
95 endif
96
97 ifeq ($(CONFIG_VP9_DECODER),yes)
98   VP9_PREFIX=vp9/
99   include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9dx.mk
100   CODEC_SRCS-yes += $(addprefix $(VP9_PREFIX),$(call enabled,VP9_DX_SRCS))
101   CODEC_EXPORTS-yes += $(addprefix $(VP9_PREFIX),$(VP9_DX_EXPORTS))
102   CODEC_SRCS-yes += $(VP9_PREFIX)vp9dx.mk vpx/vp8.h vpx/vp8dx.h
103   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
104   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
105   CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h
106   CODEC_DOC_SECTIONS += vp9 vp9_decoder
107 endif
108
109 VP9_PREFIX=vp9/
110 $(BUILD_PFX)$(VP9_PREFIX)%.c.o: CFLAGS += -Wextra
111
112 #  VP10 make file
113 ifeq ($(CONFIG_VP10),yes)
114   VP10_PREFIX=vp10/
115   include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10_common.mk
116 endif
117
118 ifeq ($(CONFIG_VP10_ENCODER),yes)
119   VP10_PREFIX=vp10/
120   include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10cx.mk
121   CODEC_SRCS-yes += $(addprefix $(VP10_PREFIX),$(call enabled,VP10_CX_SRCS))
122   CODEC_EXPORTS-yes += $(addprefix $(VP10_PREFIX),$(VP10_CX_EXPORTS))
123   CODEC_SRCS-yes += $(VP10_PREFIX)vp10cx.mk vpx/vp8.h vpx/vp8cx.h
124   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
125   INSTALL-LIBS-$(CONFIG_SPATIAL_SVC) += include/vpx/svc_context.h
126   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP10_PREFIX)/%
127   CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h
128   CODEC_DOC_SECTIONS += vp9 vp9_encoder
129 endif
130
131 ifeq ($(CONFIG_VP10_DECODER),yes)
132   VP10_PREFIX=vp10/
133   include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10dx.mk
134   CODEC_SRCS-yes += $(addprefix $(VP10_PREFIX),$(call enabled,VP10_DX_SRCS))
135   CODEC_EXPORTS-yes += $(addprefix $(VP10_PREFIX),$(VP10_DX_EXPORTS))
136   CODEC_SRCS-yes += $(VP10_PREFIX)vp10dx.mk vpx/vp8.h vpx/vp8dx.h
137   INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
138   INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP10_PREFIX)/%
139   CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h
140   CODEC_DOC_SECTIONS += vp9 vp9_decoder
141 endif
142
143 VP10_PREFIX=vp10/
144 $(BUILD_PFX)$(VP10_PREFIX)%.c.o: CFLAGS += -Wextra
145
146 ifeq ($(CONFIG_ENCODERS),yes)
147   CODEC_DOC_SECTIONS += encoder
148 endif
149 ifeq ($(CONFIG_DECODERS),yes)
150   CODEC_DOC_SECTIONS += decoder
151 endif
152
153
154 ifeq ($(CONFIG_MSVS),yes)
155 CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)
156 GTEST_LIB=$(if $(CONFIG_STATIC_MSVCRT),gtestmt,gtestmd)
157 # This variable uses deferred expansion intentionally, since the results of
158 # $(wildcard) may change during the course of the Make.
159 VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
160 endif
161
162 # The following pairs define a mapping of locations in the distribution
163 # tree to locations in the source/build trees.
164 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx/%
165 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx_ports/%
166 INSTALL_MAPS += $(LIBSUBDIR)/%     %
167 INSTALL_MAPS += src/%     $(SRC_PATH_BARE)/%
168 ifeq ($(CONFIG_MSVS),yes)
169 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/%  $(p)/Release/%)
170 INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/%  $(p)/Debug/%)
171 endif
172
173 CODEC_SRCS-yes += build/make/version.sh
174 CODEC_SRCS-yes += build/make/rtcd.pl
175 CODEC_SRCS-yes += vpx_ports/emmintrin_compat.h
176 CODEC_SRCS-yes += vpx_ports/mem_ops.h
177 CODEC_SRCS-yes += vpx_ports/mem_ops_aligned.h
178 CODEC_SRCS-yes += vpx_ports/vpx_once.h
179 CODEC_SRCS-yes += $(BUILD_PFX)vpx_config.c
180 INSTALL-SRCS-no += $(BUILD_PFX)vpx_config.c
181 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
182 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += third_party/x86inc/x86inc.asm
183 endif
184 CODEC_EXPORTS-yes += vpx/exports_com
185 CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_enc
186 CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec
187
188 INSTALL-LIBS-yes += include/vpx/vpx_codec.h
189 INSTALL-LIBS-yes += include/vpx/vpx_frame_buffer.h
190 INSTALL-LIBS-yes += include/vpx/vpx_image.h
191 INSTALL-LIBS-yes += include/vpx/vpx_integer.h
192 INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h
193 INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h
194 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
195 ifeq ($(CONFIG_MSVS),yes)
196 INSTALL-LIBS-yes                  += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
197 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
198 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll)
199 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
200 endif
201 else
202 INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a
203 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a
204 endif
205
206 CODEC_SRCS=$(call enabled,CODEC_SRCS)
207 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
208 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
209
210
211 # Generate a list of all enabled sources, in particular for exporting to gyp
212 # based build systems.
213 libvpx_srcs.txt:
214         @echo "    [CREATE] $@"
215         @echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
216 CLEAN-OBJS += libvpx_srcs.txt
217
218
219 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
220 ifeq ($(CONFIG_MSVS),yes)
221
222 vpx.def: $(call enabled,CODEC_EXPORTS)
223         @echo "    [CREATE] $@"
224         $(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
225             --name=vpx\
226             --out=$@ $^
227 CLEAN-OBJS += vpx.def
228
229 # Assembly files that are included, but don't define symbols themselves.
230 # Filtered out to avoid Visual Studio build warnings.
231 ASM_INCLUDES := \
232     third_party/x86inc/x86inc.asm \
233     vpx_config.asm \
234     vpx_ports/x86_abi_support.asm \
235
236 vpx.$(VCPROJ_SFX): $(CODEC_SRCS) vpx.def
237         @echo "    [CREATE] $@"
238         $(qexec)$(GEN_VCPROJ) \
239             $(if $(CONFIG_SHARED),--dll,--lib) \
240             --target=$(TOOLCHAIN) \
241             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
242             --name=vpx \
243             --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
244             --module-def=vpx.def \
245             --ver=$(CONFIG_VS_VERSION) \
246             --src-path-bare="$(SRC_PATH_BARE)" \
247             --out=$@ $(CFLAGS) \
248             $(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
249             --src-path-bare="$(SRC_PATH_BARE)" \
250
251 PROJECTS-yes += vpx.$(VCPROJ_SFX)
252
253 vpx.$(VCPROJ_SFX): vpx_config.asm
254 vpx.$(VCPROJ_SFX): $(RTCD)
255
256 endif
257 else
258 LIBVPX_OBJS=$(call objs,$(CODEC_SRCS))
259 OBJS-yes += $(LIBVPX_OBJS)
260 LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a
261 $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS)
262
263 SO_VERSION_MAJOR := 3
264 SO_VERSION_MINOR := 0
265 SO_VERSION_PATCH := 0
266 ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
267 LIBVPX_SO               := libvpx.$(SO_VERSION_MAJOR).dylib
268 SHARED_LIB_SUF          := .dylib
269 EXPORT_FILE             := libvpx.syms
270 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
271                              libvpx.dylib  )
272 else
273 ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
274 LIBVPX_SO               := libvpx$(SO_VERSION_MAJOR).dll
275 SHARED_LIB_SUF          := _dll.a
276 EXPORT_FILE             := libvpx.def
277 LIBVPX_SO_SYMLINKS      :=
278 LIBVPX_SO_IMPLIB        := libvpx_dll.a
279 else
280 LIBVPX_SO               := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
281 SHARED_LIB_SUF          := .so
282 EXPORT_FILE             := libvpx.ver
283 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
284                              libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \
285                              libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
286 endif
287 endif
288
289 LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\
290                            $(notdir $(LIBVPX_SO_SYMLINKS)) \
291                            $(if $(LIBVPX_SO_IMPLIB), $(BUILD_PFX)$(LIBVPX_SO_IMPLIB))
292 $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE)
293 $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm
294 $(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(SO_VERSION_MAJOR)
295 $(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
296
297 libvpx.ver: $(call enabled,CODEC_EXPORTS)
298         @echo "    [CREATE] $@"
299         $(qexec)echo "{ global:" > $@
300         $(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done
301         $(qexec)echo "local: *; };" >> $@
302 CLEAN-OBJS += libvpx.ver
303
304 libvpx.syms: $(call enabled,CODEC_EXPORTS)
305         @echo "    [CREATE] $@"
306         $(qexec)awk '{print "_"$$2}' $^ >$@
307 CLEAN-OBJS += libvpx.syms
308
309 libvpx.def: $(call enabled,CODEC_EXPORTS)
310         @echo "    [CREATE] $@"
311         $(qexec)echo LIBRARY $(LIBVPX_SO:.dll=) INITINSTANCE TERMINSTANCE > $@
312         $(qexec)echo "DATA MULTIPLE NONSHARED" >> $@
313         $(qexec)echo "EXPORTS" >> $@
314         $(qexec)awk '!/vpx_svc_*/ {print "_"$$2}' $^ >>$@
315 CLEAN-OBJS += libvpx.def
316
317 libvpx_dll.a: $(LIBVPX_SO)
318         @echo "    [IMPLIB] $@"
319         $(qexec)emximp -o $@ $<
320 CLEAN-OBJS += libvpx_dll.a
321
322 define libvpx_symlink_template
323 $(1): $(2)
324         @echo "    [LN]     $(2) $$@"
325         $(qexec)mkdir -p $$(dir $$@)
326         $(qexec)ln -sf $(2) $$@
327 endef
328
329 $(eval $(call libvpx_symlink_template,\
330     $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\
331     $(BUILD_PFX)$(LIBVPX_SO)))
332 $(eval $(call libvpx_symlink_template,\
333     $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\
334     $(LIBVPX_SO)))
335
336
337 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS)
338 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO)
339 INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB))
340
341
342 LIBS-yes += vpx.pc
343 vpx.pc: config.mk libs.mk
344         @echo "    [CREATE] $@"
345         $(qexec)echo '# pkg-config file from libvpx $(VERSION_STRING)' > $@
346         $(qexec)echo 'prefix=$(PREFIX)' >> $@
347         $(qexec)echo 'exec_prefix=$${prefix}' >> $@
348         $(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
349         $(qexec)echo 'includedir=$${prefix}/include' >> $@
350         $(qexec)echo '' >> $@
351         $(qexec)echo 'Name: vpx' >> $@
352         $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@
353         $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@
354         $(qexec)echo 'Requires:' >> $@
355         $(qexec)echo 'Conflicts:' >> $@
356         $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@
357 ifeq ($(HAVE_PTHREAD_H),yes)
358         $(qexec)echo 'Libs.private: -lm -lpthread' >> $@
359 else
360         $(qexec)echo 'Libs.private: -lm' >> $@
361 endif
362         $(qexec)echo 'Cflags: -I$${includedir}' >> $@
363 INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc
364 INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
365 CLEAN-OBJS += vpx.pc
366 endif
367
368 #
369 # Rule to make assembler configuration file from C configuration file
370 #
371 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
372 # YASM
373 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
374         @echo "    [CREATE] $@"
375         @egrep "#define [A-Z0-9_]+ [01]" $< \
376             | awk '{print $$2 " equ " $$3}' > $@
377 else
378 ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
379 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
380         @echo "    [CREATE] $@"
381         @egrep "#define [A-Z0-9_]+ [01]" $< \
382             | awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
383         @echo "        END" $(ADS2GAS) >> $@
384 CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm
385 endif
386
387 #
388 # Add assembler dependencies for configuration.
389 #
390 $(filter %.s.o,$(OBJS-yes)):     $(BUILD_PFX)vpx_config.asm
391 $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
392
393
394 $(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h)
395 CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
396
397 #
398 # Add include path for libwebm sources.
399 #
400 ifeq ($(CONFIG_WEBM_IO),yes)
401   CXXFLAGS += -I$(SRC_PATH_BARE)/third_party/libwebm
402 endif
403
404 ##
405 ## libvpx test directives
406 ##
407 ifeq ($(CONFIG_UNIT_TESTS),yes)
408 LIBVPX_TEST_DATA_PATH ?= .
409
410 include $(SRC_PATH_BARE)/test/test.mk
411 LIBVPX_TEST_SRCS=$(addprefix test/,$(call enabled,LIBVPX_TEST_SRCS))
412 LIBVPX_TEST_BIN=./test_libvpx$(EXE_SFX)
413 LIBVPX_TEST_DATA=$(addprefix $(LIBVPX_TEST_DATA_PATH)/,\
414                      $(call enabled,LIBVPX_TEST_DATA))
415 libvpx_test_data_url=http://downloads.webmproject.org/test_data/libvpx/$(1)
416
417 TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
418 TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
419 TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
420
421 libvpx_test_srcs.txt:
422         @echo "    [CREATE] $@"
423         @echo $(LIBVPX_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
424 CLEAN-OBJS += libvpx_test_srcs.txt
425
426 $(LIBVPX_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
427         @echo "    [DOWNLOAD] $@"
428         $(qexec)trap 'rm -f $@' INT TERM &&\
429             curl -L -o $@ $(call libvpx_test_data_url,$(@F))
430
431 testdata:: $(LIBVPX_TEST_DATA)
432         $(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
433           [ -x "$$(which shasum)" ] && sha1sum=shasum;\
434           [ -x "$$(which sha1)" ] && sha1sum=sha1;\
435           if [ -n "$${sha1sum}" ]; then\
436             set -e;\
437             echo "Checking test data:";\
438             for f in $(call enabled,LIBVPX_TEST_DATA); do\
439                 grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
440                     (cd $(LIBVPX_TEST_DATA_PATH); $${sha1sum} -c);\
441             done; \
442         else\
443             echo "Skipping test data integrity check, sha1sum not found.";\
444         fi
445
446 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
447 ifeq ($(CONFIG_MSVS),yes)
448
449 gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc
450         @echo "    [CREATE] $@"
451         $(qexec)$(GEN_VCPROJ) \
452             --lib \
453             --target=$(TOOLCHAIN) \
454             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
455             --name=gtest \
456             --proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
457             --ver=$(CONFIG_VS_VERSION) \
458             --src-path-bare="$(SRC_PATH_BARE)" \
459             -D_VARIADIC_MAX=10 \
460             --out=gtest.$(VCPROJ_SFX) $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc \
461             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" -I"$(SRC_PATH_BARE)/third_party/googletest/src"
462
463 PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
464
465 test_libvpx.$(VCPROJ_SFX): $(LIBVPX_TEST_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
466         @echo "    [CREATE] $@"
467         $(qexec)$(GEN_VCPROJ) \
468             --exe \
469             --target=$(TOOLCHAIN) \
470             --name=test_libvpx \
471             -D_VARIADIC_MAX=10 \
472             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
473             --ver=$(CONFIG_VS_VERSION) \
474             --src-path-bare="$(SRC_PATH_BARE)" \
475             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
476             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
477             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
478             $(if $(CONFIG_WEBM_IO),-I"$(SRC_PATH_BARE)/third_party/libwebm") \
479             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
480
481 PROJECTS-$(CONFIG_MSVS) += test_libvpx.$(VCPROJ_SFX)
482
483 LIBVPX_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BIN)))
484
485 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
486 PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
487 test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
488         @echo "    [CREATE] $@"
489         $(qexec)$(GEN_VCPROJ) \
490             --exe \
491             --target=$(TOOLCHAIN) \
492             --name=test_intra_pred_speed \
493             -D_VARIADIC_MAX=10 \
494             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
495             --ver=$(CONFIG_VS_VERSION) \
496             --src-path-bare="$(SRC_PATH_BARE)" \
497             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
498             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
499             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
500             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
501 endif  # TEST_INTRA_PRED_SPEED
502 endif
503 else
504
505 include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
506 GTEST_SRCS := $(addprefix third_party/googletest/src/,$(call enabled,GTEST_SRCS))
507 GTEST_OBJS=$(call objs,$(GTEST_SRCS))
508 ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
509 # Disabling pthreads globally will cause issues on darwin and possibly elsewhere
510 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
511 endif
512 GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src
513 GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/include
514 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
515 OBJS-yes += $(GTEST_OBJS)
516 LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
517 $(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
518
519 LIBVPX_TEST_OBJS=$(sort $(call objs,$(LIBVPX_TEST_SRCS)))
520 $(LIBVPX_TEST_OBJS) $(LIBVPX_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
521 OBJS-yes += $(LIBVPX_TEST_OBJS)
522 BINS-yes += $(LIBVPX_TEST_BIN)
523
524 CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
525 CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
526 TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
527 $(LIBVPX_TEST_BIN): $(TEST_LIBS)
528 $(eval $(call linkerxx_template,$(LIBVPX_TEST_BIN), \
529               $(LIBVPX_TEST_OBJS) \
530               -L. -lvpx -lgtest $(extralibs) -lm))
531
532 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
533 $(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
534 OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
535 BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
536
537 $(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
538 $(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
539               $(TEST_INTRA_PRED_SPEED_OBJS) \
540               -L. -lvpx -lgtest $(extralibs) -lm))
541 endif  # TEST_INTRA_PRED_SPEED
542
543 endif  # CONFIG_UNIT_TESTS
544
545 # Install test sources only if codec source is included
546 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
547     $(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
548 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBVPX_TEST_SRCS)
549 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
550
551 define test_shard_template
552 test:: test_shard.$(1)
553 test-no-data-check:: test_shard_ndc.$(1)
554 test_shard.$(1) test_shard_ndc.$(1): $(LIBVPX_TEST_BIN)
555         @set -e; \
556          export GTEST_SHARD_INDEX=$(1); \
557          export GTEST_TOTAL_SHARDS=$(2); \
558          $(LIBVPX_TEST_BIN)
559 test_shard.$(1): testdata
560 .PHONY: test_shard.$(1)
561 endef
562
563 NUM_SHARDS := 10
564 SHARDS := 0 1 2 3 4 5 6 7 8 9
565 $(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
566
567 endif
568
569 ##
570 ## documentation directives
571 ##
572 CLEAN-OBJS += libs.doxy
573 DOCS-yes += libs.doxy
574 libs.doxy: $(CODEC_DOC_SRCS)
575         @echo "    [CREATE] $@"
576         @rm -f $@
577         @echo "INPUT += $^" >> $@
578         @echo "INCLUDE_PATH += ." >> $@;
579         @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
580
581 ## Generate rtcd.h for all objects
582 ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
583 $(OBJS-yes:.o=.d): $(RTCD)
584 else
585 $(OBJS-yes): $(RTCD)
586 endif
587
588 ## Update the global src list
589 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS)
590
591 ##
592 ## vpxdec/vpxenc tests.
593 ##
594 ifeq ($(CONFIG_UNIT_TESTS),yes)
595 TEST_BIN_PATH = .
596 ifeq ($(CONFIG_MSVS),yes)
597 # MSVC will build both Debug and Release configurations of tools in a
598 # sub directory named for the current target. Assume the user wants to
599 # run the Release tools, and assign TEST_BIN_PATH accordingly.
600 # TODO(tomfinegan): Is this adequate for ARM?
601 # TODO(tomfinegan): Support running the debug versions of tools?
602 TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
603 endif
604 utiltest utiltest-no-data-check:
605         $(qexec)$(SRC_PATH_BARE)/test/vpxdec.sh \
606                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
607                 --bin-path $(TEST_BIN_PATH)
608         $(qexec)$(SRC_PATH_BARE)/test/vpxenc.sh \
609                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
610                 --bin-path $(TEST_BIN_PATH)
611 utiltest: testdata
612 else
613 utiltest utiltest-no-data-check:
614         @echo Unit tests must be enabled to make the utiltest target.
615 endif
616
617 ##
618 ## Example tests.
619 ##
620 ifeq ($(CONFIG_UNIT_TESTS),yes)
621 # All non-MSVC targets output example targets in a sub dir named examples.
622 EXAMPLES_BIN_PATH = examples
623 ifeq ($(CONFIG_MSVS),yes)
624 # MSVC will build both Debug and Release configurations of the examples in a
625 # sub directory named for the current target. Assume the user wants to
626 # run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
627 # TODO(tomfinegan): Is this adequate for ARM?
628 # TODO(tomfinegan): Support running the debug versions of tools?
629 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
630 endif
631 exampletest exampletest-no-data-check: examples
632         $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
633                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
634                 --bin-path $(EXAMPLES_BIN_PATH)
635 exampletest: testdata
636 else
637 exampletest exampletest-no-data-check:
638         @echo Unit tests must be enabled to make the exampletest target.
639 endif