Re: Conditional compilation of program

2004-02-15 Thread Alexandre Duret-Lutz
>>> "Jose" == Jose Roman Bilbao <[EMAIL PROTECTED]> writes: Jose> Hi, Jose> I have read on the Automake manual that to conditionally build programs Jose> I need to write all the optional names in EXTRA_PROGRAMS and substitute Jose> from autoconf in bin_PROGRAMS, well, I have written this in

Re: Conditional compilation of program (SOLVED)

2004-02-09 Thread Jose Roman Bilbao
On Mon, 2004-02-09 at 12:43, Jose Roman Bilbao wrote: > Hi, > > I have read on the Automake manual that to conditionally build programs > I need to write all the optional names in EXTRA_PROGRAMS and substitute > from autoconf in bin_PROGRAMS, well, I have written this in > configure.in: > > PHAN

Conditional compilation of program

2004-02-09 Thread Jose Roman Bilbao
Hi, I have read on the Automake manual that to conditionally build programs I need to write all the optional names in EXTRA_PROGRAMS and substitute from autoconf in bin_PROGRAMS, well, I have written this in configure.in: PHAN3D = phan3D AC_SUBST(PHAN3D) and this in the conditional program's Ma