From: stephan b. <sg...@us...> - 2005-01-03 18:28:37
|
Update of /cvsroot/pclasses/pclasses2/src/IO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17191/src/IO Modified Files: Makefile.toc Log Message: Added ZLib.o if zlib is found by configure. Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/IO/Makefile.toc,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.toc 30 Dec 2004 19:29:39 -0000 1.5 +++ Makefile.toc 3 Jan 2005 18:27:55 -0000 1.6 @@ -7,8 +7,15 @@ OBJECTS = IODevice.o \ IOError.o \ + IOFilter.o \ URL.o +ifeq (1,$(PCLASSES_HAVE_ZLIB)) + OBJECTS += ZLib.o +endif + +# StringDevice.o + CLEAN_FILES += $(OBJECTS) build_libs = 1 |