View Single Post
Posts: 6 | Thanked: 6 times | Joined on Nov 2007
#3
If you have a setup.py file you can add a Makefile with the following in it.

all:
python2.5 setup.py build
clean:
python2.5 setup.py clean --all
install:
python2.5 setup.py install --root $(DESTDIR)
 

The Following User Says Thank You to michaelnt For This Useful Post: