I am creating a library that is built with automake. The way that I >think< this should work is:
Build the library with the command: make Check the build with the command: make check Install the library to the prefix: make install Check the installation with the command: make installcheck The problem I'm having is that the programs installcheck uses to test the library can only be build after the 'make install' but the Makefile automake produces wants to build them as a dependency of the 'all' target. This, of course, fails since the library isn't installed yet. I've looked through the documentation but I haven't seen anything that addresses this case. Is automake able to do this? Thanks, --glenn