1998-02-26 17:56:31 +01:00
|
|
|
## Process this file with automake to create Makefile.in
|
|
|
|
|
1998-09-29 18:15:15 +02:00
|
|
|
EXTRA_DIST = DETAILS rfcs gpg.1pod gpg.1 FAQ HACKING OpenPGP
|
1998-02-26 17:56:31 +01:00
|
|
|
|
|
|
|
man_MANS = gpg.1
|
|
|
|
|
1998-09-28 21:25:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
install-data-hook:
|
|
|
|
if test -f $(man1dir)/gpgm.1; then rm $(man1dir)/gpgm.1; fi
|
|
|
|
ln -s $(man1dir)/gpg.1 $(man1dir)/gpgm.1 \
|
|
|
|
|| ln $(man1dir)/gpg.1 $(man1dir)/gpgm.1
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-02-26 17:56:31 +01:00
|
|
|
%: %pod
|
|
|
|
pod2man $< --section=`echo $@ | sed 's/^.*(?)$$/$$&/'`\
|
|
|
|
--release="`date -r $< '+%d %b %Y'`"\
|
|
|
|
--center="GNU Tools" --date=' '\
|
|
|
|
>$@,$$$$ && mv -f $@,$$$$ $@\
|
|
|
|
|| rm -f $@,$$$$
|
|
|
|
|
1998-04-02 12:30:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
%.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
|
|
|
|
|