Makefile.in 536 B

1234567891011121314151617181920
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. # Set up the libvpx assembler config.
  5. ifdef VPX_ARM_ASM
  6. ifdef VPX_AS_CONVERSION
  7. # The ARM asm is written in ARM RVCT syntax, but we actually build it with
  8. # gas using GNU syntax. Add some rules to perform the conversion.
  9. GENERATED_DIRS += $(dir $(ASFILES))
  10. %.asm.s: %.asm $(ASM_OFFSETS)
  11. $(VPX_AS_CONVERSION) < $< > $@
  12. endif
  13. endif