>>>>> "Linus" == Linus Nordberg <[EMAIL PROTECTED]> writes:
Linus> What's the reason behind putting all `-I' stuff in DEFS?
If you mean in Makefile.in, it is laziness.
Linux> I would like to pass a few -D to m4, but don't want the `-I':s.
Use INCLUDES to hard-code your own options.
You can (and should) use AM_CLFAGS on newere versions.
Linus> DEFS = @DEFS@ -DMY_DEF
Don't redefine DEFS.
Linus> The background is that we want to preprocess some assembly code
Linus> with m4 before assembling it. It needs -DPIC for .lo. Is
Linus> there a way of telling libtool how to do that?
I doubt that there is a way to tell libtool how to do this.
Tom