blob: fb9ceda7520b24b8182d6afbf046e431da04a4ca [file] [log] [blame]
Ying Wang08af1982014-03-12 17:49:58 -07001# Output variables:
2# libvpx_config_dir_x86_64
3# libvpx_codec_srcs_c_x86_64
4# libvpx_codec_srcs_asm_x86_64
5
Dirk Vogt545b3482016-02-18 19:30:26 +01006libvpx_target := config/generic
Ying Wang08af1982014-03-12 17:49:58 -07007
8libvpx_config_dir_x86_64 := $(LOCAL_PATH)/$(libvpx_target)
9libvpx_codec_srcs := $(sort $(shell cat $(libvpx_config_dir_x86_64)/libvpx_srcs.txt))
10
11# vpx_config.c is an auto-generated file in $(libvpx_target).
12libvpx_codec_srcs_c_x86_64 := $(addprefix libvpx/, $(filter-out vpx_config.c, \
13 $(filter %.c, $(libvpx_codec_srcs)))) \
14 $(libvpx_target)/vpx_config.c
15
Dirk Vogt545b3482016-02-18 19:30:26 +010016# X86_64 asm files are processed by the system and sent to yasm
17libvpx_codec_srcs_c_x86_64 += $(addprefix libvpx/, $(filter %.asm, $(libvpx_codec_srcs)))