summaryrefslogtreecommitdiffstats
path: root/config.x86.mk
diff options
context:
space:
mode:
Diffstat (limited to 'config.x86.mk')
-rw-r--r--config.x86.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.x86.mk b/config.x86.mk
index 055a793..5d604b9 100644
--- a/config.x86.mk
+++ b/config.x86.mk
@@ -3,7 +3,7 @@
# libvpx_codec_srcs_c_x86
# libvpx_codec_srcs_asm_x86
-libvpx_target := generic
+libvpx_target := x86
libvpx_config_dir_x86 := $(LOCAL_PATH)/$(libvpx_target)
libvpx_codec_srcs := $(sort $(shell cat $(libvpx_config_dir_x86)/libvpx_srcs.txt))
@@ -13,4 +13,5 @@ libvpx_codec_srcs_c_x86 := $(addprefix libvpx/, $(filter-out vpx_config.c, \
$(filter %.c, $(libvpx_codec_srcs)))) \
$(libvpx_target)/vpx_config.c
-libvpx_codec_srcs_asm_x86 := $(filter %.asm.s, $(libvpx_codec_srcs))
+# X86 asm files are processed by the system and sent to yasm
+libvpx_codec_srcs_c_x86 += $(addprefix libvpx/, $(filter %.asm, $(libvpx_codec_srcs)))