From: Ian Romanick Date: Tue, 1 Mar 2011 23:22:43 +0000 (-0800) Subject: mesa: Fix build breakage caused by c73e6ce X-Git-Tag: mesa-7.11-rc1~1738 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3158cc7df85a8c5bcdb90a7d9ebb62c72b5f052a;p=platform%2Fupstream%2Fmesa.git mesa: Fix build breakage caused by c73e6ce --- diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 48f79a5..10d73f0 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -74,6 +74,12 @@ main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py m main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES2.0 > $@ +program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y + bison -v -d --output=program/program_parse.tab.c $< + +program/lex.yy.c: program/program_lexer.l + flex --never-interactive --outfile=$@ $< + ###################################################################### # Helper libraries used by many drivers: diff --git a/src/mesa/program/Makefile b/src/mesa/program/Makefile deleted file mode 100644 index 400a543..0000000 --- a/src/mesa/program/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -all: program_parse.tab.c lex.yy.c - -program_parse.tab.c program_parse.tab.h: program_parse.y - bison -v -d $< - -lex.yy.c: program_lexer.l - flex --never-interactive $< diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index a8c0bbd..35eaeb7 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -234,11 +234,9 @@ STATETRACKER_SOURCES = \ PROGRAM_SOURCES = \ program/arbprogparse.c \ program/hash_table.c \ - program/lex.yy.c \ program/nvfragparse.c \ program/nvvertparse.c \ program/program.c \ - program/program_parse.tab.c \ program/program_parse_extra.c \ program/prog_cache.c \ program/prog_execute.c \ @@ -254,6 +252,10 @@ PROGRAM_SOURCES = \ program/register_allocate.c \ program/symbol_table.c +PROGRAM_GENERATED_SOURCES = \ + program/lex.yy.c \ + program/program_parse.tab.c + SHADER_CXX_SOURCES = \ program/ir_to_mesa.cpp \ program/sampler.cpp @@ -301,7 +303,7 @@ COMMON_DRIVER_SOURCES = \ # Sources for building non-Gallium drivers -MESA_SOURCES = \ +MESA_SOURCES_FOR_DEPEND = \ $(MAIN_SOURCES) \ $(MATH_SOURCES) \ $(MATH_XFORM_SOURCES) \ @@ -313,6 +315,10 @@ MESA_SOURCES = \ $(COMMON_DRIVER_SOURCES)\ $(ASM_C_SOURCES) +MESA_SOURCES = \ + $(MESA_SOURCES_FOR_DEPEND) \ + $(PROGRAM_GENERATED_SOURCES) + MESA_CXX_SOURCES = \ $(SHADER_CXX_SOURCES) @@ -331,7 +337,7 @@ MESA_GALLIUM_CXX_SOURCES = \ # All the core C sources, for dependency checking ALL_SOURCES = \ - $(MESA_SOURCES) \ + $(MESA_SOURCES_FOR_DEPEND) \ $(MESA_CXX_SOURCES) \ $(MESA_ASM_SOURCES) \ $(STATETRACKER_SOURCES)