From: Matt Turner Date: Tue, 12 Nov 2013 04:08:01 +0000 (-0800) Subject: glsl: Add lex and yacc sources to distribution. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3125cd1f6bf617a61d4f51dddda8b303a2c1078c;p=mesa.git glsl: Add lex and yacc sources to distribution. Since we have manual build rules and list the .c/.cpp files in SOURCES, we need to explicitly list these for distribution. --- diff --git a/src/glsl/Makefile.am b/src/glsl/Makefile.am index df0b6a06397..2b5ba59e7fa 100644 --- a/src/glsl/Makefile.am +++ b/src/glsl/Makefile.am @@ -30,7 +30,11 @@ AM_CPPFLAGS = \ AM_CFLAGS = $(VISIBILITY_CFLAGS) AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS) -EXTRA_DIST = tests glcpp/tests README TODO +EXTRA_DIST = tests glcpp/tests README TODO \ + glsl_lexer.ll \ + glsl_parser.yy \ + glcpp/glcpp-lex.l \ + glcpp/glcpp-parse.y include Makefile.sources