#
# Copyright (C) 2016 MediaTek Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See http://www.gnu.org/licenses/gpl-2.0.html for more details.
#

ifeq ($(CONFIG_MTK_ECCCI_DRIVER), y)

ccflags-y += -I$(srctree)/
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci/inc
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci/port
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci/$(MTK_PLATFORM)
ccflags-y += -I$(srctree)/drivers/misc/mediatek/conn_md/include/
ccflags-y += -I$(srctree)/drivers/misc/mediatek/ccmni
ccflags-y += -I$(srctree)/drivers/misc/mediatek/base/power/$(MTK_PLATFORM)
ccflags-y += -I$(srctree)/drivers/misc/mediatek/base/power/include
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci/udc
ccflags-y += -I$(srctree)/drivers/misc/mediatek/eccci/udc/udc_lib_inc
# port objects
obj-$(CONFIG_MTK_ECCCI_DRIVER) := ccci_port.o

ifeq ($(CONFIG_MTK_MT6295_TMP_TEST), y)
ccci_port-y += port_cfg_tmp.o
else
ccci_port-y += port_cfg.o
endif

ccci_port-y += port_char.o
ccci_port-y += port_ctlmsg.o
ccci_port-y += port_udc.o
ccci_port-y += port_ipc.o
ccci_port-y += port_net.o
ccci_port-y += port_poller.o
ccci_port-y += port_proxy.o
ccci_port-y += port_rpc.o
ccci_port-y += port_smem.o
ccci_port-y += port_sysmsg.o
ccci_port-y += ccci_swtp.o
else
obj-  := dummy.o # avoid build error
endif

