On 04/29/2011 09:08 AM, u.utku.turuncoglu@xxxxxxxxxxxxx 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). -- Eric Blake eblake@xxxxxxxxxx +1-801-349-2682 Libvirt virtualization library http://libvirt.org
Attachment:
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Autoconf mailing list Autoconf@xxxxxxx https://lists.gnu.org/mailman/listinfo/autoconf