From: Tim-Philipp Müller Date: Fri, 5 May 2006 09:01:52 +0000 (+0000) Subject: gst/parse/Makefile.am: Make 'make -j' proof (see #340698). X-Git-Tag: RELEASE-0_10_6~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a543782d091df0e3138a8edb194907115150e04;p=platform%2Fupstream%2Fgstreamer.git gst/parse/Makefile.am: Make 'make -j' proof (see #340698). Original commit message from CVS: * gst/parse/Makefile.am: Make 'make -j' proof (see #340698). --- diff --git a/ChangeLog b/ChangeLog index cda395f..c3810ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-05-05 Tim-Philipp Müller + * gst/parse/Makefile.am: + Make 'make -j' proof (see #340698). + +2006-05-05 Tim-Philipp Müller + * configure.ac: Require GLib-2.8 here as well. diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index 1690738..9f441b1 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -18,7 +18,7 @@ libgstparse_la_LIBADD = $(GST_ALL_LIBS) noinst_HEADERS = grammar.tab.h grammar.tab.c grammar.tab.h: grammar.y - $(BISON_PATH) -d -v -p_gst_parse__yy $(srcdir)/grammar.y -o grammar.tab.c + $(BISON_PATH) -d -v -p_gst_parse__yy $(srcdir)/grammar.y -o grammar.tab.c; \ mv grammar.tab.c grammar.tab_tmp.c; \ echo '#ifdef HAVE_CONFIG_H' > grammar.tab_tmp2.c; \ echo '#include ' >> grammar.tab_tmp2.c; \ @@ -28,7 +28,7 @@ grammar.tab.c grammar.tab.h: grammar.y mv grammar.tab_tmp2.c grammar.tab.c lex._gst_parse_yy.c: parse.l grammar.tab.h - $(FLEX_PATH) -P_gst_parse_yy $^ + $(FLEX_PATH) -P_gst_parse_yy $^; \ mv lex._gst_parse_yy.c lex._gst_parse_yy_tmp.c; \ echo '#ifdef HAVE_CONFIG_H' > lex._gst_parse_yy_tmp2.c; \ echo '#include ' >> lex._gst_parse_yy_tmp2.c; \