Re: Including more than 1 c-File

2004-06-25 Thread muppet
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:

Re: Including more than 1 c-File

2004-06-25 Thread Peter Haworth
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',

Re: Including more than 1 c-File

2004-06-24 Thread muppet
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

Including more than 1 c-File

2004-06-24 Thread Roman Y. Asper
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