Hello all, I'm trying to install my header files in the directory "/usr/local/include/PACKAGE/". Using a very simple "sampleproject" which I created I tried using:
"pkgincludedir_HEADERS = header1.h header2.h" This fails during make install because mkin "/bin/sh ../config/mkinstalldirs /tmp/k/include/" and subsequently copy commands fail because /tmp/k/include/sampleproject" does not exists. I also tried: nobase_include_HEADERS = sampleprocject/header1.h sampleproject2.h but then automake fails with: src/Makefile.am:8: invalid variable `nobase_include_HEADERS' Any pointers anyone?