# # # ProLinga-Web # # Copyright (C) 2002-2009 Xobas Software. # All rights reserved. # # This file is part of ProLinga-Web. # # ProLinga-Web 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-Web 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-Web. 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) \ $(LIBXML_CFLAGS) \ $(LIBXSLT_CFLAGS) \ $(PROLINGASOAP_CXXFLAGS) \ $(PROLINGARUN_CXXFLAGS) \ $(FASTCGI_CXXFLAGS) \ -DSYSCONFDIR=\"$(sysconfdir)\" \ $(DEFINE_BUILD_FASTCGI) \ $(DEFINE_BUILD_RUN) noinst_LTLIBRARIES = libweb.la libweb_la_SOURCES = \ WebService.hpp \ WebCommon.h \ GetCgiVars.hpp \ GetCgiVars.cpp \ WCWebAccess.hpp \ WCWebAccess.cpp \ WCWebCommand.hpp \ WCWebCommand.cpp \ WebProcess.hpp \ WebProcess.cpp #libweb_la_LDFLAGS = -release 1.0 -version-info 0:3:0 prolingacgidir = $(localstatedir)/www/cgi-bin prolingacgi_PROGRAMS = prolingaweb prolingaweb_SOURCES = \ WebService.hpp \ WebCommon.h \ WCWebAccess.hpp \ WCWebCommand.hpp \ WebProcess.hpp \ WebCgi.cpp #prolingaweb_LDFLAGS = -static prolingaweb_LDADD = \ libweb.la \ $(LIBXML_LIBS) \ $(LIBXSLT_LIBS) \ $(PROLINGASOAP_LIBS) \ $(PROLINGARUN_LIBS) \ $(FASTCGI_LIBS)