On Jun 25, 2004, at 5:36 AM, Peter Haworth wrote:
On Thu, 24 Jun 2004 19:31:51 -0400, muppet wrote:
WriteMakefile (
NAME => 'Foo',
OBJECT => qw(Foo$(OBJ_EXT) extrafoo$(OBJ_EXT)
otherfoo($OBJ_EXT)),
);
OBJECT isn't a list, and if it was, you'd need [] around it. Try this
instead:
On Thu, 24 Jun 2004 19:31:51 -0400, muppet wrote:
>WriteMakefile (
> NAME => 'Foo',
> OBJECT => qw(Foo$(OBJ_EXT) extrafoo$(OBJ_EXT) otherfoo($OBJ_EXT)),
>);
OBJECT isn't a list, and if it was, you'd need [] around it. Try this instead:
WriteMakefile (
NAME => 'Foo',
On Jun 24, 2004, at 6:36 PM, Roman Y. Asper wrote:
Ok i did a x-sub Installation for a friend of mine and everything
works fine, now he wants to split his c-file into different modules
but wants to retain a single perl file which references all functions
off the c-file for further use in perl ap
Hey!
Ok i did a x-sub Installation for a friend of mine and everything
works fine, now he wants to split his c-file into different
modules but wants to retain a single perl file which
references all functions off the c-file for further use
in perl application.
Is it enough to include all Modules