Hey all,
I've got a project that has 24 Makefile.am files. At the top of all of
them at the moment, I've got:
AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
Which seems a bit ridiculous. I would love to inject those two into
DEFAULT_INCLUDES, but I can't find any handles to do t
Hello Monty,
* Monty Taylor wrote on Thu, Jul 24, 2008 at 08:43:39PM CEST:
>
> I've got a project that has 24 Makefile.am files. At the top of all of
> them at the moment, I've got:
>
> AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
Put
AC_SUBST([AM_CPPFLAGS], ['I$(top_buildd
Ralf Wildenhues wrote:
> Hello Monty,
>
> * Monty Taylor wrote on Thu, Jul 24, 2008 at 08:43:39PM CEST:
>> I've got a project that has 24 Makefile.am files. At the top of all of
>> them at the moment, I've got:
>>
>> AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
>
> Put
> AC_S
Hi,
Monty Taylor <[EMAIL PROTECTED]> writes:
> I've got a project that has 24 Makefile.am files. At the top of all of
> them at the moment, I've got:
>
> AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
[snip]
> PS. Yes...I know the -I$(top_builddir)/include is ridiculous... I
> in
Raja R Harinath wrote:
> Hi,
>
> Monty Taylor <[EMAIL PROTECTED]> writes:
>
>> I've got a project that has 24 Makefile.am files. At the top of all of
>> them at the moment, I've got:
>>
>> AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
> [snip]
>> PS. Yes...I know the -I$(top_bui