Hi all,
I would like to call a makefile with a particular variable and value so that the variable is used to make decisions inside the makefile.
Thanks
You can use an environment variable:
$cat Makefile something: @echo ${MY_VAR}
Then you can do something like:
$ MY_VAR="DATA" make DATA $