SRCS = RefCounted.cpp RefCountedPart.cpp RefCountedCycles.cpp
TESTSRCS = gc.cpp TestRefCounted.cpp TestRefCountedPart.cpp TestRefCountedCycles.cpp

CXX = g++
CXXFLAGS =

test: clean
	$(CXX) $(SRCS) $(TESTSRCS) $(CXXFLAGS) /usr/local/lib/libcppunit.a -o testgc
	./testgc
clean:
	rm -f testgc
