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