![]() |
Blitz Bugs : |
From: Sebastian Dransfeld (sebastian.dransfeld_at_[hidden])
Date: 2003-02-19 12:11:29
On Wed, 2003-02-19 at 17:31, Patrick Guio wrote:
> On Wed, 19 Feb 2003, Sebastian Dransfeld wrote:
>
> Hi Sebastian,
>
> These are rules to build .h and .cc files. For example
>
> $(top_srcdir)/blitz/array/bops.cc: genarrbops
>
> means that to update the target $(top_srcdir)/blitz/array/bops.cc, the
> program ./genarrbops is executed. Naturally the program genarrbops has
> been build using the dependence
>
> noinst_PROGRAMS = genarrbops
> genarrbops_SOURCES = genarrbops.cpp
>
> Looking at the error message you get, it looks like the $< is not replaced
> by genarrbops.
> Which make program are you using? I suggest you should use the GNU make
> program.
>
> Hope it helps.
>
> Cheers,
>
> Patrick
I use gcc 3.2, GNU make, automake 1.7 and autoconf 2.5
cvs update; autoreconf -i -v -f; ./configure --with-cxx=gcc; make
Hm. Seems that it works now.
Sebastian