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