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.
This commit is contained in:
Matt Turner 2013-11-11 20:08:01 -08:00
parent 55afbcc661
commit 3125cd1f6b
1 changed files with 5 additions and 1 deletions

View File

@ -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