>>>>> "Patrick" == Dahiroc, Patrick <[EMAIL PROTECTED]> writes:
Patrick> ideally ar should create the libraries in $(top_srcdir)/lib Patrick> with the command: ar cru $(top_srcdir)/lib/mylib.a A.o B.o Patrick> C.o. is there way to make automake behave like this? Putting any built object into srcdir is not supported. Patrick> another option is to move or copy the library as they are Patrick> created. You can do it in `all-hook'. Most automake-using packages don't do this though. Instead they use -L options to find the libraries. This is a historical reflection of "GNU style". Tom