зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
536 B
Makefile
20 строки
536 B
Makefile
# 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
|