# Makefile all: main main: test49.o gcc -o test49 test49.o -std=c99 test49.o: test49.c gcc -c test49.c -std=c99 .PHONY: clean clean: rm test49.o