# Makefile : loops # 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 $@