diff options
author | Eric Anholt <[email protected]> | 2012-11-06 23:18:38 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-11-12 15:52:42 -0800 |
commit | a665cf1226b80ec52a0c1a4a38378df4389e8ebf (patch) | |
tree | 8d584081c8f73a06dd1a576bad0f4e371d4e648e /src/glsl/Makefile.sources | |
parent | 34d4216e64101a692d5ffb3936e7261a1732953a (diff) |
automake: Merge *_CXX_FILES variables in the glsl build.
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index 0da6958d1a7..6c031b69981 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -15,10 +15,6 @@ LIBGLCPP_GENERATED_FILES = \ # libglsl LIBGLSL_FILES = \ - $(GLSL_SRCDIR)/strtod.c \ - $(GLSL_SRCDIR)/ralloc.c - -LIBGLSL_CXX_FILES = \ $(GLSL_SRCDIR)/ast_expr.cpp \ $(GLSL_SRCDIR)/ast_function.cpp \ $(GLSL_SRCDIR)/ast_to_hir.cpp \ @@ -85,7 +81,10 @@ LIBGLSL_CXX_FILES = \ $(GLSL_SRCDIR)/opt_structure_splitting.cpp \ $(GLSL_SRCDIR)/opt_swizzle_swizzle.cpp \ $(GLSL_SRCDIR)/opt_tree_grafting.cpp \ - $(GLSL_SRCDIR)/s_expression.cpp + $(GLSL_SRCDIR)/s_expression.cpp \ + $(GLSL_SRCDIR)/strtod.c \ + $(GLSL_SRCDIR)/ralloc.c \ + $() # glsl_compiler |