I have a Makefile.in file that generate a Makefile.am by configure. After that with automake the Makefile.am create the Makefile.
Now i want to add a define in the geneated Makefile. The problem is that in the generated Makefile i found a list of flags in variable CPPFLAGS, but in the definition of CPPFLAGS in the Makefile.in i found only a line that is write in the following way:
CPPFLAGS = @CPPFLAGS@
What does it means @CPPFLAGS@
? And how i can set a new flag in the generated Makefile?
automake
generates Makefile.in from Makefile.am. Thenconfigure
generatesMakefile
fromMakefile.in
. – William Pursell