I'm using Inline::C to let me write tests for a C routines I'm developing. I have small test wrapper C code in my perl, and it links against a library. However, I frequently tweak and rebuild me library without changing my Inline C.
Is it possible to tell Inline::C that the C code "depends" on a library, so that it will automatically rebuild (and hence relink) the Inline code if the library changes. I realise one solution would be to make my library a shared object, but I don't want to do that. (because ultimately it's for writing other C programs with, and they are going to staticly link against it) Nicholas Clark
