* NightStrike wrote on Sun, Nov 04, 2007 at 07:28:27PM CET: > There are variables like AM_CFLAGS and AM_LDFLAGS. Is there an > AM_DLLTOOLFLAGS variable that can be used to pass common parameters to > dlltool?
No, but also Automake provides no automatic rule generation in which DLLTOOL is ever used. So if you write your own rule, nothing really prevents you from sticking $(AM_DLLTOOLFLAGS) in there somewhere. And of course you can also AC_SUBST([AM_DLLTOOLFLAGS]) from within configure.ac. Since this variable name matches the namespace reserved by Automake, a future release may happen to use dlltool and may happen to add some meaning to this variable. Consider yourself warned! ;-) Cheers, Ralf
