# # # ProLinga-Repository # # Copyright (C) 2002-2009 Xobas Software. # All rights reserved. # # This file is part of ProLinga-Repository. # # ProLinga-Repository 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-Repository 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-Repository. 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) \ $(DBXML_CXXFLAGS) \ $(DB_CXXFLAGS) \ $(XQILLA_CXXFLAGS) \ $(XERCES_CXXFLAGS) \ $(LIBXML_CXXFLAGS) \ -DSYSCONFDIR=\"$(sysconfdir)\" \ -DPROLINGADATADIR=\"$(datadir)/prolinga\" \ -DPROLINGASTATEDIR=\"$(localstatedir)/lib/prolinga\" lib_LTLIBRARIES = libprolingarepository.la libprolingarepository_la_SOURCES = \ RepCommon.h \ RepMain.hpp \ RepError.hpp \ RepConfig.hpp \ RepConfig.cpp \ Repository.cpp \ RCRepositoryCommand.hpp \ RCRepositoryCommand.cpp \ RCDocumentParse.hpp \ RCDocumentParse.cpp \ DocumentList.hpp \ DocumentList.cpp \ DocumentGet.hpp \ DocumentGet.cpp \ DocumentPut.hpp \ DocumentPut.cpp \ DocumentDelete.hpp \ DocumentDelete.cpp libprolingarepository_la_LDFLAGS = -release 1.0 -version-info 0:3:0 bin_PROGRAMS = prolingarepcreate prolingarepexec prolingarepclient prolingarepd prolingarepcreate_SOURCES = \ RepCommon.h \ RepMain.hpp \ RepositoryCreate.cpp \ RepConfig.hpp \ RepConfigSA.cpp prolingarepcreate_LDADD = \ $(DBXML_LIBS) \ $(DB_LIBS) \ $(XQILLA_LIBS)\ $(XERCES_LIBS) \ $(LIBXML_LIBS) prolingarepexec_SOURCES = \ RepositoryMain.cpp prolingarepexec_LDADD = \ libprolingarepository.la \ $(DBXML_LIBS) \ $(DB_LIBS) \ $(XQILLA_LIBS)\ $(XERCES_LIBS) \ $(LIBXML_LIBS) prolingarepclient_SOURCES = \ RepCommon.h \ RepMain.hpp \ RepositoryClient.cpp \ RepConfig.hpp \ RepConfigSA.cpp prolingarepclient_LDADD = \ $(PROLINGASOAP_LIBS) -lprolingasoapclient \ $(LIBXML_LIBS) prolingarepd_SOURCES = \ RepCommon.h \ RCDocumentParse.hpp \ RepMain.hpp \ RCRepositoryCommand.hpp \ RepositoryService.cpp \ PlSoapLink.cpp \ RepConfig.hpp prolingarepd_LDADD = \ libprolingarepository.la \ $(PROLINGASOAP_LIBS) -lprolingasoap \ $(DBXML_LIBS) \ $(DB_LIBS) \ $(XQILLA_LIBS)\ $(XERCES_LIBS) \ $(LIBXML_LIBS)