Makefile 1.1 KB
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
D
Daniel Vetter 已提交
6
i915-y := i915_drv.o i915_dma.o i915_irq.o \
7
	  i915_debugfs.o \
8 9
          i915_suspend.o \
	  i915_gem.o \
10
	  i915_gem_context.o \
11
	  i915_gem_debug.o \
12
	  i915_gem_evict.o \
13 14
	  i915_gem_execbuffer.o \
	  i915_gem_gtt.o \
15
	  i915_gem_stolen.o \
J
Jesse Barnes 已提交
16
	  i915_gem_tiling.o \
B
Ben Widawsky 已提交
17
	  i915_sysfs.o \
C
Chris Wilson 已提交
18
	  i915_trace_points.o \
J
Jesse Barnes 已提交
19 20 21 22
	  intel_display.o \
	  intel_crt.o \
	  intel_lvds.o \
	  intel_bios.o \
23
	  intel_ddi.o \
24
	  intel_dp.o \
25
	  intel_hdmi.o \
J
Jesse Barnes 已提交
26 27
	  intel_sdvo.o \
	  intel_modes.o \
28
	  intel_panel.o \
29
	  intel_pm.o \
J
Jesse Barnes 已提交
30 31 32 33
	  intel_i2c.o \
	  intel_fb.o \
	  intel_tv.o \
	  intel_dvo.o \
34
	  intel_ringbuffer.o \
35
	  intel_overlay.o \
36
	  intel_sprite.o \
37
	  intel_opregion.o \
J
Jesse Barnes 已提交
38 39 40 41
	  dvo_ch7xxx.o \
	  dvo_ch7017.o \
	  dvo_ivch.o \
	  dvo_tfp410.o \
42 43
	  dvo_sil164.o \
	  i915_gem_dmabuf.o
44 45 46

i915-$(CONFIG_COMPAT)   += i915_ioc32.o

J
Jesse Barnes 已提交
47 48
i915-$(CONFIG_ACPI)	+= intel_acpi.o

49
obj-$(CONFIG_DRM_I915)  += i915.o
P
Peter Clifton 已提交
50 51

CFLAGS_i915_trace_points.o := -I$(src)