summaryrefslogtreecommitdiffstats
path: root/src/glsl/Makefile
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
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')
-rw-r--r--src/glsl/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile
index d9ecbc8e3e0..f6c722997e3 100644
--- a/src/glsl/Makefile
+++ b/src/glsl/Makefile
@@ -10,20 +10,20 @@ LIBNAME = glsl
include Makefile.sources
GLCPP_SOURCES = \
- $(LIBGLCPP_GENERATED_SOURCES) \
- $(LIBGLCPP_SOURCES) \
+ $(LIBGLCPP_GENERATED_FILES) \
+ $(LIBGLCPP_FILES) \
ralloc.c \
glcpp/glcpp.c
C_SOURCES = \
- $(LIBGLCPP_GENERATED_SOURCES) \
- $(LIBGLCPP_SOURCES) \
- $(LIBGLSL_SOURCES)
+ $(LIBGLCPP_GENERATED_FILES) \
+ $(LIBGLCPP_FILES) \
+ $(LIBGLSL_FILES)
# common sources for builtin_compiler and libglsl
CXX_SOURCES = \
- $(BUILTIN_COMPILER_GENERATED_CXX_SOURCES) \
- $(LIBGLSL_CXX_SOURCES)
+ $(BUILTIN_COMPILER_GENERATED_CXX_FILES) \
+ $(LIBGLSL_CXX_FILES)
LIBS = \
$(TOP)/src/glsl/libglsl.a
@@ -34,7 +34,7 @@ GLSL2_C_SOURCES = \
../mesa/program/hash_table.c \
../mesa/program/symbol_table.c
GLSL2_CXX_SOURCES = \
- $(GLSL_COMPILER_CXX_SOURCES)
+ $(GLSL_COMPILER_CXX_FILES)
GLSL2_OBJECTS = \
$(GLSL2_C_SOURCES:.c=.o) \