On 2008-01-28 16:10Z, Russell King wrote:
> What do these variable refer to?
> $(make)
> $(src)
> 
> Are these variable defined by the user or are they set by automake as
> default variables?

I don't know about 'automake' (which I guess would have its own
mailing list), but 'make' sets $(MAKE) (note uppercase): see
  5.7.1 How the MAKE Variable Works
in the 'make' manual. Here's a makefile to show variables
defined by 'make':

/tmp[0]$cat >make_variables.make <<'EOF'
.PHONY: all
all:
        @$(foreach z,$(.VARIABLES), echo $(z);)
EOF


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to