05ad390724
The out of tree v4l-dvb build system didn't always override the kernel's configuration settings with v4l-dvb's settings correctly. To work around this, makefiles would define some new macro based on the setting of a config variable. e.g. the pwc Makefile would define CONFIG_PWC_DEBUG if CONFIG_USB_PWC_DEBUG (which is defined via Kconfig) was set. The v4l-dvb build system should now always override correctly, and this is no longer necessary. This patch gets ride of these extra defines and just uses the CONFIG_* settings directly. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
17 lines
510 B
Makefile
17 lines
510 B
Makefile
|
|
saa7134-objs := saa7134-cards.o saa7134-core.o saa7134-i2c.o \
|
|
saa7134-ts.o saa7134-tvaudio.o saa7134-vbi.o \
|
|
saa7134-video.o saa7134-input.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134) += saa7134.o saa7134-empress.o \
|
|
saa6752hs.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134_ALSA) += saa7134-alsa.o
|
|
obj-$(CONFIG_VIDEO_SAA7134_OSS) += saa7134-oss.o
|
|
|
|
obj-$(CONFIG_VIDEO_SAA7134_DVB) += saa7134-dvb.o
|
|
|
|
EXTRA_CFLAGS += -Idrivers/media/video
|
|
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core
|
|
EXTRA_CFLAGS += -Idrivers/media/dvb/frontends
|