summaryrefslogtreecommitdiffstats
path: root/media/libvpx/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'media/libvpx/Makefile.in')
-rw-r--r--media/libvpx/Makefile.in19
1 files changed, 19 insertions, 0 deletions
diff --git a/media/libvpx/Makefile.in b/media/libvpx/Makefile.in
new file mode 100644
index 000000000..e18604133
--- /dev/null
+++ b/media/libvpx/Makefile.in
@@ -0,0 +1,19 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# Set up the libvpx assembler config.
+
+ifdef VPX_ARM_ASM
+
+ifdef VPX_AS_CONVERSION
+# The ARM asm is written in ARM RVCT syntax, but we actually build it with
+# gas using GNU syntax. Add some rules to perform the conversion.
+
+GENERATED_DIRS += $(dir $(ASFILES))
+
+%.asm.s: %.asm $(ASM_OFFSETS)
+ $(VPX_AS_CONVERSION) < $< > $@
+
+endif
+endif