CC = gcc
OBJ = cline.o functions.o

cline: ${OBJ}
	${CC} -o cline ${OBJ}

%.o: %.c
	${CC} -c -std=c99 $<

clean:
	rm *.o
