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