# Makefile : integer stack class using array example # CS210 - S'03 # 3/4/03, Ray S. Babcock # OBJS = IntStack.o TestIntStack.o CC = g++ # Uncomment the next line to compile with debugging enabled. # CFLAGS = -g TestIntStack: $(OBJS) $(CC) -o TestIntStack $(OBJS) IntStack.o: IntStack.cpp IntStack.h $(CC) -c IntStack.cpp TestIntStack.o: TestIntStack.cpp IntStack.h $(CC) -c TestIntStack.cpp clean: rm *.o TestIntStack