Is there anyway I can modify the path for pkginclude_ without actually changing the structure of my project? Heres the directory stucture I have.
My_Project >
include >
banana.h
apple.h
pear.h
Makefile.am
configure
In the Makefile.am I have..
pkginclude_HEADERS=include/*.h
Running make install places the files in..
/usr/include/My_Project/
What I would like to happen is have includes installed in..
/usr/include/My_Project/fruits/
I would like to do this without passing any flags into configure or make and without changing the directory structure on my machine. Is there a way to specifiy this as the default behaviour?
Digging around the ineterweb. Couldn't find the answer, although I may have missed it. I rather dislike autotools docs.