Maybe I am asking a silly question, but is there any way I can tell automake to put my project include files when I do a "make dist
" but not when I do a "make install
"?
Maybe I am not acting the right way, so to make it clearer I will tell what I need.
I need to deploy my applications in an embedded board and I use "
make install
" in a script to create a package that can be copied to the target board.On the other side, I'd like to be able to update my toolchain with my libraries and include files.
In the first situation, I can't have any fat wasting my limited flash memory but just the necessary things to make the application to run.
In the second one, I need to have headers, pkgconfig and all of the stuff needed for development.
How I am supposed to configure my "Makefile.am
" and which rules to expect so that I can reach my goals?
Really thanks.