diff options
author | Brian Paul <[email protected]> | 2010-01-15 09:16:26 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-15 09:16:34 -0700 |
commit | f97eeeec6b9f8a979f9452e2dfdab86ccb058b64 (patch) | |
tree | 399efd580b8da71ae2c0cdbb00a82c05ed1a18e5 /src | |
parent | 8b29d39e99185d94a1fddafbe8b2ab0856fcdcc0 (diff) |
llvmpipe: add extra flags to DEFINES, no CFLAGS
Doesn't make any real difference but -D flags are put into DEFINES
everywhere else.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/llvmpipe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/Makefile b/src/gallium/drivers/llvmpipe/Makefile index 264999a7cea..3d8d88179a9 100644 --- a/src/gallium/drivers/llvmpipe/Makefile +++ b/src/gallium/drivers/llvmpipe/Makefile @@ -3,7 +3,7 @@ include $(TOP)/configs/current LIBNAME = llvmpipe -CFLAGS += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS +DEFINES += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS C_SOURCES = \ lp_scene.c \ |