In Makefile.in
I see variable definition where an external variable name is enclosed between two @
symbols
# @configure_input@
package = @PACKAGE_NAME@
Where those external variables come from? Also, I couldn't find in GNU manual what does exactly enclosing a variable between two @
symbols mean? Is it something specific to Makefile.in?
Thank you.