# Makefile : exam #2 # CS210 - S'03 # 1/30/03, Ray S. Babcock # CC = g++ # Uncomment the next line to compile with debugging enabled. # CFLAGS = -g LDFLAGS = -lm .cpp: $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ OBJS1 = test_six.o test_six: $(OBJS1) $(CC) $(CFLAGS) -o test_six $(OBJS1) test_six.o: test_six.cpp $(CC) $(CFLAGS) -c test_six.cpp