forked from Minki/linux
88f8472c9f
On a few places, := were using instead of +=, causing drivers to not compile. While here, standardize the usage of += on all cases where multiple lines are needed, and for obj-y/obj-m targets, and := when just one line is needed, on <module>-obj rules. Reported-by: Hans Verkuil <hverkuil@xs4all.nl> Identified-by: Antti Polosaari <crope@iki.fi> Tested-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
16 lines
496 B
Makefile
16 lines
496 B
Makefile
em28xx-y += em28xx-video.o em28xx-i2c.o em28xx-cards.o
|
|
em28xx-y += em28xx-core.o em28xx-vbi.o
|
|
|
|
em28xx-alsa-objs := em28xx-audio.o
|
|
em28xx-rc-objs := em28xx-input.o
|
|
|
|
obj-$(CONFIG_VIDEO_EM28XX) += em28xx.o
|
|
obj-$(CONFIG_VIDEO_EM28XX_ALSA) += em28xx-alsa.o
|
|
obj-$(CONFIG_VIDEO_EM28XX_DVB) += em28xx-dvb.o
|
|
obj-$(CONFIG_VIDEO_EM28XX_RC) += em28xx-rc.o
|
|
|
|
ccflags-y += -Idrivers/media/i2c
|
|
ccflags-y += -Idrivers/media/tuners
|
|
ccflags-y += -Idrivers/media/dvb-core
|
|
ccflags-y += -Idrivers/media/dvb-frontends
|