mirror of
https://github.com/Evolution-X-Devices/hardware_samsung_slsi-linaro_openmax
synced 2026-01-27 06:25:12 +00:00
19 lines
406 B
Makefile
19 lines
406 B
Makefile
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
|