Makefile 1.3 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_gpu_error.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 \
17
	  i915_cmd_parser.o \
18
	  i915_params.o \
B
Ben Widawsky 已提交
19
	  i915_sysfs.o \
C
Chris Wilson 已提交
20
	  i915_trace_points.o \
21
	  i915_ums.o \
J
Jesse Barnes 已提交
22 23 24
	  intel_display.o \
	  intel_crt.o \
	  intel_lvds.o \
25
	  intel_dsi.o \
26
	  intel_dsi_cmd.o \
27
	  intel_dsi_pll.o \
J
Jesse Barnes 已提交
28
	  intel_bios.o \
29
	  intel_ddi.o \
30
	  intel_dp.o \
31
	  intel_hdmi.o \
J
Jesse Barnes 已提交
32 33
	  intel_sdvo.o \
	  intel_modes.o \
34
	  intel_panel.o \
35
	  intel_pm.o \
J
Jesse Barnes 已提交
36 37 38
	  intel_i2c.o \
	  intel_tv.o \
	  intel_dvo.o \
39
	  intel_ringbuffer.o \
40
	  intel_overlay.o \
41
	  intel_sprite.o \
42
	  intel_opregion.o \
43
	  intel_sideband.o \
44
	  intel_uncore.o \
J
Jesse Barnes 已提交
45 46 47 48
	  dvo_ch7xxx.o \
	  dvo_ch7017.o \
	  dvo_ivch.o \
	  dvo_tfp410.o \
49
	  dvo_sil164.o \
50
	  dvo_ns2501.o \
51
	  i915_gem_dmabuf.o
52 53 54

i915-$(CONFIG_COMPAT)   += i915_ioc32.o

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

57
i915-$(CONFIG_DRM_I915_FBDEV) += intel_fbdev.o
58

59 60
i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o

61
obj-$(CONFIG_DRM_I915)  += i915.o
P
Peter Clifton 已提交
62 63

CFLAGS_i915_trace_points.o := -I$(src)