Makefile 817 字节
Newer Older
1 2 3 4 5
#
# Makefile for the drm device driver.  This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.

ccflags-y := -Iinclude/drm
6
i915-y := i915_drv.o i915_dma.o i915_irq.o i915_mem.o \
7
	  i915_debugfs.o \
8 9 10
          i915_suspend.o \
	  i915_gem.o \
	  i915_gem_debug.o \
J
Jesse Barnes 已提交
11
	  i915_gem_tiling.o \
C
Chris Wilson 已提交
12
	  i915_trace_points.o \
J
Jesse Barnes 已提交
13 14 15 16
	  intel_display.o \
	  intel_crt.o \
	  intel_lvds.o \
	  intel_bios.o \
17 18
	  intel_dp.o \
	  intel_dp_i2c.o \
19
	  intel_hdmi.o \
J
Jesse Barnes 已提交
20 21 22 23 24 25
	  intel_sdvo.o \
	  intel_modes.o \
	  intel_i2c.o \
	  intel_fb.o \
	  intel_tv.o \
	  intel_dvo.o \
26
	  intel_overlay.o \
J
Jesse Barnes 已提交
27 28 29 30 31
	  dvo_ch7xxx.o \
	  dvo_ch7017.o \
	  dvo_ivch.o \
	  dvo_tfp410.o \
	  dvo_sil164.o
32

33
i915-$(CONFIG_ACPI)	+= i915_opregion.o
34 35 36
i915-$(CONFIG_COMPAT)   += i915_ioc32.o

obj-$(CONFIG_DRM_I915)  += i915.o