On 11/14/06, Benoit Sigoure <[EMAIL PROTECTED]> wrote:
Hello,
bin_PROGRAMS = foo
foo_SOURCES = foo.hh foo.cc
BUILT_SOURCES = foo.hh
foo.hh: foo.gen
cp foo.gen foo.hh
CLEANFILES = foo.hh
EXTRA_DIST = foo.gen
--
Quoting "Paulo J. Matos" <[EMAIL PROTECTED]>:
Hello,
I'm quite curious how can I with autotools integrate a code generator
during the make process. For example:
a generator receives as input .gen files and produces .hh files which
are then used for compilation. How can I integrate this generator