pyshout: make fails

Miki Tebeka tebeka at cs.bgu.ac.il
Thu May 1 03:33:11 EDT 2003


Hello Florian,

> The README tells me:
> To compile, copy the Makefile.pre.in from your Python installation and type
> make -f Makefile.pre.in boot
> make
> 
> When i do this i get:
> root at grooveway:/usr/src/pyshout-0.0.6# make -f Makefile.pre.in boot
> make: *** No rule to make target `boot'.  Stop.
Looks like it's very old. Try using the new building system with distutils:
--- setup.py ---
from distutils.core import setup, Extension
setup(name="pyshout", version="0.0.6",
      ext_modules=[Extension("pyshout", ["pyshoutmodule.c"])])
--- setup.py ---
And run 'python setup.py build'
However it looks very old and didn't compile on my Mandrake.

> TIA for your help!
No problems.

HTH.
Miki




More information about the Python-list mailing list