Files
hardware_samsung_slsi-linar…/Android.mk
Sam Protsenko d70d919c01 Add original Samsung hardware projects
Change-Id: I79380bc91acf57ca5f3e56fb64af76f4c45f6566
Signed-off-by: Sam Protsenko <joe.skb7@gmail.com>
2023-09-09 08:33:16 +02:00

17 lines
363 B
Makefile

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