Re: How to execute a makefile from LINUX system.

2008-10-21 Thread Chris Rebert
On Mon, Oct 20, 2008 at 10:32 PM, gaurav kashyap [EMAIL PROTECTED] wrote: Hi all, I am using Link-41b parser in my program. The windows version of it has an .exe file that can be executed using os.system command On Linux version,I have a makefile. so my question is: How to run the makefile

Re: How to execute a makefile from LINUX system.

2008-10-21 Thread gaurav kashyap
Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: How to execute a makefile from LINUX system.

2008-10-21 Thread Ben Finney
gaurav kashyap [EMAIL PROTECTED] writes: How to run the makefile using some python function. A makefile is not a program to be run; it contains a declarative (*not* procedural) data set for the ‘make’ program. You need to invoke the ‘make’ command, tell it which file to read, and specify which

How to execute a makefile from LINUX system.

2008-10-20 Thread gaurav kashyap
Hi all, I am using Link-41b parser in my program. The windows version of it has an .exe file that can be executed using os.system command On Linux version,I have a makefile. so my question is: How to run the makefile using some python function. Thanks --