diff options
author | Kenneth Graunke <[email protected]> | 2013-09-03 21:22:17 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-09-09 14:42:33 -0700 |
commit | c845140a20efa6a30a5465301d1f9b4acea79155 (patch) | |
tree | 8b917bbe4fa0eebf9695acee1a6596fc88fcf2c1 /src/mesa/libdricore | |
parent | 76d2f73643f5502d88fdc272447753fde8f6438b (diff) |
glsl: Remove builtin_compiler from the build system.
We don't actually use anything from builtin_function.cpp, so we don't
need to generate it anymore.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Acked-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa/libdricore')
-rw-r--r-- | src/mesa/libdricore/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/libdricore/Makefile.am b/src/mesa/libdricore/Makefile.am index 56ceeb7141a..106c7db9b6c 100644 --- a/src/mesa/libdricore/Makefile.am +++ b/src/mesa/libdricore/Makefile.am @@ -35,9 +35,8 @@ libdricore@VERSION@_la_SOURCES = \ $(MESA_FILES) \ $(LIBGLCPP_GENERATED_FILES) \ $(LIBGLCPP_FILES) \ - $(LIBGLSL_FILES) \ - $(BUILTIN_COMPILER_GENERATED_CXX_FILES) \ - $(top_builddir)/src/glsl/builtin_function.cpp + $(LIBGLSL_GENERATED_CXX_FILES) \ + $(LIBGLSL_FILES) libdricore@VERSION@_la_LDFLAGS = -version-number 1:0 libdricore@VERSION@_la_LIBADD = \ ../program/libdricore_program.la \ |