Makefile 722 B

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