96cf4d94e4
This change adds support to compile video driver project for lito. Change-Id: I398fd8f37cb42bb20f849f17284c377001c14dde Signed-off-by: Govindaraj Rajagopal <grajagop@codeaurora.org>
22 lines
504 B
Makefile
22 lines
504 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
|
|
|
|
obj-y +=msm/
|