I use MakeFiles.
I have a target called "run" which runs the build target. Simplified, it looks like:
prog: ....
...
run: ./prog
./prog
Sit back down. I know this is ingenious, but no need for an standing ovation.
Now, question is -- is there anyway to pass arguments? So hat
make run asdf --> ./prog asdf
make run the dog kicked the cat --> ./prog the dog kicked the cat
Thanks!