# Null Object, Iterators, Visitor & Linked List # # Douglas Thrift # # $Id$ CXX = g++34 all: UnitTest UnitTest: UnitTest.cpp DoublyLinkedList.hpp NullNode.hpp Iterator.hpp $(CXX) $(CPPFLAGS) $(CXXFLAGS) UnitTest.cpp -o $@ clean: -rm UnitTest *.core *.exe