diff options
author | Connor Abbott <[email protected]> | 2014-07-30 15:33:32 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:18:57 -0800 |
commit | b5ca34a211c801c2cf2fa852d7be1d0b2eede842 (patch) | |
tree | e2851a1af69d1c4f7411e1d53c3c87707322747e /src/glsl/Makefile.am | |
parent | 77e7a00267eeb3942ccf8f8954919774c1bc4e78 (diff) |
nir: add a simple C wrapper around glsl_types.h
v2: Jason Ekstrand <[email protected]>:
whitespace and automake fixes
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/glsl/Makefile.am')
-rw-r--r-- | src/glsl/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am index 9a3131738da..7f625738858 100644 --- a/src/glsl/Makefile.am +++ b/src/glsl/Makefile.am @@ -126,7 +126,8 @@ libglsl_la_SOURCES = \ glsl_lexer.cpp \ glsl_parser.cpp \ glsl_parser.h \ - $(LIBGLSL_FILES) + $(LIBGLSL_FILES) \ + $(NIR_FILES) glsl_compiler_SOURCES = \ $(top_srcdir)/src/mesa/main/imports.c \ |