X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=doc%2FMakefile;h=5b17e28e6028c6e57786aaeff74112705e666410;hb=515d5a58413076f0ed5d61f5001ff41db455e84f;hp=933a9ee1bc1e734e9b02fbea5e4f29a4ce8fabce;hpb=f14f519c1e261380fac46994e8dec7614ed82d89;p=kivitendo-erp.git diff --git a/doc/Makefile b/doc/Makefile index 933a9ee1b..5b17e28e6 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,4 +1,20 @@ -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 +# The Installation Documentation is being written in 'INSTALL.texi' using +# the texinfo syntax. Visit http://www.gnu.org/software/texinfo/ and +# http://mirrors.ctan.org/macros/texinfo/texinfo/doc/refcard/txirefcard.pdf +# +# 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: 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 $@ $^