diff options
author | Eric Anholt <[email protected]> | 2012-01-25 14:40:41 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-01-26 16:14:22 -0800 |
commit | 45389caf0583fafbc56340fc66008382db4df950 (patch) | |
tree | 9dfd7fd06e945dd7f5490d9838eb6f655fc82071 /src/mesa/drivers/dri/i965/Makefile.am | |
parent | 29ea1c44612b25806e71d55b88e7e8385af940a6 (diff) |
dri: Move the compile of the common files to a convenience library.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.am')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.am | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 55123814a7b..b1f0a80350d 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -47,23 +47,16 @@ if HAVE_I965_DRI dri_LTLIBRARIES = i965_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 - i965_dri_la_SOURCES = \ $(i965_C_FILES) \ - $(i965_CXX_FILES) \ - $(COMMON_FILES) + $(i965_CXX_FILES) i965_dri_la_LDFLAGS = -module -avoid-version -shared i965_dri_la_LIBADD = \ $(DRI_LIB_DEPS) \ $(DRICORE_LIB_DEPS) \ - $(INTEL_LIBS) + $(INTEL_LIBS) \ + ../common/libdricommon.la # Test build to make sure that we didn't leave any undefined symbols in the # driver. |