ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/ccscs20/GNUmakefile
Revision: 1
Committed: 2004-05-12T23:36:53-07:00 (21 years, 1 month ago) by Douglas Thrift
File size: 244 byte(s)
Log Message:
w00t!

File Contents

# User Rev Content
1 Douglas Thrift 1 # Null Object, Iterators, Visitor & Linked List
2     #
3     # Douglas Thrift
4     #
5     # $Id$
6    
7     all: UnitTest
8    
9     UnitTest: UnitTest.cpp DoublyLinkedList.hpp NullNode.hpp Node.hpp Iterator.hpp
10     $(CXX) $(CPPFLAGS) $(CXXFLAGS) UnitTest.cpp -o $@
11    
12     clean:
13     -rm UnitTest