From: stephan b. <sg...@us...> - 2004-12-25 00:13:40
|
Update of /cvsroot/pclasses/pclasses2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20575/test Modified Files: Makefile.toc Log Message: Added CType.cpp, FactoryTest.h. Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/test/Makefile.toc,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.toc 24 Dec 2004 23:06:28 -0000 1.4 +++ Makefile.toc 25 Dec 2004 00:13:31 -0000 1.5 @@ -1,11 +1,13 @@ #!/usr/bin/make -f include toc.make -HEADERS = Test.h +HEADERS = Test.h \ + FactoryTest.h DIST_FILES += $(HEADERS) SOURCES = \ + CType.cpp \ FactoryTest.cpp \ IntTypeTest.cpp \ ListTest.cpp \ @@ -14,9 +16,10 @@ StackTest.cpp \ ThreadTest.cpp -DIST_FILES += $(SOURCES) +DIST_FILES += $(SOURCES) $(HEADERS) -OBJECTS = IntTypeTest.o \ +OBJECTS = \ + IntTypeTest.o \ ListTest.o \ PtrTest.o \ QueueTest.o \ |