CFLAGS = -std=c99 CC = gcc OBJS = functions.o main.o all: ${OBJS} ${CC} ${OBJS} -o project clean: rm -f ${OBJS} project *~