summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom@vmware.com>2011-11-24 21:59:06 +0100
committerThomas Hellstrom <thellstrom@vmware.com>2011-11-25 16:38:16 +0100
commit4d04367eca66a85e26f7c0f5d6392823d13880f6 (patch)
treec8bef3fc07d14528947109d9700016b8b989345c /src/gallium/targets
parent404d2f9c866b3ac96834a8274775851440055d13 (diff)
downloadexternal_mesa3d-4d04367eca66a85e26f7c0f5d6392823d13880f6.zip
external_mesa3d-4d04367eca66a85e26f7c0f5d6392823d13880f6.tar.gz
external_mesa3d-4d04367eca66a85e26f7c0f5d6392823d13880f6.tar.bz2
st/xa, xa/vmwgfx: Use XA_EXPORT attribute to indicate global visibility
Also fix up Makefiles to use the default mesa compilation flags. Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Jakob Bornecrants <jakob@vmware.com>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/xa-vmwgfx/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/xa-vmwgfx/Makefile b/src/gallium/targets/xa-vmwgfx/Makefile
index 1f839d2..a4c02d1 100644
--- a/src/gallium/targets/xa-vmwgfx/Makefile
+++ b/src/gallium/targets/xa-vmwgfx/Makefile
@@ -6,7 +6,7 @@ include $(TOP)/configs/current
XA_MAJOR = 0
XA_MINOR = 5
XA_TINY = 0
-XA_CFLAGS = -g -fPIC
+XA_CFLAGS = -Wall -pedantic
XA_INCLUDES= -I$(TOP)/src/gallium/ \
-I$(TOP)/src/gallium/auxiliary \
@@ -45,7 +45,7 @@ endif
##### RULES #####
.c.o:
- $(CC) -c $(XA_CFLAGS) $(XA_INCLUDES) $<
+ $(CC) -c $(XA_CFLAGS) $(CFLAGS) $(XA_INCLUDES) $<
##### TARGETS #####