# # # ProLinga-Data # # Copyright (C) 2002-2008 Xobas Software. # All rights reserved. # # This file is part of ProLinga-Data. # # ProLinga-Data 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-Data 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-Data. 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 INCLUDES = \ -I$(top_srcdir) \ $(PROLINGASOAP_CXXFLAGS) \ $(LIBXML_CXXFLAGS) \ $(LIBGDA_CXXFLAGS) \ -DSYSCONFDIR=\"$(sysconfdir)\" lib_LTLIBRARIES = libprolingadata.la libprolingadata_la_SOURCES = \ DatCommon.h \ DatConfig.hpp \ DatConfig.cpp \ Data.cpp \ DatError.hpp \ DatMain.hpp \ DCDataCommand.hpp \ DCDataCommand.cpp \ DCDocumentParse.hpp \ DCDocumentParse.cpp \ DCAdmin.hpp \ DCAdmin.cpp \ DCDataModel.hpp \ DCDataModel.cpp \ DCDataSource.hpp \ DCDataSource.cpp \ DCExecuteQuery.hpp \ DCExecuteQuery.cpp \ DCExecuteNonQuery.hpp \ DCExecuteNonQuery.cpp \ DCManageData.hpp \ DCManageData.cpp \ DCTransaction.hpp \ DCTransaction.cpp \ ExecuteSql.hpp \ ExecuteSql.cpp\ DCSession.hpp \ DCSession.cpp \ Utility.hpp \ Utility.cpp libprolingadata_la_LDFLAGS = -release 1.0 -version-info 0:2:0 bin_PROGRAMS = prolingadatclient prolingadatd prolingadatclient_SOURCES = \ DatCommon.h \ DatMain.hpp \ DataClient.cpp \ DatConfig.hpp \ DatConfigSA.cpp prolingadatclient_LDADD = \ $(PROLINGASOAP_LIBS) -lprolingasoapclient \ $(LIBXML_LIBS) prolingadatd_SOURCES = \ DatCommon.h \ DCDocumentParse.hpp \ DatMain.hpp \ DCDataCommand.hpp \ DataService.cpp \ PlSoapLink.cpp \ DatConfig.hpp prolingadatd_LDADD = \ libprolingadata.la \ $(PROLINGASOAP_LIBS) -lprolingasoap -lpthread \ $(LIBXML_LIBS) \ $(LIBGDA_LIBS)