Александр Нескажу wrote:
> How can I put all object files (*.o) in separate directory? Like 
> myproject/obj/. Not for shared library over libtool.

Use a "VPATH" build.  Create a directory specifically for the build
and the compile options that you prefer and then reference the
configure script by a path to it.

  mkdir obj
  cd obj
  ../configure CFLAGS=-g
  make

Bob


_______________________________________________
Autoconf mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to