# # # ProLinga-Repository # # Copyright (C) 2002-2010 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 # export config files. EXTRA_DIST = \ $(srcdir)/prolingarepcfg.xml.in \ $(srcdir)/prolingarepd.init.in \ prolingarepd.init \ $(srcdir)/administrator.paa \ $(srcdir)/developer.paa \ $(srcdir)/stock.paa \ $(srcdir)/readme_system.txt sysconf_DATA = prolingarepcfg.xml prolingarepcfg.xml: prolingarepcfg.xml.in Makefile sed -e 's?\@localstatedir\@?$(localstatedir)?g' \ -e 's?\@HOST_NODE_NAME\@?$(HOST_NODE_NAME)?g' \ < $(srcdir)/prolingarepcfg.xml.in > prolingarepcfg.tmp \ && chmod +x prolingarepcfg.tmp && mv prolingarepcfg.tmp prolingarepcfg.xml # application dumps. prolingaappndir = $(datadir)/prolinga/appn prolingaappn_DATA = \ $(srcdir)/administrator.paa \ $(srcdir)/developer.paa \ $(srcdir)/stock.paa # default system dir. prolingasysdir = $(localstatedir)/lib/prolinga/system prolingasys_DATA = \ $(srcdir)/readme_system.txt # export API header files. pkgincludedir = $(includedir)/prolinga pkginclude_HEADERS = $(srcdir)/Repository.hpp noinst_DATA = prolingarepd.init prolingarepd.init: prolingarepd.init.in Makefile sed -e 's?\@bindir\@?$(bindir)?g' \ -e 's?\@XERCES_SHARED_LIB_DIR\@?$(XERCES_SHARED_LIB_DIR)?g' \ < $(srcdir)/prolingarepd.init.in > prolingarepd.tmp \ && chmod +x prolingarepd.tmp && mv prolingarepd.tmp prolingarepd.init distclean: prolingarepd.init -@( \ rm prolingarepd.init prolingarepcfg.xml Makefile)