diff options
author | Thomas Hellstrom <[email protected]> | 2011-11-24 21:59:06 +0100 |
---|---|---|
committer | Thomas Hellstrom <[email protected]> | 2011-11-25 16:38:16 +0100 |
commit | 4d04367eca66a85e26f7c0f5d6392823d13880f6 (patch) | |
tree | c8bef3fc07d14528947109d9700016b8b989345c /src/gallium/targets | |
parent | 404d2f9c866b3ac96834a8274775851440055d13 (diff) |
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 <[email protected]>
Reviewed-by: Jakob Bornecrants <[email protected]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | src/gallium/targets/xa-vmwgfx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/targets/xa-vmwgfx/Makefile b/src/gallium/targets/xa-vmwgfx/Makefile index 1f839d26bff..a4c02d1bca0 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 ##### |