From: Andrea Zagli Date: Mon, 27 Feb 2012 07:22:04 +0000 (+0100) Subject: Bison and flex must be run as firsts. X-Git-Tag: 0.5.0~2 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=a01a9b92510ca7333e07ece29c4ef81c4351b707;p=reptool%2Flibreptool Bison and flex must be run as firsts. --- diff --git a/src/Makefile.am b/src/Makefile.am index 9f58721..62eefed 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,6 +20,8 @@ rptmarshal.h: reptool_marshal.list $(GLIB_GENMARSHAL) $(GLIB_GENMARSHAL) reptool_marshal.list --header --prefix=_rpt_marshal > $@ libreptool_la_SOURCES = \ + parser.tab.c \ + lexycal.yy.c \ rptobject.c \ rptobjecttext.c \ rptobjectline.c \ @@ -29,9 +31,7 @@ libreptool_la_SOURCES = \ rptreport.c \ rptprint.c \ rptcommon.c \ - rptmarshal.c \ - parser.tab.c \ - lexycal.yy.c + rptmarshal.c libreptool_include_HEADERS = \ libreptool.h \ @@ -46,10 +46,10 @@ libreptool_include_HEADERS = \ rptcommon.h noinst_HEADERS = \ - rptreport_priv.h \ - rptmarshal.h \ parser.tab.h \ - lexycal.yy.h + lexycal.yy.h \ + rptreport_priv.h \ + rptmarshal.h EXTRA_DIST = \ parser.y \