autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: using content of an include file in configure.ac ...


From: Ufuk Utku Turuncoglu (BE)
Subject: Re: using content of an include file in configure.ac ...
Date: Fri, 29 Apr 2011 18:02:44 +0200
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.17) Gecko/20110414 Lightning/1.0b2 Thunderbird/3.1.10

Hi,

Thanks for your help. Okay, i can add the following line into Makefile.in,

@DO_COMPILE_LIBEXT_TRUE@ include @LIB_PREFIX@/def.ex

and it solves the problem but i just wonder that the automake solution. I think that automake will be much more generic solution. Do you have any idea about implementing that kind of logic in automake?

Thanks again,

--ufuk

On 4/29/11 5:04 PM, Eric Blake wrote:
On 04/29/2011 09:08 AM, address@hidden wrote:
Hi,

I have an include file (belongs to an external library, defs.mk) that
contains bunch of definitions such as,

F90COMPILER=mpif90
F90LINKER=mpif90
F90COMPILEOPTS=-O -fPIC -m64 -mcmodel=small -threads  -openmp
So this is a file that you want included in your Makefile, right?

in it and i just want to use these definitions in the configure.ac file
without hard coding them. Is there any specific autoconf macro to do that?
No need for an autoconf macro.  If you are using automake, then this is
an automake question (but yes, automake has support for including
makefile fragments in your Makefile.am).  If you are not using automake,
then write the same include statement in your Makefile.in that you were
used to seeing in your Makefile, and autoconf won't care (autoconf just
substitutes the @text@ markers in Makefile.in, it doesn't do any parsing
of those contents; and automake parses Makefile.am contents to create
Makefile.in).



_______________________________________________
Autoconf mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/autoconf



reply via email to

[Prev in Thread] Current Thread [Next in Thread]