summaryrefslogtreecommitdiffstats
path: root/src/mesa/Makefile
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2010-10-28 16:31:10 -0700
committerIan Romanick <[email protected]>2011-04-14 12:00:57 -0700
commitd6db9143b6529cdbc5768c256ac3804370496faa (patch)
treeb842147f5259858fd7f84d60856fca6ad5e6e453 /src/mesa/Makefile
parent9c0b233c44106391b543c882c72ac35c23560585 (diff)
ARB prog parser: Compile lexer as C++useful
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r--src/mesa/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index 6059058d0d7..c6258c9f451 100644
--- a/src/mesa/Makefile
+++ b/src/mesa/Makefile
@@ -77,7 +77,7 @@ main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py m
program/program_parse.cpp program/program_parse.tab.h: program/program_parse.y
bison -v -o program/program_parse.cpp --defines=program/program_parse.tab.h $<
-program/lex.yy.c: program/program_lexer.l
+program/program_lexer.cpp: program/program_lexer.l
flex --never-interactive --outfile=$@ $<
######################################################################