diff options
author | Rob Clark <[email protected]> | 2016-05-14 11:59:26 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-25 16:31:15 -0400 |
commit | 0f982bb67d64673f73096f7c536a5e29756c5c6f (patch) | |
tree | 8ad48ef10dd666b090a5298dbe3e2cf5021a93a7 /src/compiler/Makefile.sources | |
parent | ec434d940d9ade664ed9ddf74760ce1dcc432718 (diff) |
glsl: split out libstandalone
Split standalone glsl_compiler into a libstandalone.la and a thin
main.cpp. This way drivers can re-use the glsl standalone frontend in
their own standalone compilers.
Signed-off-by: Rob Clark <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index b8f2b4950b4..ebc5953eb97 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -138,7 +138,8 @@ LIBGLSL_FILES = \ GLSL_COMPILER_CXX_FILES = \ glsl/standalone_scaffolding.cpp \ glsl/standalone_scaffolding.h \ - glsl/main.cpp + glsl/standalone.cpp \ + glsl/standalone.h # libglsl generated sources LIBGLSL_GENERATED_CXX_FILES = \ |