2010-05-18 19:58:33 +04:00
|
|
|
##
|
2016-09-02 00:32:49 +03:00
|
|
|
## Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2010-05-18 19:58:33 +04:00
|
|
|
##
|
2016-09-02 00:32:49 +03:00
|
|
|
## This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
## was not distributed with this source code in the LICENSE file, you can
|
|
|
|
## obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
## Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
## PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
2010-05-18 19:58:33 +04:00
|
|
|
##
|
|
|
|
|
|
|
|
|
2011-03-02 17:44:39 +03:00
|
|
|
# ARM assembly files are written in RVCT-style. We use some make magic to
|
|
|
|
# filter those files to allow GCC compilation
|
|
|
|
ifeq ($(ARCH_ARM),yes)
|
2013-05-19 00:32:49 +04:00
|
|
|
ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.s,.asm)
|
2011-03-02 17:44:39 +03:00
|
|
|
else
|
|
|
|
ASM:=.asm
|
|
|
|
endif
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2012-11-09 05:09:30 +04:00
|
|
|
#
|
|
|
|
# Rule to generate runtime cpu detection files
|
|
|
|
#
|
|
|
|
define rtcd_h_template
|
|
|
|
$$(BUILD_PFX)$(1).h: $$(SRC_PATH_BARE)/$(2)
|
|
|
|
@echo " [CREATE] $$@"
|
2014-02-24 04:33:14 +04:00
|
|
|
$$(qexec)$$(SRC_PATH_BARE)/build/make/rtcd.pl --arch=$$(TGT_ISA) \
|
2012-11-09 05:09:30 +04:00
|
|
|
--sym=$(1) \
|
2015-05-13 01:33:40 +03:00
|
|
|
--config=$$(CONFIG_DIR)$$(target)-$$(TOOLCHAIN).mk \
|
2012-11-09 05:09:30 +04:00
|
|
|
$$(RTCD_OPTIONS) $$^ > $$@
|
|
|
|
CLEAN-OBJS += $$(BUILD_PFX)$(1).h
|
|
|
|
RTCD += $$(BUILD_PFX)$(1).h
|
|
|
|
endef
|
2012-11-07 04:59:01 +04:00
|
|
|
|
2012-03-06 04:36:23 +04:00
|
|
|
CODEC_SRCS-yes += CHANGELOG
|
2010-06-22 16:44:48 +04:00
|
|
|
CODEC_SRCS-yes += libs.mk
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom/aom_codec.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom/,$(call enabled,API_SRCS))
|
|
|
|
CODEC_DOC_SRCS += $(addprefix aom/,$(call enabled,API_DOC_SRCS))
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom_mem/aom_mem.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom_mem/,$(call enabled,MEM_SRCS))
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom_scale/aom_scale.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom_scale/,$(call enabled,SCALE_SRCS))
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom_ports/aom_ports.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom_ports/,$(call enabled,PORTS_SRCS))
|
2012-11-16 04:28:20 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom_dsp/aom_dsp.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom_dsp/,$(call enabled,DSP_SRCS))
|
2015-04-17 23:11:38 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
include $(SRC_PATH_BARE)/aom_util/aom_util.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix aom_util/,$(call enabled,UTIL_SRCS))
|
2015-07-02 00:58:13 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
# AV1 make file
|
|
|
|
ifeq ($(CONFIG_AV1),yes)
|
|
|
|
AV1_PREFIX=av1/
|
|
|
|
include $(SRC_PATH_BARE)/$(AV1_PREFIX)av1_common.mk
|
2015-08-06 05:00:31 +03:00
|
|
|
endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
ifeq ($(CONFIG_AV1_ENCODER),yes)
|
|
|
|
AV1_PREFIX=av1/
|
2016-09-01 21:05:32 +03:00
|
|
|
include $(SRC_PATH_BARE)/$(AV1_PREFIX)av1_cx.mk
|
2016-08-31 00:01:10 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix $(AV1_PREFIX),$(call enabled,AV1_CX_SRCS))
|
|
|
|
CODEC_EXPORTS-yes += $(addprefix $(AV1_PREFIX),$(AV1_CX_EXPORTS))
|
2016-09-01 21:05:32 +03:00
|
|
|
CODEC_SRCS-yes += $(AV1_PREFIX)av1_cx.mk aom/aom.h aom/aomcx.h
|
2016-08-31 00:01:10 +03:00
|
|
|
INSTALL-LIBS-yes += include/aom/aom.h include/aom/aomcx.h
|
|
|
|
INSTALL_MAPS += include/aom/% $(SRC_PATH_BARE)/$(AV1_PREFIX)/%
|
|
|
|
CODEC_DOC_SRCS += aom/aom.h aom/aomcx.h
|
2017-05-22 23:04:56 +03:00
|
|
|
CODEC_DOC_SECTIONS += av1 av1_encoder encoder
|
2015-08-06 05:00:31 +03:00
|
|
|
endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
ifeq ($(CONFIG_AV1_DECODER),yes)
|
|
|
|
AV1_PREFIX=av1/
|
2016-09-01 21:05:32 +03:00
|
|
|
include $(SRC_PATH_BARE)/$(AV1_PREFIX)av1_dx.mk
|
2016-08-31 00:01:10 +03:00
|
|
|
CODEC_SRCS-yes += $(addprefix $(AV1_PREFIX),$(call enabled,AV1_DX_SRCS))
|
|
|
|
CODEC_EXPORTS-yes += $(addprefix $(AV1_PREFIX),$(AV1_DX_EXPORTS))
|
2016-09-01 21:05:32 +03:00
|
|
|
CODEC_SRCS-yes += $(AV1_PREFIX)av1_dx.mk aom/aom.h aom/aomdx.h
|
2016-08-31 00:01:10 +03:00
|
|
|
INSTALL-LIBS-yes += include/aom/aom.h include/aom/aomdx.h
|
|
|
|
INSTALL_MAPS += include/aom/% $(SRC_PATH_BARE)/$(AV1_PREFIX)/%
|
|
|
|
CODEC_DOC_SRCS += aom/aom.h aom/aomdx.h
|
2017-05-22 23:04:56 +03:00
|
|
|
CODEC_DOC_SECTIONS += av1 av1_decoder decoder
|
2015-08-06 05:00:31 +03:00
|
|
|
endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
AV1_PREFIX=av1/
|
|
|
|
$(BUILD_PFX)$(AV1_PREFIX)%.c.o: CFLAGS += -Wextra
|
2015-08-06 05:00:31 +03:00
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
2016-08-31 00:01:10 +03:00
|
|
|
CODEC_LIB=$(if $(CONFIG_STATIC_MSVCRT),aommt,aommd)
|
2012-05-03 02:09:54 +04:00
|
|
|
GTEST_LIB=$(if $(CONFIG_STATIC_MSVCRT),gtestmt,gtestmd)
|
2010-05-18 19:58:33 +04:00
|
|
|
# This variable uses deferred expansion intentionally, since the results of
|
|
|
|
# $(wildcard) may change during the course of the Make.
|
|
|
|
VS_PLATFORMS = $(foreach d,$(wildcard */Release/$(CODEC_LIB).lib),$(word 1,$(subst /, ,$(d))))
|
|
|
|
endif
|
|
|
|
|
|
|
|
# The following pairs define a mapping of locations in the distribution
|
|
|
|
# tree to locations in the source/build trees.
|
2016-08-23 02:08:15 +03:00
|
|
|
INSTALL_MAPS += include/aom/% $(SRC_PATH_BARE)/aom/%
|
|
|
|
INSTALL_MAPS += include/aom/% $(SRC_PATH_BARE)/aom_ports/%
|
2010-05-26 23:57:42 +04:00
|
|
|
INSTALL_MAPS += $(LIBSUBDIR)/% %
|
2010-05-18 19:58:33 +04:00
|
|
|
INSTALL_MAPS += src/% $(SRC_PATH_BARE)/%
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
2010-05-26 23:57:42 +04:00
|
|
|
INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Release/%)
|
|
|
|
INSTALL_MAPS += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/% $(p)/Debug/%)
|
2010-05-18 19:58:33 +04:00
|
|
|
endif
|
|
|
|
|
2015-05-14 20:46:44 +03:00
|
|
|
CODEC_SRCS-yes += build/make/version.sh
|
|
|
|
CODEC_SRCS-yes += build/make/rtcd.pl
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_SRCS-yes += aom_ports/emmintrin_compat.h
|
|
|
|
CODEC_SRCS-yes += aom_ports/mem_ops.h
|
|
|
|
CODEC_SRCS-yes += aom_ports/mem_ops_aligned.h
|
2016-08-31 00:01:10 +03:00
|
|
|
CODEC_SRCS-yes += aom_ports/aom_once.h
|
|
|
|
CODEC_SRCS-yes += $(BUILD_PFX)aom_config.c
|
|
|
|
INSTALL-SRCS-no += $(BUILD_PFX)aom_config.c
|
2013-01-17 04:44:33 +04:00
|
|
|
ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
|
2014-06-28 03:40:39 +04:00
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += third_party/x86inc/x86inc.asm
|
2013-01-17 04:44:33 +04:00
|
|
|
endif
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_EXPORTS-yes += aom/exports_com
|
2017-05-22 23:04:56 +03:00
|
|
|
CODEC_EXPORTS-$(CONFIG_AV1_ENCODER) += aom/exports_enc
|
|
|
|
CODEC_EXPORTS-$(CONFIG_AV1_DECODER) += aom/exports_dec
|
2016-08-23 02:08:15 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
INSTALL-LIBS-yes += include/aom/aom_codec.h
|
|
|
|
INSTALL-LIBS-yes += include/aom/aom_frame_buffer.h
|
|
|
|
INSTALL-LIBS-yes += include/aom/aom_image.h
|
|
|
|
INSTALL-LIBS-yes += include/aom/aom_integer.h
|
2017-05-22 23:04:56 +03:00
|
|
|
INSTALL-LIBS-$(CONFIG_AV1_DECODER) += include/aom/aom_decoder.h
|
|
|
|
INSTALL-LIBS-$(CONFIG_AV1_ENCODER) += include/aom/aom_encoder.h
|
2010-05-18 19:58:33 +04:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
2010-05-26 23:57:42 +04:00
|
|
|
INSTALL-LIBS-yes += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB).lib)
|
|
|
|
INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/$(CODEC_LIB)d.lib)
|
2016-08-31 00:01:10 +03:00
|
|
|
INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/aom.dll)
|
|
|
|
INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/aom.exp)
|
2010-05-18 19:58:33 +04:00
|
|
|
endif
|
|
|
|
else
|
2016-08-23 02:08:15 +03:00
|
|
|
INSTALL-LIBS-$(CONFIG_STATIC) += $(LIBSUBDIR)/libaom.a
|
|
|
|
INSTALL-LIBS-$(CONFIG_DEBUG_LIBS) += $(LIBSUBDIR)/libaom_g.a
|
2010-05-18 19:58:33 +04:00
|
|
|
endif
|
|
|
|
|
2012-12-23 19:20:10 +04:00
|
|
|
CODEC_SRCS=$(call enabled,CODEC_SRCS)
|
2010-05-18 19:58:33 +04:00
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(CODEC_SRCS)
|
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(call enabled,CODEC_EXPORTS)
|
|
|
|
|
2011-08-12 22:59:10 +04:00
|
|
|
|
|
|
|
# Generate a list of all enabled sources, in particular for exporting to gyp
|
|
|
|
# based build systems.
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom_srcs.txt:
|
2011-08-12 22:59:10 +04:00
|
|
|
@echo " [CREATE] $@"
|
2015-02-27 07:48:40 +03:00
|
|
|
@echo $(CODEC_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
|
2016-08-23 02:08:15 +03:00
|
|
|
CLEAN-OBJS += libaom_srcs.txt
|
2011-08-12 22:59:10 +04:00
|
|
|
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom.def: $(call enabled,CODEC_EXPORTS)
|
2010-05-18 19:58:33 +04:00
|
|
|
@echo " [CREATE] $@"
|
2012-08-15 22:47:13 +04:00
|
|
|
$(qexec)$(SRC_PATH_BARE)/build/make/gen_msvs_def.sh\
|
2016-08-31 00:01:10 +03:00
|
|
|
--name=aom\
|
2010-05-18 19:58:33 +04:00
|
|
|
--out=$@ $^
|
2016-08-31 00:01:10 +03:00
|
|
|
CLEAN-OBJS += aom.def
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-03-05 07:46:29 +04:00
|
|
|
# Assembly files that are included, but don't define symbols themselves.
|
|
|
|
# Filtered out to avoid Visual Studio build warnings.
|
|
|
|
ASM_INCLUDES := \
|
|
|
|
third_party/x86inc/x86inc.asm \
|
2016-08-31 00:01:10 +03:00
|
|
|
aom_config.asm \
|
2016-08-23 02:08:15 +03:00
|
|
|
aom_ports/x86_abi_support.asm \
|
2014-03-05 07:46:29 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom.$(VCPROJ_SFX): $(CODEC_SRCS) aom.def
|
2010-05-18 19:58:33 +04:00
|
|
|
@echo " [CREATE] $@"
|
2013-05-17 01:56:46 +04:00
|
|
|
$(qexec)$(GEN_VCPROJ) \
|
2012-07-23 23:32:59 +04:00
|
|
|
$(if $(CONFIG_SHARED),--dll,--lib) \
|
|
|
|
--target=$(TOOLCHAIN) \
|
2010-05-18 19:58:33 +04:00
|
|
|
$(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
|
2016-08-31 00:01:10 +03:00
|
|
|
--name=aom \
|
2011-03-02 17:44:39 +03:00
|
|
|
--proj-guid=DCE19DAF-69AC-46DB-B14A-39F0FAA5DB74 \
|
2016-08-31 00:01:10 +03:00
|
|
|
--module-def=aom.def \
|
2011-03-02 17:44:39 +03:00
|
|
|
--ver=$(CONFIG_VS_VERSION) \
|
2014-06-03 03:42:14 +04:00
|
|
|
--src-path-bare="$(SRC_PATH_BARE)" \
|
2014-03-05 07:46:29 +04:00
|
|
|
--out=$@ $(CFLAGS) \
|
|
|
|
$(filter-out $(addprefix %, $(ASM_INCLUDES)), $^) \
|
2011-03-02 17:44:39 +03:00
|
|
|
--src-path-bare="$(SRC_PATH_BARE)" \
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
PROJECTS-yes += aom.$(VCPROJ_SFX)
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
aom.$(VCPROJ_SFX): aom_config.asm
|
|
|
|
aom.$(VCPROJ_SFX): $(RTCD)
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
endif
|
|
|
|
else
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_OBJS=$(call objs,$(CODEC_SRCS))
|
|
|
|
OBJS-yes += $(LIBAOM_OBJS)
|
|
|
|
LIBS-$(if yes,$(CONFIG_STATIC)) += $(BUILD_PFX)libaom.a $(BUILD_PFX)libaom_g.a
|
|
|
|
$(BUILD_PFX)libaom_g.a: $(LIBAOM_OBJS)
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2015-10-29 02:03:55 +03:00
|
|
|
SO_VERSION_MAJOR := 3
|
2015-03-24 01:33:17 +03:00
|
|
|
SO_VERSION_MINOR := 0
|
|
|
|
SO_VERSION_PATCH := 0
|
2012-07-26 06:39:33 +04:00
|
|
|
ifeq ($(filter darwin%,$(TGT_OS)),$(TGT_OS))
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_SO := libaom.$(SO_VERSION_MAJOR).dylib
|
2014-08-08 08:13:02 +04:00
|
|
|
SHARED_LIB_SUF := .dylib
|
2016-08-23 02:08:15 +03:00
|
|
|
EXPORT_FILE := libaom.syms
|
|
|
|
LIBAOM_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
|
|
|
|
libaom.dylib )
|
2012-07-26 06:39:33 +04:00
|
|
|
else
|
2016-05-02 19:41:59 +03:00
|
|
|
ifeq ($(filter iphonesimulator%,$(TGT_OS)),$(TGT_OS))
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_SO := libaom.$(SO_VERSION_MAJOR).dylib
|
2016-05-02 19:41:59 +03:00
|
|
|
SHARED_LIB_SUF := .dylib
|
2016-08-23 02:08:15 +03:00
|
|
|
EXPORT_FILE := libaom.syms
|
|
|
|
LIBAOM_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, libaom.dylib)
|
2016-05-02 19:41:59 +03:00
|
|
|
else
|
2014-08-08 08:13:02 +04:00
|
|
|
ifeq ($(filter os2%,$(TGT_OS)),$(TGT_OS))
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_SO := libaom$(SO_VERSION_MAJOR).dll
|
2014-08-08 08:13:02 +04:00
|
|
|
SHARED_LIB_SUF := _dll.a
|
2016-08-23 02:08:15 +03:00
|
|
|
EXPORT_FILE := libaom.def
|
|
|
|
LIBAOM_SO_SYMLINKS :=
|
|
|
|
LIBAOM_SO_IMPLIB := libaom_dll.a
|
2014-08-08 08:13:02 +04:00
|
|
|
else
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_SO := libaom.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_PATCH)
|
2014-08-08 08:13:02 +04:00
|
|
|
SHARED_LIB_SUF := .so
|
2016-08-23 02:08:15 +03:00
|
|
|
EXPORT_FILE := libaom.ver
|
|
|
|
LIBAOM_SO_SYMLINKS := $(addprefix $(LIBSUBDIR)/, \
|
|
|
|
libaom.so libaom.so.$(SO_VERSION_MAJOR) \
|
|
|
|
libaom.so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR))
|
2012-07-26 06:39:33 +04:00
|
|
|
endif
|
2014-08-08 08:13:02 +04:00
|
|
|
endif
|
2016-05-02 19:41:59 +03:00
|
|
|
endif
|
2012-07-26 06:39:33 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBS-$(CONFIG_SHARED) += $(BUILD_PFX)$(LIBAOM_SO)\
|
|
|
|
$(notdir $(LIBAOM_SO_SYMLINKS)) \
|
|
|
|
$(if $(LIBAOM_SO_IMPLIB), $(BUILD_PFX)$(LIBAOM_SO_IMPLIB))
|
|
|
|
$(BUILD_PFX)$(LIBAOM_SO): $(LIBAOM_OBJS) $(EXPORT_FILE)
|
|
|
|
$(BUILD_PFX)$(LIBAOM_SO): extralibs += -lm
|
|
|
|
$(BUILD_PFX)$(LIBAOM_SO): SONAME = libaom.so.$(SO_VERSION_MAJOR)
|
|
|
|
$(BUILD_PFX)$(LIBAOM_SO): EXPORTS_FILE = $(EXPORT_FILE)
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom.ver: $(call enabled,CODEC_EXPORTS)
|
2010-06-03 18:29:04 +04:00
|
|
|
@echo " [CREATE] $@"
|
|
|
|
$(qexec)echo "{ global:" > $@
|
|
|
|
$(qexec)for f in $?; do awk '{print $$2";"}' < $$f >>$@; done
|
|
|
|
$(qexec)echo "local: *; };" >> $@
|
2016-08-23 02:08:15 +03:00
|
|
|
CLEAN-OBJS += libaom.ver
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom.syms: $(call enabled,CODEC_EXPORTS)
|
2012-07-26 06:39:33 +04:00
|
|
|
@echo " [CREATE] $@"
|
|
|
|
$(qexec)awk '{print "_"$$2}' $^ >$@
|
2016-08-23 02:08:15 +03:00
|
|
|
CLEAN-OBJS += libaom.syms
|
2012-07-26 06:39:33 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom.def: $(call enabled,CODEC_EXPORTS)
|
2014-08-08 08:13:02 +04:00
|
|
|
@echo " [CREATE] $@"
|
2016-08-23 02:08:15 +03:00
|
|
|
$(qexec)echo LIBRARY $(LIBAOM_SO:.dll=) INITINSTANCE TERMINSTANCE > $@
|
2014-08-08 08:13:02 +04:00
|
|
|
$(qexec)echo "DATA MULTIPLE NONSHARED" >> $@
|
|
|
|
$(qexec)echo "EXPORTS" >> $@
|
2016-08-09 01:09:30 +03:00
|
|
|
$(qexec)awk '{print "_"$$2}' $^ >>$@
|
2016-08-23 02:08:15 +03:00
|
|
|
CLEAN-OBJS += libaom.def
|
2014-08-08 08:13:02 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom_dll.a: $(LIBAOM_SO)
|
2014-08-08 08:13:02 +04:00
|
|
|
@echo " [IMPLIB] $@"
|
|
|
|
$(qexec)emximp -o $@ $<
|
2016-08-23 02:08:15 +03:00
|
|
|
CLEAN-OBJS += libaom_dll.a
|
2014-08-08 08:13:02 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
define libaom_symlink_template
|
2011-07-26 02:40:36 +04:00
|
|
|
$(1): $(2)
|
2012-07-26 06:39:33 +04:00
|
|
|
@echo " [LN] $(2) $$@"
|
2012-12-23 19:20:10 +04:00
|
|
|
$(qexec)mkdir -p $$(dir $$@)
|
2012-07-26 06:39:33 +04:00
|
|
|
$(qexec)ln -sf $(2) $$@
|
2011-07-26 02:40:36 +04:00
|
|
|
endef
|
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
$(eval $(call libaom_symlink_template,\
|
|
|
|
$(addprefix $(BUILD_PFX),$(notdir $(LIBAOM_SO_SYMLINKS))),\
|
|
|
|
$(BUILD_PFX)$(LIBAOM_SO)))
|
|
|
|
$(eval $(call libaom_symlink_template,\
|
|
|
|
$(addprefix $(DIST_DIR)/,$(LIBAOM_SO_SYMLINKS)),\
|
|
|
|
$(LIBAOM_SO)))
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2012-07-26 06:39:33 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBAOM_SO_SYMLINKS)
|
|
|
|
INSTALL-LIBS-$(CONFIG_SHARED) += $(LIBSUBDIR)/$(LIBAOM_SO)
|
|
|
|
INSTALL-LIBS-$(CONFIG_SHARED) += $(if $(LIBAOM_SO_IMPLIB),$(LIBSUBDIR)/$(LIBAOM_SO_IMPLIB))
|
2010-06-03 18:29:04 +04:00
|
|
|
|
2011-03-28 23:04:51 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
LIBS-yes += aom.pc
|
|
|
|
aom.pc: config.mk libs.mk
|
2011-03-28 23:04:51 +04:00
|
|
|
@echo " [CREATE] $@"
|
2016-08-23 02:08:15 +03:00
|
|
|
$(qexec)echo '# pkg-config file from libaom $(VERSION_STRING)' > $@
|
2011-03-28 23:04:51 +04:00
|
|
|
$(qexec)echo 'prefix=$(PREFIX)' >> $@
|
|
|
|
$(qexec)echo 'exec_prefix=$${prefix}' >> $@
|
2012-04-21 02:11:46 +04:00
|
|
|
$(qexec)echo 'libdir=$${prefix}/$(LIBSUBDIR)' >> $@
|
2011-03-28 23:04:51 +04:00
|
|
|
$(qexec)echo 'includedir=$${prefix}/include' >> $@
|
|
|
|
$(qexec)echo '' >> $@
|
2016-08-31 00:01:10 +03:00
|
|
|
$(qexec)echo 'Name: aom' >> $@
|
|
|
|
$(qexec)echo 'Description: WebM Project AVx codec implementation' >> $@
|
2011-03-28 23:04:51 +04:00
|
|
|
$(qexec)echo 'Version: $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)' >> $@
|
|
|
|
$(qexec)echo 'Requires:' >> $@
|
|
|
|
$(qexec)echo 'Conflicts:' >> $@
|
2016-08-23 02:08:15 +03:00
|
|
|
$(qexec)echo 'Libs: -L$${libdir} -laom -lm' >> $@
|
2013-01-18 23:31:22 +04:00
|
|
|
ifeq ($(HAVE_PTHREAD_H),yes)
|
2012-08-21 21:54:30 +04:00
|
|
|
$(qexec)echo 'Libs.private: -lm -lpthread' >> $@
|
2013-01-18 23:31:22 +04:00
|
|
|
else
|
|
|
|
$(qexec)echo 'Libs.private: -lm' >> $@
|
|
|
|
endif
|
2011-03-28 23:04:51 +04:00
|
|
|
$(qexec)echo 'Cflags: -I$${includedir}' >> $@
|
2016-08-31 00:01:10 +03:00
|
|
|
INSTALL-LIBS-yes += $(LIBSUBDIR)/pkgconfig/aom.pc
|
2011-03-28 23:04:51 +04:00
|
|
|
INSTALL_MAPS += $(LIBSUBDIR)/pkgconfig/%.pc %.pc
|
2016-08-31 00:01:10 +03:00
|
|
|
CLEAN-OBJS += aom.pc
|
2010-05-18 19:58:33 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# Rule to make assembler configuration file from C configuration file
|
|
|
|
#
|
|
|
|
ifeq ($(ARCH_X86)$(ARCH_X86_64),yes)
|
|
|
|
# YASM
|
2016-08-31 00:01:10 +03:00
|
|
|
$(BUILD_PFX)aom_config.asm: $(BUILD_PFX)aom_config.h
|
2010-05-18 19:58:33 +04:00
|
|
|
@echo " [CREATE] $@"
|
|
|
|
@egrep "#define [A-Z0-9_]+ [01]" $< \
|
|
|
|
| awk '{print $$2 " equ " $$3}' > $@
|
|
|
|
else
|
|
|
|
ADS2GAS=$(if $(filter yes,$(CONFIG_GCC)),| $(ASM_CONVERSION))
|
2016-08-31 00:01:10 +03:00
|
|
|
$(BUILD_PFX)aom_config.asm: $(BUILD_PFX)aom_config.h
|
2010-05-18 19:58:33 +04:00
|
|
|
@echo " [CREATE] $@"
|
|
|
|
@egrep "#define [A-Z0-9_]+ [01]" $< \
|
|
|
|
| awk '{print $$2 " EQU " $$3}' $(ADS2GAS) > $@
|
|
|
|
@echo " END" $(ADS2GAS) >> $@
|
2016-08-31 00:01:10 +03:00
|
|
|
CLEAN-OBJS += $(BUILD_PFX)aom_config.asm
|
2010-05-18 19:58:33 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
#
|
2014-08-01 01:19:31 +04:00
|
|
|
# Add assembler dependencies for configuration.
|
2010-05-18 19:58:33 +04:00
|
|
|
#
|
2016-08-31 00:01:10 +03:00
|
|
|
$(filter %.s.o,$(OBJS-yes)): $(BUILD_PFX)aom_config.asm
|
|
|
|
$(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)aom_config.asm
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2011-02-05 01:44:31 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
$(shell $(SRC_PATH_BARE)/build/make/version.sh "$(SRC_PATH_BARE)" $(BUILD_PFX)aom_version.h)
|
|
|
|
CLEAN-OBJS += $(BUILD_PFX)aom_version.h
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2016-03-24 23:12:51 +03:00
|
|
|
#
|
|
|
|
# Add include path for libwebm sources.
|
|
|
|
#
|
|
|
|
ifeq ($(CONFIG_WEBM_IO),yes)
|
|
|
|
CXXFLAGS += -I$(SRC_PATH_BARE)/third_party/libwebm
|
|
|
|
endif
|
New RTCD implementation
This is a proof of concept RTCD implementation to replace the current
system of nested includes, prototypes, INVOKE macros, etc. Currently
only the decoder specific functions are implemented in the new system.
Additional functions will be added in subsequent commits.
Overview:
RTCD "functions" are implemented as either a global function pointer
or a macro (when only one eligible specialization available).
Functions which have RTCD specializations are listed using a simple
DSL identifying the function's base name, its prototype, and the
architecture extensions that specializations are available for.
Advantages over the old system:
- No INVOKE macros. A call to an RTCD function looks like an ordinary
function call.
- No need to pass vtables around.
- If there is only one eligible function to call, the function is
called directly, rather than indirecting through a function pointer.
- Supports the notion of "required" extensions, so in combination with
the above, on x86_64 if the best function available is sse2 or lower
it will be called directly, since all x86_64 platforms implement
sse2.
- Elides all references to functions which will never be called, which
could reduce binary size. For example if sse2 is required and there
are both mmx and sse2 implementations of a certain function, the
code will have no link time references to the mmx code.
- Significantly easier to add a new function, just one file to edit.
Disadvantages:
- Requires global writable data (though this is not a new requirement)
- 1 new generated source file.
Change-Id: Iae6edab65315f79c168485c96872641c5aa09d55
2011-08-19 22:06:00 +04:00
|
|
|
|
2011-11-04 19:48:30 +04:00
|
|
|
##
|
2016-08-23 02:08:15 +03:00
|
|
|
## libaom test directives
|
2011-11-04 19:48:30 +04:00
|
|
|
##
|
|
|
|
ifeq ($(CONFIG_UNIT_TESTS),yes)
|
2016-10-12 18:25:39 +03:00
|
|
|
LIBAOM_TEST_DATA_PATH ?= .
|
2012-05-17 03:25:51 +04:00
|
|
|
|
|
|
|
include $(SRC_PATH_BARE)/test/test.mk
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_TEST_SRCS=$(addprefix test/,$(call enabled,LIBAOM_TEST_SRCS))
|
2016-08-31 00:01:10 +03:00
|
|
|
LIBAOM_TEST_BIN=./test_libaom$(EXE_SFX)
|
2016-10-12 18:25:39 +03:00
|
|
|
LIBAOM_TEST_DATA=$(addprefix $(LIBAOM_TEST_DATA_PATH)/,\
|
2016-08-23 02:08:15 +03:00
|
|
|
$(call enabled,LIBAOM_TEST_DATA))
|
2017-04-19 22:28:24 +03:00
|
|
|
libaom_test_data_url=https://storage.googleapis.com/downloads.webmproject.org/test_data/libvpx/$(1)
|
2012-06-21 01:45:22 +04:00
|
|
|
|
2015-05-12 05:36:59 +03:00
|
|
|
TEST_INTRA_PRED_SPEED_BIN=./test_intra_pred_speed$(EXE_SFX)
|
|
|
|
TEST_INTRA_PRED_SPEED_SRCS=$(addprefix test/,$(call enabled,TEST_INTRA_PRED_SPEED_SRCS))
|
2015-06-10 05:30:46 +03:00
|
|
|
TEST_INTRA_PRED_SPEED_OBJS := $(sort $(call objs,$(TEST_INTRA_PRED_SPEED_SRCS)))
|
2015-05-12 05:36:59 +03:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
libaom_test_srcs.txt:
|
2013-06-26 00:50:30 +04:00
|
|
|
@echo " [CREATE] $@"
|
2016-08-23 02:08:15 +03:00
|
|
|
@echo $(LIBAOM_TEST_SRCS) | xargs -n1 echo | LC_ALL=C sort -u > $@
|
|
|
|
CLEAN-OBJS += libaom_test_srcs.txt
|
2013-06-26 00:50:30 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
$(LIBAOM_TEST_DATA): $(SRC_PATH_BARE)/test/test-data.sha1
|
2012-06-21 01:45:22 +04:00
|
|
|
@echo " [DOWNLOAD] $@"
|
|
|
|
$(qexec)trap 'rm -f $@' INT TERM &&\
|
2016-08-23 02:08:15 +03:00
|
|
|
curl -L -o $@ $(call libaom_test_data_url,$(@F))
|
2012-06-21 01:45:22 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
testdata:: $(LIBAOM_TEST_DATA)
|
2014-07-30 07:43:56 +04:00
|
|
|
$(qexec)[ -x "$$(which sha1sum)" ] && sha1sum=sha1sum;\
|
|
|
|
[ -x "$$(which shasum)" ] && sha1sum=shasum;\
|
|
|
|
[ -x "$$(which sha1)" ] && sha1sum=sha1;\
|
|
|
|
if [ -n "$${sha1sum}" ]; then\
|
2014-07-30 07:31:23 +04:00
|
|
|
set -e;\
|
2012-06-21 01:45:22 +04:00
|
|
|
echo "Checking test data:";\
|
2016-08-23 02:08:15 +03:00
|
|
|
for f in $(call enabled,LIBAOM_TEST_DATA); do\
|
2015-11-11 04:54:51 +03:00
|
|
|
grep $$f $(SRC_PATH_BARE)/test/test-data.sha1 |\
|
2016-10-12 18:25:39 +03:00
|
|
|
(cd $(LIBAOM_TEST_DATA_PATH); $${sha1sum} -c);\
|
2015-11-11 04:54:51 +03:00
|
|
|
done; \
|
2012-06-21 01:45:22 +04:00
|
|
|
else\
|
|
|
|
echo "Skipping test data integrity check, sha1sum not found.";\
|
|
|
|
fi
|
2012-05-17 03:25:51 +04:00
|
|
|
|
2011-11-04 19:48:30 +04:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
2017-02-08 04:14:05 +03:00
|
|
|
gtest.$(VCPROJ_SFX): $(SRC_PATH_BARE)/third_party/googletest/src/googletest/src/gtest-all.cc
|
2011-11-04 19:48:30 +04:00
|
|
|
@echo " [CREATE] $@"
|
2013-05-17 01:56:46 +04:00
|
|
|
$(qexec)$(GEN_VCPROJ) \
|
2011-11-04 19:48:30 +04:00
|
|
|
--lib \
|
|
|
|
--target=$(TOOLCHAIN) \
|
|
|
|
$(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
|
|
|
|
--name=gtest \
|
|
|
|
--proj-guid=EC00E1EC-AF68-4D92-A255-181690D1C9B1 \
|
|
|
|
--ver=$(CONFIG_VS_VERSION) \
|
|
|
|
--src-path-bare="$(SRC_PATH_BARE)" \
|
2012-12-05 00:28:10 +04:00
|
|
|
-D_VARIADIC_MAX=10 \
|
2017-02-08 04:14:05 +03:00
|
|
|
--out=gtest.$(VCPROJ_SFX) \
|
|
|
|
$(SRC_PATH_BARE)/third_party/googletest/src/googletest/src/gtest-all.cc \
|
|
|
|
-I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/googletest/include" \
|
|
|
|
-I"$(SRC_PATH_BARE)/third_party/googletest/src/googletest"
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2013-05-17 01:56:46 +04:00
|
|
|
PROJECTS-$(CONFIG_MSVS) += gtest.$(VCPROJ_SFX)
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
test_libaom.$(VCPROJ_SFX): $(LIBAOM_TEST_SRCS) aom.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
|
2012-06-01 21:43:47 +04:00
|
|
|
@echo " [CREATE] $@"
|
2013-05-17 01:56:46 +04:00
|
|
|
$(qexec)$(GEN_VCPROJ) \
|
2012-06-01 21:43:47 +04:00
|
|
|
--exe \
|
|
|
|
--target=$(TOOLCHAIN) \
|
2016-08-31 00:01:10 +03:00
|
|
|
--name=test_libaom \
|
2012-12-05 00:28:10 +04:00
|
|
|
-D_VARIADIC_MAX=10 \
|
2012-06-01 21:43:47 +04:00
|
|
|
--proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
|
|
|
|
--ver=$(CONFIG_VS_VERSION) \
|
2014-06-03 03:42:14 +04:00
|
|
|
--src-path-bare="$(SRC_PATH_BARE)" \
|
2012-06-01 21:43:47 +04:00
|
|
|
$(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
|
|
|
|
--out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
|
2017-02-08 04:14:05 +03:00
|
|
|
-I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/googletest/include" \
|
2016-03-24 23:12:51 +03:00
|
|
|
$(if $(CONFIG_WEBM_IO),-I"$(SRC_PATH_BARE)/third_party/libwebm") \
|
2013-05-19 13:21:29 +04:00
|
|
|
-L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
PROJECTS-$(CONFIG_MSVS) += test_libaom.$(VCPROJ_SFX)
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_TEST_BIN := $(addprefix $(TGT_OS:win64=x64)/Release/,$(notdir $(LIBAOM_TEST_BIN)))
|
2015-05-12 05:36:59 +03:00
|
|
|
|
|
|
|
ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
|
|
|
|
PROJECTS-$(CONFIG_MSVS) += test_intra_pred_speed.$(VCPROJ_SFX)
|
2016-08-31 00:01:10 +03:00
|
|
|
test_intra_pred_speed.$(VCPROJ_SFX): $(TEST_INTRA_PRED_SPEED_SRCS) aom.$(VCPROJ_SFX) gtest.$(VCPROJ_SFX)
|
2015-05-12 05:36:59 +03:00
|
|
|
@echo " [CREATE] $@"
|
|
|
|
$(qexec)$(GEN_VCPROJ) \
|
|
|
|
--exe \
|
|
|
|
--target=$(TOOLCHAIN) \
|
|
|
|
--name=test_intra_pred_speed \
|
|
|
|
-D_VARIADIC_MAX=10 \
|
|
|
|
--proj-guid=CD837F5F-52D8-4314-A370-895D614166A7 \
|
|
|
|
--ver=$(CONFIG_VS_VERSION) \
|
|
|
|
--src-path-bare="$(SRC_PATH_BARE)" \
|
|
|
|
$(if $(CONFIG_STATIC_MSVCRT),--static-crt) \
|
|
|
|
--out=$@ $(INTERNAL_CFLAGS) $(CFLAGS) \
|
2017-02-08 04:14:05 +03:00
|
|
|
-I. -I"$(SRC_PATH_BARE)/third_party/googletest/src/googletest/include" \
|
2015-05-12 05:36:59 +03:00
|
|
|
-L. -l$(CODEC_LIB) -l$(GTEST_LIB) $^
|
|
|
|
endif # TEST_INTRA_PRED_SPEED
|
2011-11-04 19:48:30 +04:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
|
|
|
|
include $(SRC_PATH_BARE)/third_party/googletest/gtest.mk
|
2017-02-08 04:14:05 +03:00
|
|
|
GTEST_SRCS := $(addprefix third_party/,$(call enabled,GTEST_SRCS))
|
2011-11-04 19:48:30 +04:00
|
|
|
GTEST_OBJS=$(call objs,$(GTEST_SRCS))
|
2013-06-27 05:35:11 +04:00
|
|
|
ifeq ($(filter win%,$(TGT_OS)),$(TGT_OS))
|
|
|
|
# Disabling pthreads globally will cause issues on darwin and possibly elsewhere
|
|
|
|
$(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += -DGTEST_HAS_PTHREAD=0
|
|
|
|
endif
|
2017-02-08 04:14:05 +03:00
|
|
|
GTEST_INCLUDES := -I$(SRC_PATH_BARE)/third_party/googletest/src/googletest
|
|
|
|
GTEST_INCLUDES += -I$(SRC_PATH_BARE)/third_party/googletest/src/googletest/include
|
2015-05-12 05:36:59 +03:00
|
|
|
$(GTEST_OBJS) $(GTEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
|
2015-05-14 20:46:44 +03:00
|
|
|
OBJS-yes += $(GTEST_OBJS)
|
|
|
|
LIBS-yes += $(BUILD_PFX)libgtest.a $(BUILD_PFX)libgtest_g.a
|
2011-11-04 19:48:30 +04:00
|
|
|
$(BUILD_PFX)libgtest_g.a: $(GTEST_OBJS)
|
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
LIBAOM_TEST_OBJS=$(sort $(call objs,$(LIBAOM_TEST_SRCS)))
|
|
|
|
$(LIBAOM_TEST_OBJS) $(LIBAOM_TEST_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
|
|
|
|
OBJS-yes += $(LIBAOM_TEST_OBJS)
|
|
|
|
BINS-yes += $(LIBAOM_TEST_BIN)
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
CODEC_LIB=$(if $(CONFIG_DEBUG_LIBS),aom_g,aom)
|
2014-08-08 08:13:02 +04:00
|
|
|
CODEC_LIB_SUF=$(if $(CONFIG_SHARED),$(SHARED_LIB_SUF),.a)
|
2015-05-12 05:36:59 +03:00
|
|
|
TEST_LIBS := lib$(CODEC_LIB)$(CODEC_LIB_SUF) libgtest.a
|
2016-08-23 02:08:15 +03:00
|
|
|
$(LIBAOM_TEST_BIN): $(TEST_LIBS)
|
|
|
|
$(eval $(call linkerxx_template,$(LIBAOM_TEST_BIN), \
|
|
|
|
$(LIBAOM_TEST_OBJS) \
|
|
|
|
-L. -laom -lgtest $(extralibs) -lm))
|
2011-11-04 19:48:30 +04:00
|
|
|
|
2015-05-12 05:36:59 +03:00
|
|
|
ifneq ($(strip $(TEST_INTRA_PRED_SPEED_OBJS)),)
|
|
|
|
$(TEST_INTRA_PRED_SPEED_OBJS) $(TEST_INTRA_PRED_SPEED_OBJS:.o=.d): CXXFLAGS += $(GTEST_INCLUDES)
|
|
|
|
OBJS-yes += $(TEST_INTRA_PRED_SPEED_OBJS)
|
|
|
|
BINS-yes += $(TEST_INTRA_PRED_SPEED_BIN)
|
|
|
|
|
|
|
|
$(TEST_INTRA_PRED_SPEED_BIN): $(TEST_LIBS)
|
|
|
|
$(eval $(call linkerxx_template,$(TEST_INTRA_PRED_SPEED_BIN), \
|
|
|
|
$(TEST_INTRA_PRED_SPEED_OBJS) \
|
2016-08-23 02:08:15 +03:00
|
|
|
-L. -laom -lgtest $(extralibs) -lm))
|
2015-05-12 05:36:59 +03:00
|
|
|
endif # TEST_INTRA_PRED_SPEED
|
|
|
|
|
2015-05-12 05:04:48 +03:00
|
|
|
endif # CONFIG_UNIT_TESTS
|
2013-06-01 03:08:09 +04:00
|
|
|
|
2014-01-09 03:45:14 +04:00
|
|
|
# Install test sources only if codec source is included
|
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(patsubst $(SRC_PATH_BARE)/%,%,\
|
|
|
|
$(shell find $(SRC_PATH_BARE)/third_party/googletest -type f))
|
2016-08-23 02:08:15 +03:00
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(LIBAOM_TEST_SRCS)
|
2015-05-12 05:36:59 +03:00
|
|
|
INSTALL-SRCS-$(CONFIG_CODEC_SRCS) += $(TEST_INTRA_PRED_SPEED_SRCS)
|
2014-01-09 03:45:14 +04:00
|
|
|
|
2013-06-01 03:08:09 +04:00
|
|
|
define test_shard_template
|
|
|
|
test:: test_shard.$(1)
|
2015-06-20 02:02:28 +03:00
|
|
|
test-no-data-check:: test_shard_ndc.$(1)
|
2016-08-23 02:08:15 +03:00
|
|
|
test_shard.$(1) test_shard_ndc.$(1): $(LIBAOM_TEST_BIN)
|
2013-06-01 03:08:09 +04:00
|
|
|
@set -e; \
|
2015-05-12 05:04:48 +03:00
|
|
|
export GTEST_SHARD_INDEX=$(1); \
|
|
|
|
export GTEST_TOTAL_SHARDS=$(2); \
|
2016-08-23 02:08:15 +03:00
|
|
|
$(LIBAOM_TEST_BIN)
|
2015-06-20 02:02:28 +03:00
|
|
|
test_shard.$(1): testdata
|
2013-06-01 03:08:09 +04:00
|
|
|
.PHONY: test_shard.$(1)
|
|
|
|
endef
|
|
|
|
|
|
|
|
NUM_SHARDS := 10
|
|
|
|
SHARDS := 0 1 2 3 4 5 6 7 8 9
|
|
|
|
$(foreach s,$(SHARDS),$(eval $(call test_shard_template,$(s),$(NUM_SHARDS))))
|
|
|
|
|
2011-11-04 19:48:30 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
##
|
|
|
|
## documentation directives
|
|
|
|
##
|
2010-05-18 19:58:33 +04:00
|
|
|
CLEAN-OBJS += libs.doxy
|
|
|
|
DOCS-yes += libs.doxy
|
|
|
|
libs.doxy: $(CODEC_DOC_SRCS)
|
|
|
|
@echo " [CREATE] $@"
|
|
|
|
@rm -f $@
|
|
|
|
@echo "INPUT += $^" >> $@
|
|
|
|
@echo "INCLUDE_PATH += ." >> $@;
|
|
|
|
@echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@
|
2012-05-17 03:25:51 +04:00
|
|
|
|
2012-11-09 05:09:30 +04:00
|
|
|
## Generate rtcd.h for all objects
|
2015-02-06 06:31:38 +03:00
|
|
|
ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes)
|
2012-11-09 05:09:30 +04:00
|
|
|
$(OBJS-yes:.o=.d): $(RTCD)
|
2015-02-06 06:31:38 +03:00
|
|
|
else
|
|
|
|
$(OBJS-yes): $(RTCD)
|
|
|
|
endif
|
2012-11-01 00:13:19 +04:00
|
|
|
|
|
|
|
## Update the global src list
|
2016-08-23 02:08:15 +03:00
|
|
|
SRCS += $(CODEC_SRCS) $(LIBAOM_TEST_SRCS) $(GTEST_SRCS)
|
2014-04-22 21:38:43 +04:00
|
|
|
|
|
|
|
##
|
2016-08-31 00:01:10 +03:00
|
|
|
## aomdec/aomenc tests.
|
2014-04-22 21:38:43 +04:00
|
|
|
##
|
|
|
|
ifeq ($(CONFIG_UNIT_TESTS),yes)
|
|
|
|
TEST_BIN_PATH = .
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
|
|
|
# MSVC will build both Debug and Release configurations of tools in a
|
|
|
|
# sub directory named for the current target. Assume the user wants to
|
|
|
|
# run the Release tools, and assign TEST_BIN_PATH accordingly.
|
|
|
|
# TODO(tomfinegan): Is this adequate for ARM?
|
|
|
|
# TODO(tomfinegan): Support running the debug versions of tools?
|
|
|
|
TEST_BIN_PATH := $(addsuffix /$(TGT_OS:win64=x64)/Release, $(TEST_BIN_PATH))
|
|
|
|
endif
|
2015-06-20 02:02:28 +03:00
|
|
|
utiltest utiltest-no-data-check:
|
2016-08-31 00:01:10 +03:00
|
|
|
$(qexec)$(SRC_PATH_BARE)/test/aomdec.sh \
|
2016-10-12 18:25:39 +03:00
|
|
|
--test-data-path $(LIBAOM_TEST_DATA_PATH) \
|
2014-04-22 21:38:43 +04:00
|
|
|
--bin-path $(TEST_BIN_PATH)
|
2016-08-31 00:01:10 +03:00
|
|
|
$(qexec)$(SRC_PATH_BARE)/test/aomenc.sh \
|
2016-10-12 18:25:39 +03:00
|
|
|
--test-data-path $(LIBAOM_TEST_DATA_PATH) \
|
2014-04-22 21:38:43 +04:00
|
|
|
--bin-path $(TEST_BIN_PATH)
|
2015-06-20 02:02:28 +03:00
|
|
|
utiltest: testdata
|
2014-04-22 21:38:43 +04:00
|
|
|
else
|
2015-06-20 02:02:28 +03:00
|
|
|
utiltest utiltest-no-data-check:
|
2014-04-22 21:38:43 +04:00
|
|
|
@echo Unit tests must be enabled to make the utiltest target.
|
|
|
|
endif
|
2014-05-16 08:34:42 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
## Example tests.
|
|
|
|
##
|
|
|
|
ifeq ($(CONFIG_UNIT_TESTS),yes)
|
|
|
|
# All non-MSVC targets output example targets in a sub dir named examples.
|
|
|
|
EXAMPLES_BIN_PATH = examples
|
|
|
|
ifeq ($(CONFIG_MSVS),yes)
|
|
|
|
# MSVC will build both Debug and Release configurations of the examples in a
|
|
|
|
# sub directory named for the current target. Assume the user wants to
|
|
|
|
# run the Release tools, and assign EXAMPLES_BIN_PATH accordingly.
|
|
|
|
# TODO(tomfinegan): Is this adequate for ARM?
|
|
|
|
# TODO(tomfinegan): Support running the debug versions of tools?
|
|
|
|
EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release
|
|
|
|
endif
|
2015-06-20 02:02:28 +03:00
|
|
|
exampletest exampletest-no-data-check: examples
|
2014-05-16 08:34:42 +04:00
|
|
|
$(qexec)$(SRC_PATH_BARE)/test/examples.sh \
|
2016-10-12 18:25:39 +03:00
|
|
|
--test-data-path $(LIBAOM_TEST_DATA_PATH) \
|
2014-05-16 08:34:42 +04:00
|
|
|
--bin-path $(EXAMPLES_BIN_PATH)
|
2015-06-20 02:02:28 +03:00
|
|
|
exampletest: testdata
|
2014-05-16 08:34:42 +04:00
|
|
|
else
|
2015-06-20 02:02:28 +03:00
|
|
|
exampletest exampletest-no-data-check:
|
2014-05-16 08:34:42 +04:00
|
|
|
@echo Unit tests must be enabled to make the exampletest target.
|
|
|
|
endif
|