# # # ProLinga-Calc # # Copyright (C) 2002-2008 Xobas Software # All rights reserved. # # This file is part of ProLinga-Calc. # # ProLinga-Calc 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-Calc 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-Calc. 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 docdir = $(datadir)/doc/prolinga-calc-${VERSION} doc_DATA = version.txt \ $(srcdir)/prolinga-calc.xml \ $(srcdir)/prolinga-calc-API.xml \ $(srcdir)/prolinga-calc-userguide.xml \ $(srcdir)/fdl.xml \ $(srcdir)/devhelp.xsl \ $(srcdir)/prolinga.xsl \ $(srcdir)/prolinga_format.xsl htmldir = $(datadir)/doc/prolinga-calc-${VERSION}/html html_DATA = $(srcdir)/html/*.html \ $(srcdir)/html/*.devhelp cssdir = $(datadir)/doc/prolinga-calc-${VERSION}/html/css css_DATA = $(srcdir)/html/css/*.css imagesdir = $(datadir)/doc/prolinga-calc-${VERSION}/html/images images_DATA = $(srcdir)/html/images/*.gif \ $(srcdir)/html/images/*.png # Other files to distribute EXTRA_DIST = \ $(srcdir)/version.txt.in \ $(srcdir)/prolinga-calc.xml \ $(srcdir)/prolinga-calc-API.xml \ $(srcdir)/prolinga-calc-userguide.xml \ $(srcdir)/fdl.xml \ $(srcdir)/devhelp.xsl \ $(srcdir)/prolinga.xsl \ $(srcdir)/prolinga_format.xsl \ $(srcdir)/html/*.devhelp \ $(srcdir)/html/*.html \ $(srcdir)/html/css/*.css \ $(srcdir)/html/images/*.gif \ $(srcdir)/html/images/*.png html html/*.devhelp: $(srcdir)/fdl.xml \ version.txt \ $(srcdir)/prolinga-calc.xml \ $(srcdir)/prolinga-calc-API.xml \ $(srcdir)/prolinga-calc-userguide.xml \ $(srcdir)/prolinga.xsl \ $(srcdir)/prolinga_format.xsl -@( \ echo "Rebuilding the HTML pages from the DocBook XML files." ; \ xsltproc \ --nonet --stringparam gtkdoc.bookname prolinga-calc \ --stringparam chunker.output.doctype-public \ "-//W3C//DTD HTML 4.01 Transitional//EN" \ -o html/index.html \ $(srcdir)/prolinga.xsl $(srcdir)/prolinga-calc.xml )