Revision 8f9081d2
Von Sven Donath vor fast 14 Jahren hinzugefügt
doc/Makefile | ||
---|---|---|
1 |
# The Installation Documentation is being written in 'INSTALL.texi' using |
|
2 |
# the texinfo syntax. Visit http://www.gnu.org/software/texinfo/ and |
|
3 |
# http://cvs.savannah.gnu.org/viewvc/*checkout*/texinfo/doc/refcard/txirefcard-a4.pdf?root=texinfo |
|
4 |
# |
|
5 |
# In order to generate the files INSTALL.txt and the HTML files under |
|
6 |
# INSTALL/ you have to install the 'make' and 'textinfo' packages of |
|
7 |
# your operating system. |
|
8 |
# Possibly a 'Lx-Office_Installation_DE.pdf' will generated too. |
|
9 |
# |
|
10 |
# Usage: |
|
11 |
# cd doc/ |
|
12 |
# make |
|
13 |
|
|
1 | 14 |
all: |
2 | 15 |
rm -f INSTALL/*.html |
3 |
makeinfo --html --document-language=de_DE.UTF-8 INSTALL.texi |
|
4 |
makeinfo --plaintext --document-language=de_DE.UTF-8 -o INSTALL.txt INSTALL.texi |
|
16 |
makeinfo --html --document-language=de_DE.UTF-8 INSTALL.texi |
|
17 |
makeinfo --plaintext --document-language=de_DE.UTF-8 -o INSTALL.txt INSTALL.texi |
|
18 |
texi2pdf -p -c -q -o Lx-Office_Installation_DE.pdf INSTALL.texi |
Auch abrufbar als: Unified diff
Dokumentations-Generator erweitert
mittels
cd doc/
vim INSTALL.texi
make
kann die Installationsdokumention geändert und in die Formate plain Text, HTML und PDF
geschrieben werden.
Have a look into doc/Makefile!