diff options
author | Eric Anholt <[email protected]> | 2012-01-12 14:28:37 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-01-17 10:35:24 -0800 |
commit | e326480e4ebe8687948041c2dc5f5b7595559a2e (patch) | |
tree | 128c26347a1da185c38baaf5530b992003df0a05 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | a14582d7e2ace05a3583cecff39f2bb4f41f7b79 (diff) |
i965: Convert the build to using automake.
This does introduce a warning by the automake build system, that the
missing-symbols test build is non-portable. That's true -- Mac OS X
can't take something built as a loadable module and just link it as a
library. Of course, we aren't building this on OS X at all, so it
would be nice to be able to suppress it, but I haven't found a way.
Still, the build is going to be much quieter than we have ever had
before, so I think this is a fair tradeoff until we find a way to shut
that warning up.
v2: Put a link in /lib to avoid transition pains for people.
Reviewed-by: Ian Romanick <[email protected]> (v1)
Reviewed-by: Matt Turner <[email protected]> (v1)
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index 3eeac6f91b2..2b20885f30b 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -2,7 +2,7 @@ i965_INCLUDES := \ $(MESA_TOP)/src \ $(MESA_TOP)/src/mesa/drivers/dri/intel -i965_C_SOURCES := \ +i965_C_FILES := \ intel_batchbuffer.c \ intel_blit.c \ intel_buffer_objects.c \ @@ -109,9 +109,9 @@ i965_C_SOURCES := \ gen7_viewport_state.c \ gen7_vs_state.c \ gen7_wm_state.c \ - gen7_wm_surface_state.c \ + gen7_wm_surface_state.c -i965_CXX_SOURCES := \ +i965_CXX_FILES := \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ brw_fs_emit.cpp \ @@ -127,4 +127,4 @@ i965_CXX_SOURCES := \ brw_vec4_reg_allocate.cpp \ brw_vec4_visitor.cpp -i965_ASM_SOURCES := +i965_ASM_FILES := |