glsl: Rename .lpp to .ll and .ypp to .yy.

SCons has built-in support for .ll and .yy, but not .lpp and .ypp. Since
there's no real benefit to using the old names, change them.
This commit is contained in:
Kenneth Graunke 2011-03-01 15:13:04 -08:00
parent ff0f36f59d
commit 80ec97af79
3 changed files with 2 additions and 2 deletions

View file

@ -191,10 +191,10 @@ $(DRICORE_OBJ_DIR)/%.o : %.c
@mkdir -p $(dir $@)
$(CC) -c $(INCLUDES) $(DRI_CFLAGS) $(DEFINES) $< -o $@
glsl_lexer.cpp: glsl_lexer.lpp
glsl_lexer.cpp: glsl_lexer.ll
flex --nounistd -o$@ $<
glsl_parser.cpp: glsl_parser.ypp
glsl_parser.cpp: glsl_parser.yy
bison -v -o "$@" -p "_mesa_glsl_" --defines=glsl_parser.h $<
glcpp/glcpp-lex.c: glcpp/glcpp-lex.l