Files
hardware_samsung_slsi-linar…/Android.mk

19 lines
406 B
Makefile
Raw Normal View History

ifeq ($(TARGET_SLSI_VARIANT),linaro)
ifneq ($(filter exynos, $(TARGET_SOC_NAME)),)
openmax_dirs := \
videocodec \
openmax
include $(call all-named-subdir-makefiles,$(openmax_dirs))
else
PREFIX := $(shell echo $(TARGET_BOARD_PLATFORM) | head -c 6)
ifneq ($(filter exynos, $(PREFIX)),)
openmax_dirs := \
videocodec \
openmax
include $(call all-named-subdir-makefiles,$(openmax_dirs))
endif
endif
endif