# # # ProLinga-Soap # # Copyright (C) 2002-2010 Xobas Software. # All rights reserved. # # This file is part of ProLinga-Soap. # # ProLinga-Soap is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # ProLinga-Soap is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with ProLinga-Soap. If not, see . # # More information is available at the following addresses: # # Website : http://www.prolinga.org # # Email : prolinga-list@prolinga.org # # # Process this file with automake to create Makefile.in EXTRA_DIST = \ gsoap/ProLinga_4GL_Net.wsdl \ gsoap/ProLinga_4GL_Net.GetProLingaDocument.req.xml \ gsoap/ProLinga_4GL_Net.GetProLingaDocument.res.xml \ gsoap/ns1.xsd \ gsoap/pldoc1.xsd \ gsoap/soapClientLib.cpp \ gsoap/soapProLinga_4GL_NetObject.h \ gsoap/soapProLinga_4GL_NetProxy.h \ gsoap/soapServerLib.cpp \ gsoap/prolingaSoap.hpp #prolingalibdir = $(libdir)/prolinga INCLUDES = \ -DWITH_GZIP \ -DWITH_CDATA \ -I$(top_srcdir) \ -I$(top_srcdir)/src/gsoap \ $(LIBXML_CXXFLAGS) lib_LTLIBRARIES = libprolingasoapclient.la libprolingasoap.la libprolingasoapclient_la_SOURCES = \ gsoap/soapH.h \ gsoap/soapStub.h \ gsoap/soapC.cpp \ gsoap/soapClient.cpp \ gsoap/stdsoap2.h \ gsoap/stdsoap2.cpp \ SoapCommon.h \ SoapConfig.hpp \ NameSpaceProLinga.cpp \ SoapClientProLinga.cpp libprolingasoapclient_la_LDFLAGS = -release 1.0 -version-info 0:4:0 $(SOAPCLIENT_LDFLAGS) $(LIBXML_LIBS) libprolingasoap_la_SOURCES = \ gsoap/soapH.h \ gsoap/ProLinga_4GL_Net.nsmap \ gsoap/soapStub.h \ gsoap/soapC.cpp \ gsoap/soapClient.cpp \ gsoap/soapServer.cpp \ gsoap/stdsoap2.h \ gsoap/stdsoap2.cpp \ SoapCommon.h \ SoapConfig.hpp \ SoapProLinga.cpp \ SoapClientProLinga.cpp libprolingasoap_la_LDFLAGS = -release 1.0 -version-info 0:4:0 $(SOAPSERVER_LDFLAGS) $(LIBXML_LIBS) bin_PROGRAMS = prolingasoapclienttest prolingasoapservertest prolingasoapclienttest_SOURCES = TestClient.cpp prolingasoapclienttest_LDADD = \ libprolingasoapclient.la \ $(LIBXML_LIBS) -lpthread prolingasoapservertest_SOURCES = TestServer.cpp prolingasoapservertest_LDADD = \ libprolingasoap.la \ $(LIBXML_LIBS) -lpthread