My directory set up:
libone
one.c
one.h
Makefile.am
libtwo
two.c #includes one.h
two.h
Makefile.am
...
Makefile.am
configure.ac
...
Now when I do autoreconf -fvi and configure and make, I get the error from two.c: could not find one.h. How do I setup the include paths in Makefile.am's? Any help appreciated.