Makefile 812 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # Makefile for the kernel multimedia device drivers.
  3. #
  4. ifeq ($(CONFIG_MEDIA_CEC_EDID),y)
  5. obj-$(CONFIG_MEDIA_SUPPORT) += cec-edid.o
  6. endif
  7. media-objs := media-device.o media-devnode.o media-entity.o
  8. #
  9. # I2C drivers should come before other drivers, otherwise they'll fail
  10. # when compiled as builtin drivers
  11. #
  12. obj-y += i2c/ tuners/
  13. obj-$(CONFIG_DVB_CORE) += dvb-frontends/
  14. #
  15. # Now, let's link-in the media core
  16. #
  17. ifeq ($(CONFIG_MEDIA_CONTROLLER),y)
  18. obj-$(CONFIG_MEDIA_SUPPORT) += media.o
  19. endif
  20. obj-$(CONFIG_VIDEO_DEV) += v4l2-core/
  21. obj-$(CONFIG_DVB_CORE) += dvb-core/
  22. # There are both core and drivers at RC subtree - merge before drivers
  23. obj-y += rc/
  24. #
  25. # Finally, merge the drivers that require the core
  26. #
  27. obj-y += common/ platform/ pci/ usb/ mmc/ firewire/ spi/
  28. obj-$(CONFIG_VIDEO_DEV) += radio/