How can I tell Automake to install arbitrary data files in places I want?
I have some files I need to put in specific places, e.g. "datafile1
", in my project, needs to be copied to "/usr/MyProduct/flash_memory
".
- "
/usr/MyProduct/flash_memory
" is an absolute path that I can't change. - "
datafile1
" is a binary data file that is not "built" bymake
, but just needs to be copied bymake install
. - I can't bear on
make dist
. It needs to be copied bymake install
(its a long explanation, so, please just take this into account). - I rather not use
install-hook
, but prefer to have a more elegant approach (if possible).