diff options
author | Connor Abbott <[email protected]> | 2014-07-31 16:16:23 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:18:58 -0800 |
commit | 2812e5de93b3bddc4fea9fc99c38155303887ecd (patch) | |
tree | 61a6acd7126117546d20724afc84b1fd577960ca /src/glsl/Makefile.sources | |
parent | f521a3c543ab1775603e1ad85c72e77812e039b5 (diff) |
nir: add core helper functions
These include functions for adding and removing various bits of IR and
helpers for iterating over all the sources and destinations of an
instruction. This is similar to ir.cpp.
v2: Jason Ekstrand <[email protected]>:
whitespace and automake fixes
Diffstat (limited to 'src/glsl/Makefile.sources')
-rw-r--r-- | src/glsl/Makefile.sources | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.sources index e8eedd14d01..b9652d27d70 100644 --- a/src/glsl/Makefile.sources +++ b/src/glsl/Makefile.sources @@ -14,9 +14,13 @@ LIBGLCPP_GENERATED_FILES = \ $(GLSL_BUILDDIR)/glcpp/glcpp-parse.c NIR_FILES = \ - $(GLSL_SRCDIR)/nir/nir_intrinsics.c \ - $(GLSL_SRCDIR)/nir/nir_opcodes.c \ - $(GLSL_SRCDIR)/nir/nir_types.cpp + $(GLSL_SRCDIR)/nir/nir.c \ + $(GLSL_SRCDIR)/nir/nir.h \ + $(GLSL_SRCDIR)/nir/nir_intrinsics.c \ + $(GLSL_SRCDIR)/nir/nir_intrinsics.h \ + $(GLSL_SRCDIR)/nir/nir_opcodes.c \ + $(GLSL_SRCDIR)/nir/nir_opcodes.h \ + $(GLSL_SRCDIR)/nir/nir_types.cpp # libglsl |