Makefile 987 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#
# Makefile for the kernel multimedia device drivers.
#

5 6 7
ifeq ($(CONFIG_MEDIA_CEC_EDID),y)
  obj-$(CONFIG_MEDIA_SUPPORT) += cec-edid.o
endif
8

9 10 11 12
ifeq ($(CONFIG_MEDIA_CEC_NOTIFIER),y)
  obj-$(CONFIG_MEDIA_SUPPORT) += cec-notifier.o
endif

13 14 15 16
ifeq ($(CONFIG_MEDIA_CEC_SUPPORT),y)
  obj-$(CONFIG_MEDIA_SUPPORT) += cec/
endif

17
media-objs	:= media-device.o media-devnode.o media-entity.o
18

19 20 21 22 23 24 25 26 27 28
#
# I2C drivers should come before other drivers, otherwise they'll fail
# when compiled as builtin drivers
#
obj-y += i2c/ tuners/
obj-$(CONFIG_DVB_CORE)  += dvb-frontends/

#
# Now, let's link-in the media core
#
29 30 31 32
ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
  obj-$(CONFIG_MEDIA_SUPPORT) += media.o
endif

33 34 35 36 37 38 39 40 41 42
obj-$(CONFIG_VIDEO_DEV) += v4l2-core/
obj-$(CONFIG_DVB_CORE)  += dvb-core/

# There are both core and drivers at RC subtree - merge before drivers
obj-y += rc/

#
# Finally, merge the drivers that require the core
#

43
obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/
44
obj-$(CONFIG_VIDEO_DEV) += radio/
45