X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/df0d4d3fb8a275b7f96a260d403966c873123666..e08c98d4006bb77bedec2f7922631bef8f4bef24:/doc/Makefile diff --git a/doc/Makefile b/doc/Makefile index 1496c11db..8ee29eba2 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -2,17 +2,19 @@ # the texinfo syntax. Visit http://www.gnu.org/software/texinfo/ and # http://cvs.savannah.gnu.org/viewvc/*checkout*/texinfo/doc/refcard/txirefcard-a4.pdf?root=texinfo # -# In order to generate the files INSTALL.txt and the HTML files under -# INSTALL/ you have to install the 'make' and 'textinfo' packages of -# your operating system. -# Possibly a 'Lx-Office_Installation_DE.pdf' will generated too. +# In order to generate the text, HTML and PDF versions of this +# documentation you have to install the 'make' and 'textinfo' packages +# of your operating system. # # Usage: # cd doc/ # make -all: - rm -f INSTALL/*.html - makeinfo --html --document-language=de_DE.UTF-8 INSTALL.texi - makeinfo --plaintext --document-language=de_DE.UTF-8 -o INSTALL.txt INSTALL.texi - texi2pdf -p -c -q -o Lx-Office_Installation_DE.pdf INSTALL.texi +all: INSTALL.txt Lx-Office_Installation_DE.pdf + +%.txt: %.texi + makeinfo --html --document-language=de_DE.UTF-8 -o $(patsubst %.txt,%.html,$@) --no-split $^ + makeinfo --plaintext --document-language=de_DE.UTF-8 -o $@ $^ + +Lx-Office_Installation_DE.pdf: INSTALL.texi + texi2pdf -p -c -q -o $@ $^