I need to compile ICU using it's own build mechanism. Therefore the question:
How can I run a Makefile from setup.py? Obviously, I only want it to run during the build process, not while installing.
|
|
|
The method I normally use is to override the command in question:
This took me quite a while to figure out from the Note: you can also use this |
||||
|
|
If you are building a python extension you can use the distutils/setuptools Extensions. For example:
There are lots of options to build extensions, see the docs: http://docs.python.org/distutils/setupscript.html |
|||
|
|
It is possible to build C libraries with distutils (see the libraries parameter of distutils.core.setup), but you may have to duplicate options that are already in the Makefile, so the easiest thing to do is probably to extend the install command as explained in other replies and call make with the subprocess module. |
|||
|
|