Inside my Makfile I have the following,
smktestrun: smktest @../projects/test.sh
And I call this using:
Make smktestrun <
You could define a variable in Makefile.
smktestrun: smktest @../projects/test.sh ${ARG}
Then the command line of make is:
make smktestrun ARG="something"