diff options
author | Eric Anholt <[email protected]> | 2012-01-25 11:23:51 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-01-26 16:13:39 -0800 |
commit | 29ea1c44612b25806e71d55b88e7e8385af940a6 (patch) | |
tree | 4055dc2ec3a820384f658e5ab312dbb0e3ab6bd0 /src/mesa/drivers/dri/i915 | |
parent | 259b65e2e7938de4aab323033cfe2b33369ddb07 (diff) |
i915: Fix driver after automakeification.
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/Makefile.am | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i915/Makefile.am b/src/mesa/drivers/dri/i915/Makefile.am index 6bc7061f1e0..5c44a9e7dc0 100644 --- a/src/mesa/drivers/dri/i915/Makefile.am +++ b/src/mesa/drivers/dri/i915/Makefile.am @@ -46,9 +46,17 @@ if HAVE_I915_DRI dri_LTLIBRARIES = i915_dri.la endif +# These should be an ltlibrary that's built once. Let's fix that once +# the other drivers are converted to automake. +COMMON_FILES = \ + ../common/utils.c \ + ../common/dri_util.c \ + ../common/xmlconfig.c + i915_dri_la_SOURCES = \ $(i915_C_FILES) \ - $(i915_CXX_FILES) + $(i915_CXX_FILES) \ + $(COMMON_FILES) i915_dri_la_LDFLAGS = -module -avoid-version -shared i915_dri_la_LIBADD = \ |