1 2 3 4 5 6 7 8 9 10
PROG=main.c all: $(PROG) gcc -std=c99 -Wall -Werror $(PROG) noW: $(PROG) gcc $(PROG) debug: $(PROG) gcc -g -lm $(PROG)