git-subtree-dir: techpack/video git-subtree-mainline:078c8b4302git-subtree-split:563c068743Change-Id: I03aafbfd2c133ff9cd1475c96f3bed969f7bb5be
31 lines
737 B
Makefile
31 lines
737 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
include $(srctree)/techpack/video/config/konavid.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_KONA), y)
|
|
LINUXINCLUDE += -include $(srctree)/techpack/video/config/konavidconf.h
|
|
endif
|
|
|
|
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_LITO), y)
|
|
include $(srctree)/techpack/video/config/litovid.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_LITO), y)
|
|
LINUXINCLUDE += -include $(srctree)/techpack/video/config/litovidconf.h
|
|
endif
|
|
|
|
# auto-detect subdirs
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
include $(srctree)/techpack/video/config/bengalvid.conf
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARCH_BENGAL), y)
|
|
LINUXINCLUDE += -include $(srctree)/techpack/video/config/bengalvidconf.h
|
|
endif
|
|
|
|
obj-y +=msm/
|