I have very specific instructions:
I am to write a code in c++ that runs from the command line as follows:
make compile
make run file.txt alpha > output.txt
Currently, I know how to write a make file to run the compiled code...
run:
./my_program.exe
But how would I write a makefile such that the make file runs:
./my_program file.txt alpha
When I type:
make run file.txt alpha
??