Hey I just have a quick question about makefile's. Is there some way to auto run the executable generated from a makefile?
Like if I just type "make" it will compile and build and automatically execute so I can skip the extra step of ./myExecutable
I have down in my notes:
run: prog1
./prog1
But it doesn't seem to work.
Thanks