Makefile 797 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Makefile for the drm device driver. This driver provides support for the
  3. # Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
  4. ccflags-y := -Iinclude/drm
  5. i915-y := i915_drv.o i915_dma.o i915_irq.o i915_mem.o \
  6. i915_debugfs.o \
  7. i915_suspend.o \
  8. i915_gem.o \
  9. i915_gem_debug.o \
  10. i915_gem_tiling.o \
  11. i915_trace_points.o \
  12. intel_display.o \
  13. intel_crt.o \
  14. intel_lvds.o \
  15. intel_bios.o \
  16. intel_dp.o \
  17. intel_hdmi.o \
  18. intel_sdvo.o \
  19. intel_modes.o \
  20. intel_i2c.o \
  21. intel_fb.o \
  22. intel_tv.o \
  23. intel_dvo.o \
  24. intel_overlay.o \
  25. dvo_ch7xxx.o \
  26. dvo_ch7017.o \
  27. dvo_ivch.o \
  28. dvo_tfp410.o \
  29. dvo_sil164.o
  30. i915-$(CONFIG_ACPI) += i915_opregion.o
  31. i915-$(CONFIG_COMPAT) += i915_ioc32.o
  32. obj-$(CONFIG_DRM_I915) += i915.o