NAME = filespy OFILES = filespy.o CFILES = filespy.c CFLAGS = -g LDFLAGS = -lm $(NAME): $(OFILES) cc $(CFLAGS) $(OFILES) -o $(NAME) $(LDFLAGS)