I have two python programs. say a.py and b.py. I build an index in a.py and then run b.py which import a.py.
I want to make a python makefile to install the two porgrams such as I go to my makefile and run :
./install - it installs the project in current directory ./a.py - interprets a.py ./b.py - interprets b.py
Any idea how to make this or pointers where I could find resource for this ?