Re: automake with defines

2001-12-21 Thread Marko Mlinar
Alexandre, thanks for your help. Is version 1.5 stable enough, to handle big packages also? Marko

Re: automake with defines

2001-12-21 Thread Marko Mlinar
> Am Fre, 2001-12-21 um 10.12 schrieb Marko Mlinar: > > Alexandre, > > > > thanks for your help. > > Is version 1.5 stable enough, to handle big packages also? > You dare to ask ? :) ups, sorry wrong list ;) > Actually it depends on various factors, but generally speaking yes, it's > not much mo

Re: automake with defines

2001-12-21 Thread Ralf Corsepius
Am Fre, 2001-12-21 um 10.12 schrieb Marko Mlinar: > Alexandre, > > thanks for your help. > Is version 1.5 stable enough, to handle big packages also? You dare to ask ? :) Actually it depends on various factors, but generally speaking yes, it's not much more risky than using other versions of aut

Re: automake with defines

2001-12-21 Thread Alexandre Duret-Lutz
On Fri, Dec 21, 2001 at 08:33:25AM +0100, Marko Mlinar wrote: > Makefile.am: > bin_PROGRAMS=a > a_SOURCES=a.c > a_CFLAGS=-DXXX > automake --version: > automake (GNU automake) 1.4 > > And it does not work. I've searched the Makefile, and it contains only one > occurence of "a_CFLAGS". > Am I doin

Re: automake with defines

2001-12-20 Thread Marko Mlinar
> >>> "Marko" == Marko Mlinar <[EMAIL PROTECTED]> writes: > [...] > Marko> The problem is, each test should be compiled with different defines > [...] > Marko> Basically I would need something like prog_CFLAGS. > > I think something like this should work: > > TESTS = foo bar ... > EXTRA_PROGRAMS

Re: automake with defines

2001-12-20 Thread Alexandre Duret-Lutz
>>> "Marko" == Marko Mlinar <[EMAIL PROTECTED]> writes: [...] Marko> The problem is, each test should be compiled with different defines [...] Marko> Basically I would need something like prog_CFLAGS. I think something like this should work: TESTS = foo bar ... EXTRA_PROGRAMS = foo bar ... foo

automake with defines

2001-12-20 Thread Marko Mlinar
Hi! I am trying to make automated testbench using autoconf & automake. The problem is, each test should be compiled with different defines (e.g. using -D commandline parameter to gcc). Is it possible to do this? I was not able to find this in the manual. Basically I would need something like pr