I have written a small c program and created a Makefile to compile and execute it. Basically, I do the following:
$ make
$ make run
But, my executable requires some arguments, so I would like to specify them this way:
$ make run arg1 arg2
Is it possible to achieve that?