diff options
author | Dylan Noblesmith <[email protected]> | 2012-04-13 20:36:39 +0000 |
---|---|---|
committer | Dylan Noblesmith <[email protected]> | 2012-04-29 11:17:47 +0000 |
commit | e4c97f1e607f857fb7f397f9e00f37c00ffff295 (patch) | |
tree | e744ae390a63e4cef76d0184aa30b376a87bb613 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | e372aa69494469d6c43c315b5c39355dece65dcf (diff) |
autoconf: pass -Wall to automake
And fix these warning that appear at autoreconf time:
"`:='-style assignments are not portable"
v2: Fix the recently-converted-to-automake r600.
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 44a6c8f30a2..c564d95d44b 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -1,8 +1,8 @@ -i965_INCLUDES := \ +i965_INCLUDES = \ $(MESA_TOP)/src \ $(MESA_TOP)/src/mesa/drivers/dri/intel -i965_C_FILES := \ +i965_C_FILES = \ intel_batchbuffer.c \ intel_blit.c \ intel_buffer_objects.c \ @@ -111,7 +111,7 @@ i965_C_FILES := \ gen7_wm_state.c \ gen7_wm_surface_state.c -i965_CXX_FILES := \ +i965_CXX_FILES = \ brw_cubemap_normalize.cpp \ brw_fs.cpp \ brw_fs_cfg.cpp \ @@ -129,4 +129,4 @@ i965_CXX_FILES := \ brw_vec4_reg_allocate.cpp \ brw_vec4_visitor.cpp -i965_ASM_FILES := +i965_ASM_FILES = |