I want to add a #define FOO
code in an header file with autotools when I used a specific flag.
The project I have creates a static library using header to use inline functions for example. If I use the -D option, It will be used at the creation time but I'll have to add it at each compilation using this library which is what I want to avoid.
How can I perform this?