# Makefile : recursive linked list class example # CS210 - S'03 # 3/4/03, Ray S. Babcock # OBJS = recur_list.o test_recur_list.o CC = g++ # Uncomment the next line to compile with debugging enabled. # CFLAGS = -g test_recur_list: $(OBJS) $(CC) -o test_recur_list $(OBJS) recur_list.o: recur_list.cpp recur_list.h $(CC) -c recur_list.cpp test_recur_list.o: test_recur_list.cpp recur_list.h $(CC) -c test_recur_list.cpp clean: rm *.o test_recur_list