From: stephan b. <sg...@us...> - 2005-01-18 17:47:42
|
Update of /cvsroot/pclasses/pclasses2/src/Net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30932 Modified Files: Makefile.toc Log Message: added missing files Index: Makefile.toc =================================================================== RCS file: /cvsroot/pclasses/pclasses2/src/Net/Makefile.toc,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.toc 24 Dec 2004 23:06:26 -0000 1.5 +++ Makefile.toc 18 Jan 2005 17:47:30 -0000 1.6 @@ -6,33 +6,32 @@ DIST_FILES += $(HEADERS) INSTALL_PACKAGE_HEADERS += $(HEADERS) -SOURCES = InetAddress.cpp \ +SOURCES = \ + HTTPClient.cpp \ + HTTPHeader.cpp \ + InetAddress.cpp \ InetSocket.cpp \ NetworkAddress.cpp \ + RTSPHeader.cpp \ + RTSPSocket.cpp \ Socket.cpp DIST_FILES += $(SOURCES) -OBJECTS = InetAddress.o \ - InetSocket.o \ - NetworkAddress.o \ - Socket.o +OBJECTS = $(patsubst %.cpp,%.o,$(SOURCES)) CLEAN_FILES += $(OBJECTS) -build_libs = 1 LIBNAME = lib$(LIBPNET_BASENAME) -ifeq (1,$(build_libs)) - STATIC_LIBS = $(LIBNAME) - SHARED_LIBS = $(LIBNAME) - $(LIBNAME)_a_OBJECTS = $(OBJECTS) - $(LIBNAME)_so_OBJECTS = $($(LIBNAME)_a_OBJECTS) - $(LIBNAME)_so_VERSION = $(PACKAGE_VERSION) - # $(LIBNAME)_so_LDADD = - include $(TOC_MAKESDIR)/SHARED_LIBS.make - include $(TOC_MAKESDIR)/STATIC_LIBS.make +STATIC_LIBS = $(LIBNAME) +SHARED_LIBS = $(LIBNAME) +$(LIBNAME)_a_OBJECTS = $(OBJECTS) +$(LIBNAME)_so_OBJECTS = $($(LIBNAME)_a_OBJECTS) +$(LIBNAME)_so_VERSION = $(PACKAGE_VERSION) +# $(LIBNAME)_so_LDADD = +include $(TOC_MAKESDIR)/SHARED_LIBS.make +include $(TOC_MAKESDIR)/STATIC_LIBS.make SHARED_LIBS: STATIC_LIBS -endif all: SHARED_LIBS |