p1: problem1.c gcc -std=c99 problem1.c -o p1 p2: problem2.c gcc -std=c99 problem2.c -o p2 -lm p3: problem3.c gcc -std=c99 problem3.c -o p3 p4: problem4.c gcc -std=c99 problem4.c -o p4 p5: problem5.c gcc -std=c99 problem5.c -o p5 clean: rm -f p1 p2 p3 p4 p5 ## ## DO NOT CHANGE ANYTHING ABOVE THIS FOR A1 ## submit: ## add code here that creates a tar file of all your .c files and the Makefile