blob: c65df6ba65434c0d449ab9af253190185b2c5da7 [file] [log] [blame]
John Koleszar0ea50ce2010-05-18 11:58:33 -04001##
John Koleszarc2140b82010-09-09 08:16:39 -04002## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
John Koleszar0ea50ce2010-05-18 11:58:33 -04003##
John Koleszar94c52e42010-06-18 12:39:21 -04004## Use of this source code is governed by a BSD-style license
John Koleszar09202d82010-06-04 16:19:40 -04005## 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
John Koleszar94c52e42010-06-18 12:39:21 -04007## in the file PATENTS. All contributing project authors may
John Koleszar09202d82010-06-04 16:19:40 -04008## be found in the AUTHORS file in the root of the source tree.
John Koleszar0ea50ce2010-05-18 11:58:33 -04009##
10
11
Johann128d2c22011-03-02 09:44:39 -050012# ARM assembly files are written in RVCT-style. We use some make magic to
13# filter those files to allow GCC compilation
14ifeq ($(ARCH_ARM),yes)
Martin Storsjoad484fc2013-05-18 23:32:49 +030015 ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.s,.asm)
Johann128d2c22011-03-02 09:44:39 -050016else
17 ASM:=.asm
18endif
John Koleszar0ea50ce2010-05-18 11:58:33 -040019
John Koleszar7b8dfcb2012-11-06 16:59:01 -080020#
John Koleszara9c75972012-11-08 17:09:30 -080021# Rule to generate runtime cpu detection files
22#
23define rtcd_h_template
24$$(BUILD_PFX)$(1).h: $$(SRC_PATH_BARE)/$(2)
25 @echo " [CREATE] $$@"
James Zern805078a2014-02-23 16:33:14 -080026 $$(qexec)$$(SRC_PATH_BARE)/build/make/rtcd.pl --arch=$$(TGT_ISA) \
John Koleszara9c75972012-11-08 17:09:30 -080027 --sym=$(1) \
Tom Finegan3d7063d2015-05-12 15:33:40 -070028 --config=$$(CONFIG_DIR)$$(target)-$$(TOOLCHAIN).mk \
John Koleszara9c75972012-11-08 17:09:30 -080029 $$(RTCD_OPTIONS) $$^ > $$@
30CLEAN-OBJS += $$(BUILD_PFX)$(1).h
31RTCD += $$(BUILD_PFX)$(1).h
32endef
John Koleszar7b8dfcb2012-11-06 16:59:01 -080033
Johann5d88a822012-03-05 16:36:23 -080034CODEC_SRCS-yes += CHANGELOG
John Koleszar4d86ef32010-06-22 08:44:48 -040035CODEC_SRCS-yes += libs.mk
36
John Koleszarb7492342010-05-24 11:39:59 -040037include $(SRC_PATH_BARE)/vpx/vpx_codec.mk
38CODEC_SRCS-yes += $(addprefix vpx/,$(call enabled,API_SRCS))
Johann999f31f2012-11-15 17:19:44 -080039CODEC_DOC_SRCS += $(addprefix vpx/,$(call enabled,API_DOC_SRCS))
John Koleszar0ea50ce2010-05-18 11:58:33 -040040
41include $(SRC_PATH_BARE)/vpx_mem/vpx_mem.mk
42CODEC_SRCS-yes += $(addprefix vpx_mem/,$(call enabled,MEM_SRCS))
43
44include $(SRC_PATH_BARE)/vpx_scale/vpx_scale.mk
45CODEC_SRCS-yes += $(addprefix vpx_scale/,$(call enabled,SCALE_SRCS))
46
Johanna5ffcdd2012-11-15 16:28:20 -080047include $(SRC_PATH_BARE)/vpx_ports/vpx_ports.mk
48CODEC_SRCS-yes += $(addprefix vpx_ports/,$(call enabled,PORTS_SRCS))
49
Johannd5d92892015-04-17 16:11:38 -040050include $(SRC_PATH_BARE)/vpx_dsp/vpx_dsp.mk
51CODEC_SRCS-yes += $(addprefix vpx_dsp/,$(call enabled,DSP_SRCS))
52
Jingning Hand1b30ce2015-07-02 10:01:09 -070053include $(SRC_PATH_BARE)/vpx_util/vpx_util.mk
54CODEC_SRCS-yes += $(addprefix vpx_util/,$(call enabled,UTIL_SRCS))
Jingning Han3a3b0be2015-07-01 14:58:13 -070055
Johann9a5e0d42015-09-01 12:28:21 -070056ifeq ($(CONFIG_VP8),yes)
John Koleszar7b8dfcb2012-11-06 16:59:01 -080057 VP8_PREFIX=vp8/
58 include $(SRC_PATH_BARE)/$(VP8_PREFIX)vp8_common.mk
59endif
John Koleszar0ea50ce2010-05-18 11:58:33 -040060
61ifeq ($(CONFIG_VP8_ENCODER),yes)
John Koleszar0ea50ce2010-05-18 11:58:33 -040062 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))
John Koleszar2bf8fb52012-05-02 16:37:37 -070065 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
John Koleszarb7492342010-05-24 11:39:59 -040066 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
John Koleszar0ea50ce2010-05-18 11:58:33 -040067 CODEC_DOC_SECTIONS += vp8 vp8_encoder
68endif
69
70ifeq ($(CONFIG_VP8_DECODER),yes)
John Koleszar0ea50ce2010-05-18 11:58:33 -040071 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))
John Koleszarb7492342010-05-24 11:39:59 -040074 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
75 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP8_PREFIX)/%
John Koleszar0ea50ce2010-05-18 11:58:33 -040076 CODEC_DOC_SECTIONS += vp8 vp8_decoder
77endif
78
Johann Koenig0231e272015-08-28 16:18:18 -070079ifeq ($(CONFIG_VP9),yes)
John Koleszar7b8dfcb2012-11-06 16:59:01 -080080 VP9_PREFIX=vp9/
81 include $(SRC_PATH_BARE)/$(VP9_PREFIX)vp9_common.mk
82endif
John Koleszar0ea50ce2010-05-18 11:58:33 -040083
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070084ifeq ($(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))
John Koleszar7b8dfcb2012-11-06 16:59:01 -080089 CODEC_SRCS-yes += $(VP9_PREFIX)vp9cx.mk vpx/vp8.h vpx/vp8cx.h
John Koleszar7b8dfcb2012-11-06 16:59:01 -080090 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8cx.h
James Zernf12ebfc2014-05-14 19:45:20 -070091 INSTALL-LIBS-$(CONFIG_SPATIAL_SVC) += include/vpx/svc_context.h
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070092 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
John Koleszar0ea50ce2010-05-18 11:58:33 -040093 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8cx.h
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070094 CODEC_DOC_SECTIONS += vp9 vp9_encoder
John Koleszar0ea50ce2010-05-18 11:58:33 -040095endif
96
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -070097ifeq ($(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
John Koleszar0ea50ce2010-05-18 11:58:33 -0400103 INSTALL-LIBS-yes += include/vpx/vp8.h include/vpx/vp8dx.h
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700104 INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/$(VP9_PREFIX)/%
John Koleszar0ea50ce2010-05-18 11:58:33 -0400105 CODEC_DOC_SRCS += vpx/vp8.h vpx/vp8dx.h
Ronald S. Bultje4b2c2b92012-11-01 11:09:58 -0700106 CODEC_DOC_SECTIONS += vp9 vp9_decoder
John Koleszar0ea50ce2010-05-18 11:58:33 -0400107endif
108
Jim Bankoski1ae7f252014-08-22 13:32:14 -0700109VP9_PREFIX=vp9/
110$(BUILD_PFX)$(VP9_PREFIX)%.c.o: CFLAGS += -Wextra
John Koleszar0ea50ce2010-05-18 11:58:33 -0400111
Jingning Han3ee6db62015-08-05 19:00:31 -0700112# VP10 make file
Johann Koenig0231e272015-08-28 16:18:18 -0700113ifeq ($(CONFIG_VP10),yes)
Jingning Han3ee6db62015-08-05 19:00:31 -0700114 VP10_PREFIX=vp10/
115 include $(SRC_PATH_BARE)/$(VP10_PREFIX)vp10_common.mk
116endif
117
118ifeq ($(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
129endif
130
131ifeq ($(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
141endif
142
143VP10_PREFIX=vp10/
144$(BUILD_PFX)$(VP10_PREFIX)%.c.o: CFLAGS += -Wextra
145
John Koleszar0ea50ce2010-05-18 11:58:33 -0400146ifeq ($(CONFIG_ENCODERS),yes)
147 CODEC_DOC_SECTIONS += encoder
148endif
149ifeq ($(CONFIG_DECODERS),yes)
150 CODEC_DOC_SECTIONS += decoder
151endif
152
153
154ifeq ($(CONFIG_MSVS),yes)
155CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),vpxmt,vpxmd)
James Berry0cc044f2012-05-02 18:09:54 -0400156GTEST_LIB=$(if $(CONFIG_STATIC_MSVCRT),gtestmt,gtestmd)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400157# This variable uses deferred expansion intentionally, since the results of
158# $(wildcard) may change during the course of the Make.
159VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
John Koleszar0ea50ce2010-05-18 11:58:33 -0400160endif
161
162# The following pairs define a mapping of locations in the distribution
163# tree to locations in the source/build trees.
John Koleszarb7492342010-05-24 11:39:59 -0400164INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx/%
165INSTALL_MAPS += include/vpx/% $(SRC_PATH_BARE)/vpx_ports/%
John Koleszar670af3a2010-05-26 15:57:42 -0400166INSTALL_MAPS += $(LIBSUBDIR)/% %
John Koleszar0ea50ce2010-05-18 11:58:33 -0400167INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
168ifeq ($(CONFIG_MSVS),yes)
John Koleszar670af3a2010-05-26 15:57:42 -0400169INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Release/%)
170INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Debug/%)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400171endif
172
Tom Finegand104b162015-05-14 10:46:44 -0700173CODEC_SRCS-yes += build/make/version.sh
174CODEC_SRCS-yes += build/make/rtcd.pl
175CODEC_SRCS-yes += vpx_ports/emmintrin_compat.h
176CODEC_SRCS-yes += vpx_ports/mem_ops.h
177CODEC_SRCS-yes += vpx_ports/mem_ops_aligned.h
178CODEC_SRCS-yes += vpx_ports/vpx_once.h
179CODEC_SRCS-yes += $(BUILD_PFX)vpx_config.c
John Koleszar0ea50ce2010-05-18 11:58:33 -0400180INSTALL-SRCS-no += $(BUILD_PFX)vpx_config.c
John Koleszar23963022013-01-16 16:44:33 -0800181ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
James Zerne707e952014-06-27 16:40:39 -0700182INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += third_party/x86inc/x86inc.asm
John Koleszar23963022013-01-16 16:44:33 -0800183endif
Tom Finegand104b162015-05-14 10:46:44 -0700184CODEC_EXPORTS-yes += vpx/exports_com
John Koleszar7aa97a32010-06-03 10:29:04 -0400185CODEC_EXPORTS-$(CONFIG_ENCODERS) += vpx/exports_enc
186CODEC_EXPORTS-$(CONFIG_DECODERS) += vpx/exports_dec
John Koleszar0ea50ce2010-05-18 11:58:33 -0400187
John Koleszarb7492342010-05-24 11:39:59 -0400188INSTALL-LIBS-yes += include/vpx/vpx_codec.h
Frank Galligane8e15272014-02-05 17:44:42 -0800189INSTALL-LIBS-yes += include/vpx/vpx_frame_buffer.h
John Koleszarb7492342010-05-24 11:39:59 -0400190INSTALL-LIBS-yes += include/vpx/vpx_image.h
191INSTALL-LIBS-yes += include/vpx/vpx_integer.h
John Koleszarb7492342010-05-24 11:39:59 -0400192INSTALL-LIBS-$(CONFIG_DECODERS) += include/vpx/vpx_decoder.h
John Koleszarb7492342010-05-24 11:39:59 -0400193INSTALL-LIBS-$(CONFIG_ENCODERS) += include/vpx/vpx_encoder.h
John Koleszar0ea50ce2010-05-18 11:58:33 -0400194ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
195ifeq ($(CONFIG_MSVS),yes)
John Koleszar670af3a2010-05-26 15:57:42 -0400196INSTALL-LIBS-yes += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
197INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
198INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.dll)
199INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400200endif
201else
James Zern495b2412011-07-25 15:40:36 -0700202INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libvpx.a
John Koleszar670af3a2010-05-26 15:57:42 -0400203INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libvpx_g.a
John Koleszar0ea50ce2010-05-18 11:58:33 -0400204endif
205
John Koleszar5ebe94f2012-12-23 07:20:10 -0800206CODEC_SRCS=$(call enabled,CODEC_SRCS)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400207INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
208INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
209
John Koleszar5e562c72011-08-12 14:59:10 -0400210
211# Generate a list of all enabled sources, in particular for exporting to gyp
212# based build systems.
213libvpx_srcs.txt:
214 @echo " [CREATE] $@"
James Zern0f96f022015-02-26 20:48:40 -0800215 @echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
Jim Bankoski975df8c2013-06-20 15:05:42 -0700216CLEAN-OBJS += libvpx_srcs.txt
John Koleszar5e562c72011-08-12 14:59:10 -0400217
218
John Koleszar0ea50ce2010-05-18 11:58:33 -0400219ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
220ifeq ($(CONFIG_MSVS),yes)
221
John Koleszar0ea50ce2010-05-18 11:58:33 -0400222vpx.def: $(call enabled,CODEC_EXPORTS)
223 @echo " [CREATE] $@"
James Zerne8d58d32012-08-15 11:47:13 -0700224 $(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
John Koleszar0ea50ce2010-05-18 11:58:33 -0400225 --name=vpx\
226 --out=$@ $^
227CLEAN-OBJS += vpx.def
228
James Zernb92f7bc2014-03-04 19:46:29 -0800229# Assembly files that are included, but don't define symbols themselves.
230# Filtered out to avoid Visual Studio build warnings.
231ASM_INCLUDES := \
232 third_party/x86inc/x86inc.asm \
233 vpx_config.asm \
234 vpx_ports/x86_abi_support.asm \
235
Johann6eec73a2014-07-31 14:19:31 -0700236vpx.$(VCPROJ_SFX): $(CODEC_SRCS) vpx.def
John Koleszar0ea50ce2010-05-18 11:58:33 -0400237 @echo " [CREATE] $@"
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300238 $(qexec)$(GEN_VCPROJ) \
Jim Bankoski1b16e742012-07-23 12:32:59 -0700239 $(if $(CONFIG_SHARED),--dll,--lib) \
240 --target=$(TOOLCHAIN) \
John Koleszar0ea50ce2010-05-18 11:58:33 -0400241 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
Johann128d2c22011-03-02 09:44:39 -0500242 --name=vpx \
243 --proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
244 --module-def=vpx.def \
245 --ver=$(CONFIG_VS_VERSION) \
James Zernf66590c2014-06-02 16:42:14 -0700246 --src-path-bare="$(SRC_PATH_BARE)" \
James Zernb92f7bc2014-03-04 19:46:29 -0800247 --out=$@ $(CFLAGS) \
248 $(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
Johann128d2c22011-03-02 09:44:39 -0500249 --src-path-bare="$(SRC_PATH_BARE)" \
John Koleszar0ea50ce2010-05-18 11:58:33 -0400250
Tom Finegand104b162015-05-14 10:46:44 -0700251PROJECTS-yes += vpx.$(VCPROJ_SFX)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400252
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300253vpx.$(VCPROJ_SFX): vpx_config.asm
254vpx.$(VCPROJ_SFX): $(RTCD)
John Koleszar0ea50ce2010-05-18 11:58:33 -0400255
256endif
257else
258LIBVPX_OBJS=$(call objs,$(CODEC_SRCS))
Tom Finegand104b162015-05-14 10:46:44 -0700259OBJS-yes += $(LIBVPX_OBJS)
260LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libvpx.a $(BUILD_PFX)libvpx_g.a
John Koleszar0ea50ce2010-05-18 11:58:33 -0400261$(BUILD_PFX)libvpx_g.a: $(LIBVPX_OBJS)
John Koleszar7aa97a32010-06-03 10:29:04 -0400262
Johannbb5a39c2015-03-23 15:33:17 -0700263SO_VERSION_MAJOR := 2
264SO_VERSION_MINOR := 0
265SO_VERSION_PATCH := 0
jimbankoski45e551b2012-07-25 19:39:33 -0700266ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
Johannbb5a39c2015-03-23 15:33:17 -0700267LIBVPX_SO := libvpx.$(SO_VERSION_MAJOR).dylib
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900268SHARED_LIB_SUF := .dylib
jimbankoski45e551b2012-07-25 19:39:33 -0700269EXPORT_FILE := libvpx.syms
270LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
271 libvpx.dylib )
272else
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900273ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
274LIBVPX_SO := libvpx$(SO_VERSION_MAJOR).dll
275SHARED_LIB_SUF := _dll.a
276EXPORT_FILE := libvpx.def
277LIBVPX_SO_SYMLINKS :=
278LIBVPX_SO_IMPLIB := libvpx_dll.a
279else
Johannbb5a39c2015-03-23 15:33:17 -0700280LIBVPX_SO := libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900281SHARED_LIB_SUF := .so
jimbankoski45e551b2012-07-25 19:39:33 -0700282EXPORT_FILE := libvpx.ver
John Koleszar7aa97a32010-06-03 10:29:04 -0400283LIBVPX_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
Johannbb5a39c2015-03-23 15:33:17 -0700284 libvpx.so libvpx.so.$(SO_VERSION_MAJOR) \
285 libvpx.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
jimbankoski45e551b2012-07-25 19:39:33 -0700286endif
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900287endif
jimbankoski45e551b2012-07-25 19:39:33 -0700288
Tom Finegan556ff272015-05-14 11:20:34 -0700289LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBVPX_SO)\
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900290 $(notdir $(LIBVPX_SO_SYMLINKS)) \
291 $(if $(LIBVPX_SO_IMPLIB), $(BUILD_PFX)$(LIBVPX_SO_IMPLIB))
jimbankoski45e551b2012-07-25 19:39:33 -0700292$(BUILD_PFX)$(LIBVPX_SO): $(LIBVPX_OBJS) $(EXPORT_FILE)
293$(BUILD_PFX)$(LIBVPX_SO): extralibs += -lm
Johannbb5a39c2015-03-23 15:33:17 -0700294$(BUILD_PFX)$(LIBVPX_SO): SONAME = libvpx.so.$(SO_VERSION_MAJOR)
jimbankoski45e551b2012-07-25 19:39:33 -0700295$(BUILD_PFX)$(LIBVPX_SO): EXPORTS_FILE = $(EXPORT_FILE)
John Koleszar7aa97a32010-06-03 10:29:04 -0400296
297libvpx.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: *; };" >> $@
302CLEAN-OBJS += libvpx.ver
303
jimbankoski45e551b2012-07-25 19:39:33 -0700304libvpx.syms: $(call enabled,CODEC_EXPORTS)
305 @echo " [CREATE] $@"
306 $(qexec)awk '{print "_"$$2}' $^ >$@
307CLEAN-OBJS += libvpx.syms
308
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900309libvpx.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}' $^ >>$@
315CLEAN-OBJS += libvpx.def
316
317libvpx_dll.a: $(LIBVPX_SO)
318 @echo " [IMPLIB] $@"
319 $(qexec)emximp -o $@ $<
320CLEAN-OBJS += libvpx_dll.a
321
James Zern495b2412011-07-25 15:40:36 -0700322define libvpx_symlink_template
323$(1): $(2)
jimbankoski45e551b2012-07-25 19:39:33 -0700324 @echo " [LN] $(2) $$@"
John Koleszar5ebe94f2012-12-23 07:20:10 -0800325 $(qexec)mkdir -p $$(dir $$@)
jimbankoski45e551b2012-07-25 19:39:33 -0700326 $(qexec)ln -sf $(2) $$@
James Zern495b2412011-07-25 15:40:36 -0700327endef
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)),\
John Koleszar5ebe94f2012-12-23 07:20:10 -0800334 $(LIBVPX_SO)))
John Koleszar7aa97a32010-06-03 10:29:04 -0400335
jimbankoski45e551b2012-07-25 19:39:33 -0700336
Tom Finegan556ff272015-05-14 11:20:34 -0700337INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBVPX_SO_SYMLINKS)
338INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBVPX_SO)
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900339INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBVPX_SO_IMPLIB),$(LIBSUBDIR)/$(LIBVPX_SO_IMPLIB))
jimbankoski45e551b2012-07-25 19:39:33 -0700340
Ralph Giles607f8422011-03-28 12:04:51 -0700341
Tom Finegand104b162015-05-14 10:46:44 -0700342LIBS-yes += vpx.pc
Ralph Giles607f8422011-03-28 12:04:51 -0700343vpx.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}' >> $@
Takanori MATSUURAa7eea3e2012-04-20 15:11:46 -0700348 $(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
Ralph Giles607f8422011-03-28 12:04:51 -0700349 $(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:' >> $@
Ronald S. Bultjea742a732012-06-25 09:58:09 -0700356 $(qexec)echo 'Libs: -L$${libdir} -lvpx -lm' >> $@
Johannb46d58a2013-01-18 11:31:22 -0800357ifeq ($(HAVE_PTHREAD_H),yes)
John Koleszarbd6ffaa2012-08-21 10:54:30 -0700358 $(qexec)echo 'Libs.private: -lm -lpthread' >> $@
Johannb46d58a2013-01-18 11:31:22 -0800359else
360 $(qexec)echo 'Libs.private: -lm' >> $@
361endif
Ralph Giles607f8422011-03-28 12:04:51 -0700362 $(qexec)echo 'Cflags: -I$${includedir}' >> $@
363INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/vpx.pc
364INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
365CLEAN-OBJS += vpx.pc
John Koleszar0ea50ce2010-05-18 11:58:33 -0400366endif
367
John Koleszar0ea50ce2010-05-18 11:58:33 -0400368#
369# Rule to make assembler configuration file from C configuration file
370#
371ifeq ($(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}' > $@
377else
378ADS2GAS=$(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) >> $@
384CLEAN-OBJS += $(BUILD_PFX)vpx_config.asm
385endif
386
387#
Johann6eec73a2014-07-31 14:19:31 -0700388# Add assembler dependencies for configuration.
John Koleszar0ea50ce2010-05-18 11:58:33 -0400389#
Johann128d2c22011-03-02 09:44:39 -0500390$(filter %.s.o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
391$(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
John Koleszar0ea50ce2010-05-18 11:58:33 -0400392
Johann40dcae92011-02-04 17:44:31 -0500393
John Koleszar0ea50ce2010-05-18 11:58:33 -0400394$(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)vpx_version.h)
395CLEAN-OBJS += $(BUILD_PFX)vpx_version.h
396
John Koleszara9100492011-08-19 14:06:00 -0400397
James Berry07c71ef2011-11-04 11:48:30 -0400398##
399## libvpx test directives
400##
James Berry07c71ef2011-11-04 11:48:30 -0400401ifeq ($(CONFIG_UNIT_TESTS),yes)
John Koleszar00748632012-06-20 14:45:22 -0700402LIBVPX_TEST_DATA_PATH ?= .
John Koleszare82d2612012-05-16 16:25:51 -0700403
404include $(SRC_PATH_BARE)/test/test.mk
405LIBVPX_TEST_SRCS=$(addprefix test/,$(call enabled,LIBVPX_TEST_SRCS))
James Zernb0789cd2015-05-11 19:04:48 -0700406LIBVPX_TEST_BIN=./test_libvpx$(EXE_SFX)
John Koleszar00748632012-06-20 14:45:22 -0700407LIBVPX_TEST_DATA=$(addprefix $(LIBVPX_TEST_DATA_PATH)/,\
408 $(call enabled,LIBVPX_TEST_DATA))
409libvpx_test_data_url=http://downloads.webmproject.org/test_data/libvpx/$(1)
410
James Zern0d2f3482015-05-11 19:36:59 -0700411TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
412TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
James Zern39d93f32015-06-09 19:30:46 -0700413TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
James Zern0d2f3482015-05-11 19:36:59 -0700414
James Zern4a7cebe2013-06-25 13:50:30 -0700415libvpx_test_srcs.txt:
416 @echo " [CREATE] $@"
James Zern0f96f022015-02-26 20:48:40 -0800417 @echo $(LIBVPX_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
James Zern4a7cebe2013-06-25 13:50:30 -0700418CLEAN-OBJS += libvpx_test_srcs.txt
419
Adrian Grange5b236662013-09-16 11:46:00 -0700420$(LIBVPX_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
John Koleszar00748632012-06-20 14:45:22 -0700421 @echo " [DOWNLOAD] $@"
422 $(qexec)trap 'rm -f $@' INT TERM &&\
423 curl -L -o $@ $(call libvpx_test_data_url,$(@F))
424
425testdata:: $(LIBVPX_TEST_DATA)
James Zernd6fd2292014-07-29 20:43:56 -0700426 $(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
427 [ -x "$$(which shasum)" ] && sha1sum=shasum;\
428 [ -x "$$(which sha1)" ] && sha1sum=sha1;\
429 if [ -n "$${sha1sum}" ]; then\
James Zern23fbef22014-07-29 20:31:23 -0700430 set -e;\
John Koleszar00748632012-06-20 14:45:22 -0700431 echo "Checking test data:";\
John Koleszaracd147c2012-06-29 12:15:00 -0700432 if [ -n "$(LIBVPX_TEST_DATA)" ]; then\
433 for f in $(call enabled,LIBVPX_TEST_DATA); do\
434 grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
James Zernd6fd2292014-07-29 20:43:56 -0700435 (cd $(LIBVPX_TEST_DATA_PATH); $${sha1sum} -c);\
John Koleszaracd147c2012-06-29 12:15:00 -0700436 done; \
437 fi; \
John Koleszar00748632012-06-20 14:45:22 -0700438 else\
439 echo "Skipping test data integrity check, sha1sum not found.";\
440 fi
John Koleszare82d2612012-05-16 16:25:51 -0700441
James Berry07c71ef2011-11-04 11:48:30 -0400442ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
443ifeq ($(CONFIG_MSVS),yes)
444
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300445gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc
James Berry07c71ef2011-11-04 11:48:30 -0400446 @echo " [CREATE] $@"
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300447 $(qexec)$(GEN_VCPROJ) \
James Berry07c71ef2011-11-04 11:48:30 -0400448 --lib \
449 --target=$(TOOLCHAIN) \
450 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
451 --name=gtest \
452 --proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
453 --ver=$(CONFIG_VS_VERSION) \
454 --src-path-bare="$(SRC_PATH_BARE)" \
Yaowu Xuc2021002012-12-04 12:28:10 -0800455 -D_VARIADIC_MAX=10 \
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300456 --out=gtest.$(VCPROJ_SFX) $(SRC_PATH_BARE)/third_party/googletest/src/src/gtest-all.cc \
James Berry07c71ef2011-11-04 11:48:30 -0400457 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" -I"$(SRC_PATH_BARE)/third_party/googletest/src"
458
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300459PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
James Berry07c71ef2011-11-04 11:48:30 -0400460
Martin Storsjo9a5cac02013-05-18 19:57:19 +0300461test_libvpx.$(VCPROJ_SFX): $(LIBVPX_TEST_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
John Koleszar7f63bfa2012-06-01 10:43:47 -0700462 @echo " [CREATE] $@"
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300463 $(qexec)$(GEN_VCPROJ) \
John Koleszar7f63bfa2012-06-01 10:43:47 -0700464 --exe \
465 --target=$(TOOLCHAIN) \
466 --name=test_libvpx \
Yaowu Xuc2021002012-12-04 12:28:10 -0800467 -D_VARIADIC_MAX=10 \
John Koleszar7f63bfa2012-06-01 10:43:47 -0700468 --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
469 --ver=$(CONFIG_VS_VERSION) \
James Zernf66590c2014-06-02 16:42:14 -0700470 --src-path-bare="$(SRC_PATH_BARE)" \
John Koleszar7f63bfa2012-06-01 10:43:47 -0700471 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
472 --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
James Berry07c71ef2011-11-04 11:48:30 -0400473 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
Martin Storsjoa37e84d2013-05-19 12:21:29 +0300474 -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
James Berry07c71ef2011-11-04 11:48:30 -0400475
Martin Storsjo0b4637e2013-05-17 00:56:46 +0300476PROJECTS-$(CONFIG_MSVS) += test_libvpx.$(VCPROJ_SFX)
James Berry07c71ef2011-11-04 11:48:30 -0400477
James Zernb0789cd2015-05-11 19:04:48 -0700478LIBVPX_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBVPX_TEST_BIN)))
James Zern0d2f3482015-05-11 19:36:59 -0700479
480ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
481PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
482test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) vpx.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
483 @echo " [CREATE] $@"
484 $(qexec)$(GEN_VCPROJ) \
485 --exe \
486 --target=$(TOOLCHAIN) \
487 --name=test_intra_pred_speed \
488 -D_VARIADIC_MAX=10 \
489 --proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
490 --ver=$(CONFIG_VS_VERSION) \
491 --src-path-bare="$(SRC_PATH_BARE)" \
492 $(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
493 --out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
494 -I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/include" \
495 -L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
496endif # TEST_INTRA_PRED_SPEED
James Berry07c71ef2011-11-04 11:48:30 -0400497endif
498else
499
500include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
501GTEST_SRCS := $(addprefix third_party/googletest/src/,$(call enabled,GTEST_SRCS))
502GTEST_OBJS=$(call objs,$(GTEST_SRCS))
James Zerne4d2c252013-06-26 18:35:11 -0700503ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
504# Disabling pthreads globally will cause issues on darwin and possibly elsewhere
505$(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
506endif
James Zern0d2f3482015-05-11 19:36:59 -0700507GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src
508GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/include
509$(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
Tom Finegand104b162015-05-14 10:46:44 -0700510OBJS-yes += $(GTEST_OBJS)
511LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
James Berry07c71ef2011-11-04 11:48:30 -0400512$(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
513
John Koleszare82d2612012-05-16 16:25:51 -0700514LIBVPX_TEST_OBJS=$(sort $(call objs,$(LIBVPX_TEST_SRCS)))
James Zern0d2f3482015-05-11 19:36:59 -0700515$(LIBVPX_TEST_OBJS) $(LIBVPX_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
Tom Finegand104b162015-05-14 10:46:44 -0700516OBJS-yes += $(LIBVPX_TEST_OBJS)
517BINS-yes += $(LIBVPX_TEST_BIN)
James Berry07c71ef2011-11-04 11:48:30 -0400518
John Koleszaracd147c2012-06-29 12:15:00 -0700519CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),vpx_g,vpx)
KO Myung-Hun6d52fe22014-08-08 13:13:02 +0900520CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
James Zern0d2f3482015-05-11 19:36:59 -0700521TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
522$(LIBVPX_TEST_BIN): $(TEST_LIBS)
James Zernb0789cd2015-05-11 19:04:48 -0700523$(eval $(call linkerxx_template,$(LIBVPX_TEST_BIN), \
524 $(LIBVPX_TEST_OBJS) \
525 -L. -lvpx -lgtest $(extralibs) -lm))
James Berry07c71ef2011-11-04 11:48:30 -0400526
James Zern0d2f3482015-05-11 19:36:59 -0700527ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
528$(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
529OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
530BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
531
532$(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
533$(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
534 $(TEST_INTRA_PRED_SPEED_OBJS) \
535 -L. -lvpx -lgtest $(extralibs) -lm))
536endif # TEST_INTRA_PRED_SPEED
537
James Zernb0789cd2015-05-11 19:04:48 -0700538endif # CONFIG_UNIT_TESTS
James Zern7059c1d2013-05-31 16:08:09 -0700539
Johann0239f112014-01-08 15:45:14 -0800540# Install test sources only if codec source is included
541INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
542 $(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
543INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBVPX_TEST_SRCS)
James Zern0d2f3482015-05-11 19:36:59 -0700544INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
Johann0239f112014-01-08 15:45:14 -0800545
James Zern7059c1d2013-05-31 16:08:09 -0700546define test_shard_template
547test:: test_shard.$(1)
James Zern557ae512015-06-19 16:02:28 -0700548test-no-data-check:: test_shard_ndc.$(1)
549test_shard.$(1) test_shard_ndc.$(1): $(LIBVPX_TEST_BIN)
James Zern7059c1d2013-05-31 16:08:09 -0700550 @set -e; \
James Zernb0789cd2015-05-11 19:04:48 -0700551 export GTEST_SHARD_INDEX=$(1); \
552 export GTEST_TOTAL_SHARDS=$(2); \
553 $(LIBVPX_TEST_BIN)
James Zern557ae512015-06-19 16:02:28 -0700554test_shard.$(1): testdata
James Zern7059c1d2013-05-31 16:08:09 -0700555.PHONY: test_shard.$(1)
556endef
557
558NUM_SHARDS := 10
559SHARDS := 0 1 2 3 4 5 6 7 8 9
560$(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
561
James Berry07c71ef2011-11-04 11:48:30 -0400562endif
563
564##
565## documentation directives
566##
John Koleszar0ea50ce2010-05-18 11:58:33 -0400567CLEAN-OBJS += libs.doxy
568DOCS-yes += libs.doxy
569libs.doxy: $(CODEC_DOC_SRCS)
570 @echo " [CREATE] $@"
571 @rm -f $@
572 @echo "INPUT += $^" >> $@
John Koleszar0ea50ce2010-05-18 11:58:33 -0400573 @echo "INCLUDE_PATH += ." >> $@;
574 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
John Koleszare82d2612012-05-16 16:25:51 -0700575
John Koleszara9c75972012-11-08 17:09:30 -0800576## Generate rtcd.h for all objects
James Zernaaccf652015-02-05 19:31:38 -0800577ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
John Koleszara9c75972012-11-08 17:09:30 -0800578$(OBJS-yes:.o=.d): $(RTCD)
James Zernaaccf652015-02-05 19:31:38 -0800579else
580$(OBJS-yes): $(RTCD)
581endif
John Koleszarb72373d2012-10-31 13:13:19 -0700582
583## Update the global src list
584SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS)
Tom Finegan7b7c8432014-04-22 10:38:43 -0700585
586##
587## vpxdec/vpxenc tests.
588##
589ifeq ($(CONFIG_UNIT_TESTS),yes)
590TEST_BIN_PATH = .
591ifeq ($(CONFIG_MSVS),yes)
592# MSVC will build both Debug and Release configurations of tools in a
593# sub directory named for the current target. Assume the user wants to
594# run the Release tools, and assign TEST_BIN_PATH accordingly.
595# TODO(tomfinegan): Is this adequate for ARM?
596# TODO(tomfinegan): Support running the debug versions of tools?
597TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
598endif
James Zern557ae512015-06-19 16:02:28 -0700599utiltest utiltest-no-data-check:
Tom Finegan7b7c8432014-04-22 10:38:43 -0700600 $(qexec)$(SRC_PATH_BARE)/test/vpxdec.sh \
601 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
602 --bin-path $(TEST_BIN_PATH)
603 $(qexec)$(SRC_PATH_BARE)/test/vpxenc.sh \
604 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
605 --bin-path $(TEST_BIN_PATH)
James Zern557ae512015-06-19 16:02:28 -0700606utiltest: testdata
Tom Finegan7b7c8432014-04-22 10:38:43 -0700607else
James Zern557ae512015-06-19 16:02:28 -0700608utiltest utiltest-no-data-check:
Tom Finegan7b7c8432014-04-22 10:38:43 -0700609 @echo Unit tests must be enabled to make the utiltest target.
610endif
Tom Fineganbc27d7e2014-05-15 21:34:42 -0700611
612##
613## Example tests.
614##
615ifeq ($(CONFIG_UNIT_TESTS),yes)
616# All non-MSVC targets output example targets in a sub dir named examples.
617EXAMPLES_BIN_PATH = examples
618ifeq ($(CONFIG_MSVS),yes)
619# MSVC will build both Debug and Release configurations of the examples in a
620# sub directory named for the current target. Assume the user wants to
621# run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
622# TODO(tomfinegan): Is this adequate for ARM?
623# TODO(tomfinegan): Support running the debug versions of tools?
624EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
625endif
James Zern557ae512015-06-19 16:02:28 -0700626exampletest exampletest-no-data-check: examples
Tom Fineganbc27d7e2014-05-15 21:34:42 -0700627 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \
628 --test-data-path $(LIBVPX_TEST_DATA_PATH) \
629 --bin-path $(EXAMPLES_BIN_PATH)
James Zern557ae512015-06-19 16:02:28 -0700630exampletest: testdata
Tom Fineganbc27d7e2014-05-15 21:34:42 -0700631else
James Zern557ae512015-06-19 16:02:28 -0700632exampletest exampletest-no-data-check:
Tom Fineganbc27d7e2014-05-15 21:34:42 -0700633 @echo Unit tests must be enabled to make the exampletest target.
634endif