I didn't answer this question:

> * Duncan Gibson wrote on Thu, Feb 16, 2006 at 10:29:34AM CET:
> >
> > 2. How do I set up the include of lib1/lib1.h in app1 so that I
> >    can configure and make in a directory outside the source tree?

Either
  #include "lib1/lib1.h"
or use
  AM_CPPFLAGS = -I$(srcdir)/lib1
in the Makefile.am, together with
  #include "lib1.h"

Cheers,
Ralf


Reply via email to