summaryrefslogtreecommitdiffstats
path: root/src/glsl/Makefile.sources
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2012-01-28 20:13:51 -0500
committerMatt Turner <[email protected]>2012-01-30 21:09:25 -0500
commit4ff8fd93e8e91672bb02543ecaa0c6e462a87551 (patch)
treeed4e93f110d53aad070decb8c5bd00690bddb4b1 /src/glsl/Makefile.sources
parent275ac7e5c1fd6c1847a428192fe259e50690fced (diff)
glsl: rename Makefile.sources' _SOURCES variables
automake uses variables named *_SOURCES. Reviewed-by: Eric Anholt <[email protected]> Tested-by: Eric Anholt <[email protected]> Signed-off-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r--src/glsl/Makefile.sources18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources
index 5e80af297c0..06728daf763 100644
--- a/src/glsl/Makefile.sources
+++ b/src/glsl/Makefile.sources
@@ -2,20 +2,20 @@
# libglcpp
-LIBGLCPP_SOURCES := \
+LIBGLCPP_FILES := \
glcpp/pp.c
-LIBGLCPP_GENERATED_SOURCES := \
+LIBGLCPP_GENERATED_FILES := \
glcpp/glcpp-lex.c \
glcpp/glcpp-parse.c
# libglsl
-LIBGLSL_SOURCES := \
+LIBGLSL_FILES := \
strtod.c \
ralloc.c
-LIBGLSL_CXX_SOURCES := \
+LIBGLSL_CXX_FILES := \
ast_expr.cpp \
ast_function.cpp \
ast_to_hir.cpp \
@@ -82,7 +82,7 @@ LIBGLSL_CXX_SOURCES := \
# glsl_compiler
-GLSL_COMPILER_CXX_SOURCES := \
+GLSL_COMPILER_CXX_FILES := \
standalone_scaffolding.cpp \
main.cpp
@@ -92,14 +92,14 @@ GLSL_COMPILER_CXX_SOURCES := \
# For this to work, a dummy version of builtin_function.cpp,
# builtin_stubs.cpp, is used.
-BUILTIN_COMPILER_CXX_SOURCES := \
+BUILTIN_COMPILER_CXX_FILES := \
builtin_stubs.cpp
-BUILTIN_COMPILER_GENERATED_CXX_SOURCES := \
+BUILTIN_COMPILER_GENERATED_CXX_FILES := \
glsl_lexer.cpp \
glsl_parser.cpp
# libglsl generated sources
-LIBGLSL_GENERATED_CXX_SOURCES := \
- $(BUILTIN_COMPILER_GENERATED_CXX_SOURCES) \
+LIBGLSL_GENERATED_CXX_FILES := \
+ $(BUILTIN_COMPILER_GENERATED_CXX_FILES) \
builtin_function.cpp