weechat/doc/de/Makefile.am

102 lines
3.2 KiB
Makefile
Raw Normal View History

2008-01-02 12:47:09 +01:00
# Copyright (c) 2003-2008 FlashCode <flashcode@flashtux.org>
2006-04-30 12:35:58 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
2007-07-02 12:25:13 +00:00
# the Free Software Foundation; either version 3 of the License, or
2006-04-30 12:35:58 +00:00
# (at your option) any later version.
#
# This program 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
2007-07-02 12:25:13 +00:00
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2006-04-30 12:35:58 +00:00
#
LANGCODE = de
BOOK = weechat.$(LANGCODE)
BOOK_INCLUDE = authors.$(LANGCODE).xml \
intro.$(LANGCODE).xml \
2008-05-26 14:27:35 +02:00
install.$(LANGCODE).xml \
usage.$(LANGCODE).xml \
plugins.$(LANGCODE).xml \
plugin_api.$(LANGCODE).xml \
plugin_charset.$(LANGCODE).xml \
plugin_fifo.$(LANGCODE).xml \
2008-09-05 18:52:59 +02:00
plugin_irc.$(LANGCODE).xml \
plugin_scripts.$(LANGCODE).xml \
2008-09-05 18:52:59 +02:00
plugin_xfer.$(LANGCODE).xml \
../include_autogen.xml \
autogen/weechat_commands.xml \
autogen/weechat_options.xml \
autogen/weechat_infos.xml \
autogen/irc_commands.xml \
autogen/irc_options.xml \
autogen/irc_infos.xml
2006-05-31 22:10:13 +00:00
QUICKSTART = weechat_quickstart.$(LANGCODE).txt
2006-04-30 12:35:58 +00:00
2006-05-31 22:10:13 +00:00
EXTRA_DIST = $(BOOK).xml $(BOOK_INCLUDE) $(QUICKSTART)
2006-04-30 12:35:58 +00:00
if DBLATEX_FOUND
PDF = pdf-stamp
endif
2006-04-30 12:35:58 +00:00
docdir = $(datadir)/doc/$(PACKAGE)
all-local: html-stamp $(PDF)
2006-04-30 12:35:58 +00:00
# HTML output with chunks (many pages)
html: html-stamp
2008-09-05 18:52:59 +02:00
html-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html.xsl ../weechat-doc.css ../include_autogen.xml
2006-07-30 23:25:12 +00:00
echo "<pubdate>`date '+%F %T'`</pubdate>" >date.xml
2008-09-05 18:52:59 +02:00
cp ../include_autogen.xml .
2006-04-30 12:35:58 +00:00
mkdir -p html/
xsltproc -o html/ ../weechat-html.xsl $(BOOK).xml || true
rm -f include_autogen.xml
2006-04-30 12:35:58 +00:00
cp ../weechat-doc.css html/
touch html-stamp
# HTML output, all in one page
html1: html1-stamp
2008-09-05 18:52:59 +02:00
html1-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html-one.xsl ../weechat-doc.css ../include_autogen.xml
2006-07-30 23:25:12 +00:00
echo "<pubdate>`date '+%F %T'`</pubdate>" >date.xml
2008-09-05 18:52:59 +02:00
cp ../include_autogen.xml .
2006-04-30 12:35:58 +00:00
mkdir -p html1/
xsltproc -o html1/$(BOOK).html ../weechat-html-one.xsl $(BOOK).xml || true
rm -f include_autogen.xml
2006-04-30 12:35:58 +00:00
cp ../weechat-doc.css html1/
touch html1-stamp
# PDF output
pdf: pdf-stamp
2008-09-05 18:52:59 +02:00
pdf-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../include_autogen.xml
echo "<pubdate>`date '+%F %T'`</pubdate>" >date.xml
2008-09-05 18:52:59 +02:00
cp ../include_autogen.xml .
dblatex -P draft.mode=no -c ../dblatex.conf $(BOOK).xml || true
rm -f include_autogen.xml
touch pdf-stamp
2006-04-30 12:35:58 +00:00
# install docs
install-data-hook:
$(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/
$(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/
2006-05-31 22:10:13 +00:00
$(INSTALL_DATA) $(QUICKSTART) $(DESTDIR)$(docdir)/
if DBLATEX_FOUND
$(INSTALL_DATA) $(BOOK).pdf $(DESTDIR)$(docdir)/
endif
2006-04-30 12:35:58 +00:00
# clean
clean-local:
2008-09-05 18:52:59 +02:00
-rm -f $(BOOK).html $(BOOK).pdf $(BOOK).txt date.xml include_autogen.xml
2006-04-30 12:35:58 +00:00
-rm -rf html/ html1/
-rm -f html-stamp html1-stamp pdf-stamp