Mesa (flex-and-bison-required): Generate lexer and parser files for tarball creation process

Ian Romanick idr at kemper.freedesktop.org
Sat Feb 12 00:46:33 UTC 2011


Module: Mesa
Branch: flex-and-bison-required
Commit: 3e3048ee2e880c7bc33afc1a2e62e06b4de700c9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3e3048ee2e880c7bc33afc1a2e62e06b4de700c9

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Fri Feb 11 16:44:11 2011 -0800

Generate lexer and parser files for tarball creation process

---

 Makefile |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 3ff1ae6..a1ab65e 100644
--- a/Makefile
+++ b/Makefile
@@ -420,6 +420,12 @@ LIB_FILES = \
 	$(GLW_FILES)
 
 
+parsers: configure
+	- at touch $(TOP)/configs/current
+	$(MAKE) -C src/glsl glsl_parser.cpp glsl_parser.h glsl_lexer.cpp
+	$(MAKE) -C src/glsl/glcpp glcpp-lex.c glcpp-parse.c glcpp-parse.h
+	$(MAKE) -C src/mesa/program lex.yy.c program_parse.tab.c program_parse.tab.h
+
 # Everything for new a Mesa release:
 ARCHIVES = $(LIB_NAME).tar.gz \
 	$(LIB_NAME).tar.bz2 \
@@ -428,7 +434,7 @@ ARCHIVES = $(LIB_NAME).tar.gz \
 	$(GLUT_NAME).tar.bz2 \
 	$(GLUT_NAME).zip
 
-tarballs: rm_depend configure aclocal.m4 md5
+tarballs: md5
 	rm -f ../$(LIB_NAME).tar
 
 # Helper for autoconf builds
@@ -438,7 +444,7 @@ AUTOCONF = autoconf
 AC_FLAGS =
 aclocal.m4: configure.ac acinclude.m4
 	$(ACLOCAL) $(ACLOCAL_FLAGS)
-configure: configure.ac aclocal.m4 acinclude.m4
+configure: rm_depend configure.ac aclocal.m4 acinclude.m4
 	$(AUTOCONF) $(AC_FLAGS)
 
 rm_depend:
@@ -447,7 +453,7 @@ rm_depend:
 		touch $$dep ; \
 	done
 
-rm_config:
+rm_config: parsers
 	rm -f configs/current
 	rm -f configs/autoconf
 
@@ -457,7 +463,7 @@ $(LIB_NAME).tar: rm_config
 $(LIB_NAME).tar.gz: $(LIB_NAME).tar
 	gzip --stdout --best $(LIB_NAME).tar > $(LIB_NAME).tar.gz
 
-$(GLUT_NAME).tar:
+$(GLUT_NAME).tar: rm_depend
 	cd .. ; tar -cf $(DIRECTORY)/$(GLUT_NAME).tar $(GLUT_FILES)
 
 $(GLUT_NAME).tar.gz: $(GLUT_NAME).tar




More information about the mesa-commit mailing list