Files
hardware_samsung_slsi-linar…/Android.mk
Christopher N. Hesse 3ef353088b Add TARGET_SLSI_VARIANT makefile guard
Change-Id: I3df35a154d6f7bb9bad355a7ea4ad417780c5506
2023-09-09 08:53:52 +02:00

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