1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the AV7110 DVB device driver
4#
5
6dvb-ttpci-objs := av7110_hw.o av7110_v4l.o av7110_av.o av7110_ca.o av7110.o \
7		  av7110_ipack.o dvb_filter.o
8
9ifdef CONFIG_DVB_AV7110_IR
10dvb-ttpci-objs += av7110_ir.o
11endif
12
13obj-$(CONFIG_DVB_BUDGET_PATCH) += budget-patch.o
14
15obj-$(CONFIG_DVB_AV7110) += dvb-ttpci.o
16
17obj-$(CONFIG_DVB_SP8870) += sp8870.o
18
19ccflags-y += -I $(srctree)/drivers/media/dvb-frontends
20ccflags-y += -I $(srctree)/drivers/media/tuners
21ccflags-y += -I $(srctree)/drivers/media/pci/ttpci
22ccflags-y += -I $(srctree)/drivers/media/common
23