diff options
author | Werner Koch <wk@gnupg.org> | 1998-04-02 12:30:03 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-04-02 12:30:03 +0200 |
commit | 303b1084d51dd1f9d3e614497f180a66744f5185 (patch) | |
tree | 3e482ba03967ff3f324184e19ecc91016ce4b939 /doc | |
parent | some cleanups (diff) | |
download | gnupg2-303b1084d51dd1f9d3e614497f180a66744f5185.tar.xz gnupg2-303b1084d51dd1f9d3e614497f180a66744f5185.zip |
release 0.2.14
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 0c8690c78..020338b40 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -11,3 +11,23 @@ man_MANS = gpg.1 >$@,$$$$ && mv -f $@,$$$$ $@\ || rm -f $@,$$$$ + + +%.txt : %.sgml + sgml2txt -c latin $* + +%.html : %.sgml + sgml2html -l deutsch -c latin $* + +%.dvi : %.sgml + -rm $*.sgml.tmp + mv $*.sgml $*.sgml.tmp + sed -e '/<!entity/ s/"IGNORE">/"INCLUDE">/' $*.sgml.tmp >$*.sgml + sgml2latex -b -l deutsch -c latin $* ; mv $*.sgml.tmp $*.sgml + +%.ps : %.sgml + -rm $*.sgml.tmp + mv $*.sgml $*.sgml.tmp + sed -e '/<!entity/ s/"IGNORE">/"INCLUDE">/' $*.sgml.tmp >$*.sgml + sgml2latex -b -l deutsch -c latin -o ps $* ; mv $*.sgml.tmp $*.sgml + |