makefile command arguments code example
Example: can makefile commands take parameters
make foo=bar target
#use $(foo) to obtain the value of the foo parameter (leave quotes out for string values)
#target is the command name
make foo=bar target
#use $(foo) to obtain the value of the foo parameter (leave quotes out for string values)
#target is the command name