Edit:
This is different than the other question because the variables that I put on the unix command line will be "p2 -s input.txt", where my main.c file will manipulate them.
So normally when working with command line arguments, my code would be something like:
int main(int argc, char argv[])
{
printf("%d", argc);
return 0;
}
How would I do this with a makefile?