mirror of
https://github.com/Evolution-X-Devices/hardware_samsung_slsi-linaro_openmax
synced 2026-01-27 15:45:39 +00:00
Change-Id: I79380bc91acf57ca5f3e56fb64af76f4c45f6566 Signed-off-by: Sam Protsenko <joe.skb7@gmail.com>
17 lines
363 B
Makefile
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
|