diff options
author | Michael Hunold <devnull@localhost> | 2003-03-20 08:14:56 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-03-20 08:14:56 +0000 |
commit | 5797f42d3ed47493db6ec2b904a9e8df10969f90 (patch) | |
tree | 37807f3040e7aa319977cb744d8d474fb640ea5a /linux/drivers/media/dvb/ttpci/Makefile | |
parent | e5652dff1fcf6156d33686bc1879601ab5c06d47 (diff) | |
download | mediapointer-dvb-s2-5797f42d3ed47493db6ec2b904a9e8df10969f90.tar.gz mediapointer-dvb-s2-5797f42d3ed47493db6ec2b904a9e8df10969f90.tar.bz2 |
Move the budget-driver from "ttpci-budget" to "ttpci", because the
devices are so similar. Perhaps it will be possible to share more code
between these drivers later on.
Diffstat (limited to 'linux/drivers/media/dvb/ttpci/Makefile')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/ttpci/Makefile b/linux/drivers/media/dvb/ttpci/Makefile index 5a9fd0c0c..c1e1f7b4c 100644 --- a/linux/drivers/media/dvb/ttpci/Makefile +++ b/linux/drivers/media/dvb/ttpci/Makefile @@ -1,9 +1,18 @@ # -# Makefile for the kernel AV7110 DVB device driver +# Makefile for the kernel SAA7146 FULL TS DVB device driver +# and the AV7110 DVB device driver # +dvb-ttpci-budget-objs := budget.o +dvb-ttpci-budget-av-objs := budget-av.o +dvb-ttpci-budget-ci-objs := budget-ci.o +dvb-ttpci-budget-patch-objs := budget-patch.o dvb-ttpci-objs := av7110.o av7110_ipack.o av7110_ir.o +obj-$(CONFIG_DVB_BUDGET) += budget-core.o dvb-ttpci-budget.o +obj-$(CONFIG_DVB_BUDGET_CI) += budget-core.o dvb-ttpci-budget-ci.o +obj-$(CONFIG_DVB_BUDGET_AV) += budget-core.o dvb-ttpci-budget-av.o +obj-$(CONFIG_DVB_BUDGET_PATCH) += budget-core.o dvb-ttpci-budget-patch.o obj-$(CONFIG_DVB_AV7110) += dvb-ttpci.o -EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ -I$(src)/../../common/ -I$(src)/../../common/saa7146 +EXTRA_CFLAGS = -Idrivers/media/dvb/dvb-core/ |