Re: QUESTION: is bison recursive?

2014-07-28 Thread Sean Nakasone
thanks Valentin, i wasnt aware of the -p option. Sent from my iPhone > On Jul 27, 2014, at 11:29 PM, Valentin Tolmer > wrote: > > Hello, > > From a make -p (to display implicit rules), I get > %.c: %.y >$(YACC.y) $< >mv -f y.tab.c $@ > > In most systems, yacc is aliased to b

Re: QUESTION: is bison recursive?

2014-07-28 Thread Valentin Tolmer
Hello, From a make -p (to display implicit rules), I get %.c: %.y $(YACC.y) $< mv -f y.tab.c $@ In most systems, yacc is aliased to bison when installed. Cheers, On Mon, Jul 28, 2014 at 9:12 AM, Tadej Borovšak wrote: > Dne 27.07.2014 (ned) ob 20:29 +0200 je Hans Aberg napisa

Re: QUESTION: is bison recursive?

2014-07-28 Thread sean nakasone
I found the implicit rule in the Makefile. I believe it's calling a bison in the tests subfolder. Thanks for your help Tadej and Hans On Sun, 7/27/14, Tadej Borovšak wrote: Subject: Re: QUESTION: is bison recursive? To: help-bison@gnu.org Date: S

Re: QUESTION: is bison recursive?

2014-07-28 Thread Tadej Borovšak
Dne 27.07.2014 (ned) ob 20:29 +0200 je Hans Aberg napisal(a): > On 27 Jul 2014, at 02:35, sean nakasone wrote: > > > Anyone know if bison is recursive? Meaning, does the bison build call > > bison? > > Yes, the file src/parse-gram.y is used to make the Bison parser. > > > The reason I'm askin