What's the correct way to add a project that is a CFFI wrapper around a library?
In this case, I'd like to submit cephes.cl, a wrapper for the SciPy version of the Cephes Mathematical Library. To use it, the included C library needs to be compiled for each OS/Platform. Whilst a compiled of the original Cephes library is available on some Linux platforms, the enhanced version from SciPy is not and must be built. It should be a matter of just adding a target to the makefile and setting the optimisation and linker options. I.e. the code itself should build everywhere.
If I submit this as is, the build will fail because libmd won't be found. What's the best way to proceed?