| Dave Airlie | c0e0920 | 2008-05-29 10:09:59 +1000 | [diff] [blame] | 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 |  | 
|  | 5 | ccflags-y := -Iinclude/drm | 
| Len Brown | 65e082c | 2008-10-24 17:18:10 -0400 | [diff] [blame] | 6 | i915-y := i915_drv.o i915_dma.o i915_irq.o i915_mem.o \ | 
| Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 7 | i915_debugfs.o \ | 
| Eric Anholt | 673a394 | 2008-07-30 12:06:12 -0700 | [diff] [blame] | 8 | i915_suspend.o \ | 
|  | 9 | i915_gem.o \ | 
|  | 10 | i915_gem_debug.o \ | 
| Chris Wilson | b47eb4a | 2010-08-07 11:01:23 +0100 | [diff] [blame] | 11 | i915_gem_evict.o \ | 
| Chris Wilson | 54cf91d | 2010-11-25 18:00:26 +0000 | [diff] [blame] | 12 | i915_gem_execbuffer.o \ | 
|  | 13 | i915_gem_gtt.o \ | 
| Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 14 | i915_gem_tiling.o \ | 
| Chris Wilson | 1c5d22f | 2009-08-25 11:15:50 +0100 | [diff] [blame] | 15 | i915_trace_points.o \ | 
| Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 16 | intel_display.o \ | 
|  | 17 | intel_crt.o \ | 
|  | 18 | intel_lvds.o \ | 
|  | 19 | intel_bios.o \ | 
| Keith Packard | a4fc5ed | 2009-04-07 16:16:42 -0700 | [diff] [blame] | 20 | intel_dp.o \ | 
| Eric Anholt | 7d57382 | 2009-01-02 13:33:00 -0800 | [diff] [blame] | 21 | intel_hdmi.o \ | 
| Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 22 | intel_sdvo.o \ | 
|  | 23 | intel_modes.o \ | 
| Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 24 | intel_panel.o \ | 
| Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 25 | intel_i2c.o \ | 
|  | 26 | intel_fb.o \ | 
|  | 27 | intel_tv.o \ | 
|  | 28 | intel_dvo.o \ | 
| Eric Anholt | 62fdfea | 2010-05-21 13:26:39 -0700 | [diff] [blame] | 29 | intel_ringbuffer.o \ | 
| Daniel Vetter | 02e792f | 2009-09-15 22:57:34 +0200 | [diff] [blame] | 30 | intel_overlay.o \ | 
| Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 31 | intel_opregion.o \ | 
| Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 32 | dvo_ch7xxx.o \ | 
|  | 33 | dvo_ch7017.o \ | 
|  | 34 | dvo_ivch.o \ | 
|  | 35 | dvo_tfp410.o \ | 
|  | 36 | dvo_sil164.o | 
| Dave Airlie | c0e0920 | 2008-05-29 10:09:59 +1000 | [diff] [blame] | 37 |  | 
| Dave Airlie | c0e0920 | 2008-05-29 10:09:59 +1000 | [diff] [blame] | 38 | i915-$(CONFIG_COMPAT)   += i915_ioc32.o | 
|  | 39 |  | 
| Jesse Barnes | 723bfd7 | 2010-10-07 16:01:13 -0700 | [diff] [blame] | 40 | i915-$(CONFIG_ACPI)	+= intel_acpi.o | 
|  | 41 |  | 
| Dave Airlie | c0e0920 | 2008-05-29 10:09:59 +1000 | [diff] [blame] | 42 | obj-$(CONFIG_DRM_I915)  += i915.o | 
| Peter Clifton | a7c5427 | 2010-05-03 13:24:41 +0100 | [diff] [blame] | 43 |  | 
|  | 44 | CFLAGS_i915_trace_points.o := -I$(src) |