diff options
author | Ian Romanick <[email protected]> | 2011-01-27 17:51:55 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-01-31 15:32:55 -0800 |
commit | bf9850db2221384f1b92b034391f7149c74bf10e (patch) | |
tree | efcd4e82b40f2795f65e07011374a59b9d17de3e /src/glsl/Makefile | |
parent | 09e15ac76a6efb17148467671508f171658765d9 (diff) |
glsl: Fix dependencies / linkage for glsl_compiler
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index 8316dfbe7c9..4f307422c27 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -148,8 +148,8 @@ install: ##### RULES ##### -glsl_compiler: $(GLSL2_OBJECTS) libglsl.a - $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) $(LIBS) -o $@ +glsl_compiler: $(GLSL2_OBJECTS) libglsl.a builtin_stubs.o + $(APP_CXX) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLSL2_OBJECTS) builtin_stubs.o $(LIBS) -o $@ glcpp/glcpp: $(GLCPP_OBJECTS) libglsl.a $(APP_CC) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $(GLCPP_OBJECTS) $(LIBS) -o $@ |