SRCS = main.c callout.c OBJS = main.o callout.o CC = gcc -g -Wall all: ct ct: $(OBJS) $(CC) $(CFLAGS) -o ct $(OBJS) clean: rm -f *.o ct *~ callout.c: callout.h main.c: callout.h