diff options
author | Ian Romanick <[email protected]> | 2010-07-13 17:36:13 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-07-19 14:50:43 -0700 |
commit | 8fe8a814b0c746f0f655a67f8755f9dee858d230 (patch) | |
tree | 0ce408dbe3125ee1081c12e53de983219bfaffb3 /src/glsl/Makefile | |
parent | a48a2b66e86d6d1c2fbb24bc60df2fdef42b3086 (diff) |
linker: First bits of intrastage, intershader function linking
This handles the easy case of linking a function in a different
compilation unit that doesn't call any functions or reference any
global variables.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index c09735dff61..497f6ca1a0c 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -53,6 +53,7 @@ CXX_SOURCES = \ ir_vec_index_to_cond_assign.cpp \ ir_vec_index_to_swizzle.cpp \ linker.cpp \ + link_functions.cpp \ s_expression.cpp LIBS = \ |