summaryrefslogtreecommitdiff
path: root/libs.mk
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2016-10-31 16:18:51 -0700
committerJames Zern <jzern@google.com>2016-10-31 16:39:05 -0700
commit1ddb4c03622a654452a5e76b5a0e4db715dc350d (patch)
tree1b37cf139ae70a315e56d504ac5cd933fe95f14e /libs.mk
parent410d947c5f5f411e40145a46d32f67aaabb9e7e4 (diff)
downloadlibvpx-1ddb4c03622a654452a5e76b5a0e4db715dc350d.tar.gz
use .S suffix rather than .s for NEON asm
for compatibility with other build systems Change-Id: I6763e62e3126850ad4f8ad29e388b8dad0bbc4c3
Diffstat (limited to 'libs.mk')
-rw-r--r--libs.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs.mk b/libs.mk
index 6e12b5404..f4f48cc16 100644
--- a/libs.mk
+++ b/libs.mk
@@ -12,7 +12,7 @@
# 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)
- ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.s,.asm)
+ ASM:=$(if $(filter yes,$(CONFIG_GCC)$(CONFIG_MSVS)),.asm.S,.asm)
else
ASM:=.asm
endif
@@ -366,7 +366,7 @@ endif
#
# Add assembler dependencies for configuration.
#
-$(filter %.s.o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
+$(filter %.S.o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm
$(filter %$(ASM).o,$(OBJS-yes)): $(BUILD_PFX)vpx_config.asm