openh264/build/platform-arch.mk
Martin Storsjö 59e6ab91cf Use an intermediate platform header for including architecture specific rules
This avoids coupling the architecture directly to the platform,
allowing building on e.g. linux on architectures other than x86,
without having to explicitly specify USE_ASM=No while building
on those.

Later this will also facilitate enabling assembly optimizations
where applicable, e.g. arm assembly on linux.
2014-02-28 10:19:53 +02:00

4 lines
82 B
Makefile

ifneq ($(filter %86 x86_64, $(ARCH)),)
include build/platform-x86-common.mk
endif