Re: How to Convert a makefile to Python Script

2005-04-20 Thread Nick Vargish
[EMAIL PROTECTED] writes: >I am working on a Problem to convert makefile in to a python script. > Are there any Modules? Please try to comment. How about this (untested): cut here import subprocess print ("import os") make = subprocess.Popen(["make", "-n"],stdout=subproces

Re: How to Convert a makefile to Python Script

2005-04-19 Thread rkoida
Thanks For Your Help Regards rkoida -- http://mail.python.org/mailman/listinfo/python-list

Re: How to Convert a makefile to Python Script

2005-04-19 Thread Bengt Richter
On 19 Apr 2005 20:49:31 -0700, [EMAIL PROTECTED] wrote: >Hello All > I am working on a Problem to convert makefile in to a python script. >Are there any Modules? Please try to comment. > >Thanks >rkoida > IIUC, the scons project came to be to implement make functionality in python, so I'd try to