]> granicus.if.org Git - libvpx/blob - libs.mk
Merge "convolve_test: Fix IOC runtime errors."
[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 ifeq ($(CONFIG_SPATIAL_SVC),yes)
187 CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_spatial_svc
188 endif
189 CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec
190
191 INSTALL-LIBS-yes += include/vpx/vpx_codec.h
192 INSTALL-LIBS-yes += include/vpx/vpx_frame_buffer.h
193 INSTALL-LIBS-yes += include/vpx/vpx_image.h
194 INSTALL-LIBS-yes += include/vpx/vpx_integer.h
195 INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h
196 INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h
197 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
198 ifeq ($(CONFIG_MSVS),yes)
199 INSTALL-LIBS-yes                  += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
200 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
201 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll)
202 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
203 endif
204 else
205 INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a
206 INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a
207 endif
208
209 CODEC_SRCS=$(call enabled,CODEC_SRCS)
210 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
211 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
212
213
214 # Generate a list of all enabled sources, in particular for exporting to gyp
215 # based build systems.
216 libvpx_srcs.txt:
217         @echo "    [CREATE] $@"
218         @echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
219 CLEAN-OBJS += libvpx_srcs.txt
220
221
222 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
223 ifeq ($(CONFIG_MSVS),yes)
224
225 vpx.def: $(call enabled,CODEC_EXPORTS)
226         @echo "    [CREATE] $@"
227         $(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
228             --name=vpx\
229             --out=$@ $^
230 CLEAN-OBJS += vpx.def
231
232 # Assembly files that are included, but don't define symbols themselves.
233 # Filtered out to avoid Visual Studio build warnings.
234 ASM_INCLUDES := \
235     third_party/x86inc/x86inc.asm \
236     vpx_config.asm \
237     vpx_ports/x86_abi_support.asm \
238
239 vpx.$(VCPROJ_SFX): $(CODEC_SRCS) vpx.def
240         @echo "    [CREATE] $@"
241         $(qexec)$(GEN_VCPROJ) \
242             $(if $(CONFIG_SHARED),--dll,--lib) \
243             --target=$(TOOLCHAIN) \
244             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
245             --name=vpx \
246             --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
247             --module-def=vpx.def \
248             --ver=$(CONFIG_VS_VERSION) \
249             --src-path-bare="$(SRC_PATH_BARE)" \
250             --out=$@ $(CFLAGS) \
251             $(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
252             --src-path-bare="$(SRC_PATH_BARE)" \
253
254 PROJECTS-yes += vpx.$(VCPROJ_SFX)
255
256 vpx.$(VCPROJ_SFX): vpx_config.asm
257 vpx.$(VCPROJ_SFX): $(RTCD)
258
259 endif
260 else
261 LIBVPX_OBJS=$(call objs,$(CODEC_SRCS))
262 OBJS-yes += $(LIBVPX_OBJS)
263 LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a
264 $(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS)
265
266 SO_VERSION_MAJOR := 3
267 SO_VERSION_MINOR := 0
268 SO_VERSION_PATCH := 0
269 ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
270 LIBVPX_SO               := libvpx.$(SO_VERSION_MAJOR).dylib
271 SHARED_LIB_SUF          := .dylib
272 EXPORT_FILE             := libvpx.syms
273 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
274                              libvpx.dylib  )
275 else
276 ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
277 LIBVPX_SO               := libvpx$(SO_VERSION_MAJOR).dll
278 SHARED_LIB_SUF          := _dll.a
279 EXPORT_FILE             := libvpx.def
280 LIBVPX_SO_SYMLINKS      :=
281 LIBVPX_SO_IMPLIB        := libvpx_dll.a
282 else
283 LIBVPX_SO               := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
284 SHARED_LIB_SUF          := .so
285 EXPORT_FILE             := libvpx.ver
286 LIBVPX_SO_SYMLINKS      := $(addprefix $(LIBSUBDIR)/, \
287                              libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \
288                              libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
289 endif
290 endif
291
292 LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\
293                            $(notdir $(LIBVPX_SO_SYMLINKS)) \
294                            $(if $(LIBVPX_SO_IMPLIB), $(BUILD_PFX)$(LIBVPX_SO_IMPLIB))
295 $(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE)
296 $(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm
297 $(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(SO_VERSION_MAJOR)
298 $(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
299
300 libvpx.ver: $(call enabled,CODEC_EXPORTS)
301         @echo "    [CREATE] $@"
302         $(qexec)echo "{ global:" > $@
303         $(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done
304         $(qexec)echo "local: *; };" >> $@
305 CLEAN-OBJS += libvpx.ver
306
307 libvpx.syms: $(call enabled,CODEC_EXPORTS)
308         @echo "    [CREATE] $@"
309         $(qexec)awk '{print "_"$$2}' $^ >$@
310 CLEAN-OBJS += libvpx.syms
311
312 libvpx.def: $(call enabled,CODEC_EXPORTS)
313         @echo "    [CREATE] $@"
314         $(qexec)echo LIBRARY $(LIBVPX_SO:.dll=) INITINSTANCE TERMINSTANCE > $@
315         $(qexec)echo "DATA MULTIPLE NONSHARED" >> $@
316         $(qexec)echo "EXPORTS" >> $@
317         $(qexec)awk '!/vpx_svc_*/ {print "_"$$2}' $^ >>$@
318 CLEAN-OBJS += libvpx.def
319
320 libvpx_dll.a: $(LIBVPX_SO)
321         @echo "    [IMPLIB] $@"
322         $(qexec)emximp -o $@ $<
323 CLEAN-OBJS += libvpx_dll.a
324
325 define libvpx_symlink_template
326 $(1): $(2)
327         @echo "    [LN]     $(2) $$@"
328         $(qexec)mkdir -p $$(dir $$@)
329         $(qexec)ln -sf $(2) $$@
330 endef
331
332 $(eval $(call libvpx_symlink_template,\
333     $(addprefix $(BUILD_PFX),$(notdir $(LIBVPX_SO_SYMLINKS))),\
334     $(BUILD_PFX)$(LIBVPX_SO)))
335 $(eval $(call libvpx_symlink_template,\
336     $(addprefix $(DIST_DIR)/,$(LIBVPX_SO_SYMLINKS)),\
337     $(LIBVPX_SO)))
338
339
340 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS)
341 INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO)
342 INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB))
343
344
345 LIBS-yes += vpx.pc
346 vpx.pc: config.mk libs.mk
347         @echo "    [CREATE] $@"
348         $(qexec)echo '# pkg-config file from libvpx $(VERSION_STRING)' > $@
349         $(qexec)echo 'prefix=$(PREFIX)' >> $@
350         $(qexec)echo 'exec_prefix=$${prefix}' >> $@
351         $(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
352         $(qexec)echo 'includedir=$${prefix}/include' >> $@
353         $(qexec)echo '' >> $@
354         $(qexec)echo 'Name: vpx' >> $@
355         $(qexec)echo 'Description: WebM Project VPx codec implementation' >> $@
356         $(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@
357         $(qexec)echo 'Requires:' >> $@
358         $(qexec)echo 'Conflicts:' >> $@
359         $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@
360 ifeq ($(HAVE_PTHREAD_H),yes)
361         $(qexec)echo 'Libs.private: -lm -lpthread' >> $@
362 else
363         $(qexec)echo 'Libs.private: -lm' >> $@
364 endif
365         $(qexec)echo 'Cflags: -I$${includedir}' >> $@
366 INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc
367 INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
368 CLEAN-OBJS += vpx.pc
369 endif
370
371 #
372 # Rule to make assembler configuration file from C configuration file
373 #
374 ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
375 # YASM
376 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
377         @echo "    [CREATE] $@"
378         @egrep "#define [A-Z0-9_]+ [01]" $< \
379             | awk '{print $$2 " equ " $$3}' > $@
380 else
381 ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
382 $(BUILD_PFX)vpx_config.asm: $(BUILD_PFX)vpx_config.h
383         @echo "    [CREATE] $@"
384         @egrep "#define [A-Z0-9_]+ [01]" $< \
385             | awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
386         @echo "        END" $(ADS2GAS) >> $@
387 CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm
388 endif
389
390 #
391 # Add assembler dependencies for configuration.
392 #
393 $(filter %.s.o,$(OBJS-yes)):     $(BUILD_PFX)vpx_config.asm
394 $(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
395
396
397 $(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h)
398 CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
399
400 #
401 # Add include path for libwebm sources.
402 #
403 ifeq ($(CONFIG_WEBM_IO),yes)
404   CXXFLAGS += -I$(SRC_PATH_BARE)/third_party/libwebm
405 endif
406
407 ##
408 ## libvpx test directives
409 ##
410 ifeq ($(CONFIG_UNIT_TESTS),yes)
411 LIBVPX_TEST_DATA_PATH ?= .
412
413 include $(SRC_PATH_BARE)/test/test.mk
414 LIBVPX_TEST_SRCS=$(addprefix test/,$(call enabled,LIBVPX_TEST_SRCS))
415 LIBVPX_TEST_BIN=./test_libvpx$(EXE_SFX)
416 LIBVPX_TEST_DATA=$(addprefix $(LIBVPX_TEST_DATA_PATH)/,\
417                      $(call enabled,LIBVPX_TEST_DATA))
418 libvpx_test_data_url=http://downloads.webmproject.org/test_data/libvpx/$(1)
419
420 TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
421 TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
422 TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
423
424 libvpx_test_srcs.txt:
425         @echo "    [CREATE] $@"
426         @echo $(LIBVPX_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
427 CLEAN-OBJS += libvpx_test_srcs.txt
428
429 $(LIBVPX_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
430         @echo "    [DOWNLOAD] $@"
431         $(qexec)trap 'rm -f $@' INT TERM &&\
432             curl -L -o $@ $(call libvpx_test_data_url,$(@F))
433
434 testdata:: $(LIBVPX_TEST_DATA)
435         $(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
436           [ -x "$$(which shasum)" ] && sha1sum=shasum;\
437           [ -x "$$(which sha1)" ] && sha1sum=sha1;\
438           if [ -n "$${sha1sum}" ]; then\
439             set -e;\
440             echo "Checking test data:";\
441             for f in $(call enabled,LIBVPX_TEST_DATA); do\
442                 grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
443                     (cd $(LIBVPX_TEST_DATA_PATH); $${sha1sum} -c);\
444             done; \
445         else\
446             echo "Skipping test data integrity check, sha1sum not found.";\
447         fi
448
449 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
450 ifeq ($(CONFIG_MSVS),yes)
451
452 gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc
453         @echo "    [CREATE] $@"
454         $(qexec)$(GEN_VCPROJ) \
455             --lib \
456             --target=$(TOOLCHAIN) \
457             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
458             --name=gtest \
459             --proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
460             --ver=$(CONFIG_VS_VERSION) \
461             --src-path-bare="$(SRC_PATH_BARE)" \
462             -D_VARIADIC_MAX=10 \
463             --out=gtest.$(VCPROJ_SFX) $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc \
464             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" -I"$(SRC_PATH_BARE)/third_party/googletest/src"
465
466 PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
467
468 test_libvpx.$(VCPROJ_SFX): $(LIBVPX_TEST_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
469         @echo "    [CREATE] $@"
470         $(qexec)$(GEN_VCPROJ) \
471             --exe \
472             --target=$(TOOLCHAIN) \
473             --name=test_libvpx \
474             -D_VARIADIC_MAX=10 \
475             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
476             --ver=$(CONFIG_VS_VERSION) \
477             --src-path-bare="$(SRC_PATH_BARE)" \
478             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
479             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
480             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
481             $(if $(CONFIG_WEBM_IO),-I"$(SRC_PATH_BARE)/third_party/libwebm") \
482             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
483
484 PROJECTS-$(CONFIG_MSVS) += test_libvpx.$(VCPROJ_SFX)
485
486 LIBVPX_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BIN)))
487
488 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
489 PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
490 test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
491         @echo "    [CREATE] $@"
492         $(qexec)$(GEN_VCPROJ) \
493             --exe \
494             --target=$(TOOLCHAIN) \
495             --name=test_intra_pred_speed \
496             -D_VARIADIC_MAX=10 \
497             --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
498             --ver=$(CONFIG_VS_VERSION) \
499             --src-path-bare="$(SRC_PATH_BARE)" \
500             $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
501             --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
502             -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
503             -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
504 endif  # TEST_INTRA_PRED_SPEED
505 endif
506 else
507
508 include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
509 GTEST_SRCS := $(addprefix third_party/googletest/src/,$(call enabled,GTEST_SRCS))
510 GTEST_OBJS=$(call objs,$(GTEST_SRCS))
511 ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
512 # Disabling pthreads globally will cause issues on darwin and possibly elsewhere
513 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
514 endif
515 GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src
516 GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/include
517 $(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
518 OBJS-yes += $(GTEST_OBJS)
519 LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
520 $(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
521
522 LIBVPX_TEST_OBJS=$(sort $(call objs,$(LIBVPX_TEST_SRCS)))
523 $(LIBVPX_TEST_OBJS) $(LIBVPX_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
524 OBJS-yes += $(LIBVPX_TEST_OBJS)
525 BINS-yes += $(LIBVPX_TEST_BIN)
526
527 CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
528 CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
529 TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
530 $(LIBVPX_TEST_BIN): $(TEST_LIBS)
531 $(eval $(call linkerxx_template,$(LIBVPX_TEST_BIN), \
532               $(LIBVPX_TEST_OBJS) \
533               -L. -lvpx -lgtest $(extralibs) -lm))
534
535 ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
536 $(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
537 OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
538 BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
539
540 $(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
541 $(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
542               $(TEST_INTRA_PRED_SPEED_OBJS) \
543               -L. -lvpx -lgtest $(extralibs) -lm))
544 endif  # TEST_INTRA_PRED_SPEED
545
546 endif  # CONFIG_UNIT_TESTS
547
548 # Install test sources only if codec source is included
549 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
550     $(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
551 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBVPX_TEST_SRCS)
552 INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
553
554 define test_shard_template
555 test:: test_shard.$(1)
556 test-no-data-check:: test_shard_ndc.$(1)
557 test_shard.$(1) test_shard_ndc.$(1): $(LIBVPX_TEST_BIN)
558         @set -e; \
559          export GTEST_SHARD_INDEX=$(1); \
560          export GTEST_TOTAL_SHARDS=$(2); \
561          $(LIBVPX_TEST_BIN)
562 test_shard.$(1): testdata
563 .PHONY: test_shard.$(1)
564 endef
565
566 NUM_SHARDS := 10
567 SHARDS := 0 1 2 3 4 5 6 7 8 9
568 $(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
569
570 endif
571
572 ##
573 ## documentation directives
574 ##
575 CLEAN-OBJS += libs.doxy
576 DOCS-yes += libs.doxy
577 libs.doxy: $(CODEC_DOC_SRCS)
578         @echo "    [CREATE] $@"
579         @rm -f $@
580         @echo "INPUT += $^" >> $@
581         @echo "INCLUDE_PATH += ." >> $@;
582         @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
583
584 ## Generate rtcd.h for all objects
585 ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
586 $(OBJS-yes:.o=.d): $(RTCD)
587 else
588 $(OBJS-yes): $(RTCD)
589 endif
590
591 ## Update the global src list
592 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS)
593
594 ##
595 ## vpxdec/vpxenc tests.
596 ##
597 ifeq ($(CONFIG_UNIT_TESTS),yes)
598 TEST_BIN_PATH = .
599 ifeq ($(CONFIG_MSVS),yes)
600 # MSVC will build both Debug and Release configurations of tools in a
601 # sub directory named for the current target. Assume the user wants to
602 # run the Release tools, and assign TEST_BIN_PATH accordingly.
603 # TODO(tomfinegan): Is this adequate for ARM?
604 # TODO(tomfinegan): Support running the debug versions of tools?
605 TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
606 endif
607 utiltest utiltest-no-data-check:
608         $(qexec)$(SRC_PATH_BARE)/test/vpxdec.sh \
609                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
610                 --bin-path $(TEST_BIN_PATH)
611         $(qexec)$(SRC_PATH_BARE)/test/vpxenc.sh \
612                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
613                 --bin-path $(TEST_BIN_PATH)
614 utiltest: testdata
615 else
616 utiltest utiltest-no-data-check:
617         @echo Unit tests must be enabled to make the utiltest target.
618 endif
619
620 ##
621 ## Example tests.
622 ##
623 ifeq ($(CONFIG_UNIT_TESTS),yes)
624 # All non-MSVC targets output example targets in a sub dir named examples.
625 EXAMPLES_BIN_PATH = examples
626 ifeq ($(CONFIG_MSVS),yes)
627 # MSVC will build both Debug and Release configurations of the examples in a
628 # sub directory named for the current target. Assume the user wants to
629 # run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
630 # TODO(tomfinegan): Is this adequate for ARM?
631 # TODO(tomfinegan): Support running the debug versions of tools?
632 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
633 endif
634 exampletest exampletest-no-data-check: examples
635         $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
636                 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
637                 --bin-path $(EXAMPLES_BIN_PATH)
638 exampletest: testdata
639 else
640 exampletest exampletest-no-data-check:
641         @echo Unit tests must be enabled to make the exampletest target.
642 endif