From ffed900fc7e349ae184eb4872f7f5a72d6ce5761 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Mar 2002 04:11:20 -0600 Subject: Cleaned up rules in Docs/Makefile.am. Docs/Makefile.am: Cleaned up rules. --- Docs/Makefile.am | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) (limited to 'Docs/Makefile.am') diff --git a/Docs/Makefile.am b/Docs/Makefile.am index 726a35a8e54..b9feeec04db 100644 --- a/Docs/Makefile.am +++ b/Docs/Makefile.am @@ -69,21 +69,21 @@ manual_toc.html: manual.html # PDF, Portable Document Format manual.pdf: manual.texi - cat manual.texi | sed -e 's|@image{[^}]*} *||g' > manual-tmp.texi + sed -e 's|@image{[^}]*} *||g' <$< >manual-tmp.texi pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi - mv manual-tmp.pdf manual.pdf + mv manual-tmp.pdf $@ rm -f manual-tmp.* touch $@ # XML, DocBook 4.0 mysql.xml: manual.texi include.texi - $(MAKEINFO) --force --no-ifinfo --docbook manual.texi - mv mysql.xml mysql-tmp.xml - Support/docbook-fixup.pl mysql.xml + $(MAKEINFO) --force --no-ifinfo --docbook $< + mv $@ mysql-tmp.xml + Support/docbook-fixup.pl $@ rm -f mysql-tmp.xml # Postscript, A4 Paper @@ -123,21 +123,21 @@ manual_toc.de.html: manual.html # PDF, Portable Document Format manual.de.pdf: manual.de.texi - cat manual.de.texi | sed -e 's|@image{[^}]*} *||g' > manual-tmp.texi + sed -e 's|@image{[^}]*} *||g' <$< >manual-tmp.texi pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi - mv manual-tmp.pdf manual.de.pdf + mv manual-tmp.pdf $@ rm -f manual-tmp.* touch $@ # XML, DocBook 4.0 mysql.de.xml: manual.de.texi include.texi - $(MAKEINFO) --force --no-ifinfo --docbook manual.de.texi - mv mysql.de.xml mysql-tmp.xml - Support/docbook-fixup.pl mysql.de.xml + $(MAKEINFO) --force --no-ifinfo --docbook $< + mv $@ mysql-tmp.xml + Support/docbook-fixup.pl $@ rm -f mysql-tmp.xml # Postscript, A4 Paper @@ -163,18 +163,17 @@ manual_letter.de.ps: manual.de.texi include.texi # Target to produce NuSphere Manual nusphere.pdf: manual.texi - cat manual.texi \ - | sed -e 's/@example/@smallexample/g' \ - -e 's/@end example/@end smallexample/g' \ - -e 's/@c ifnusphere //g' \ - -e 's|@image{[^}]*} *||g' \ - > manual-tmp.texi + sed -e 's/@example/@smallexample/g' \ + -e 's/@end example/@end smallexample/g' \ + -e 's/@c ifnusphere //g' \ + -e 's|@image{[^}]*} *||g' \ + <$< >manual-tmp.texi pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi texindex manual-tmp.?? pdftex --interaction=nonstopmode manual-tmp.texi - mv manual-tmp.pdf nusphere.pdf + mv manual-tmp.pdf $@ rm -f manual-tmp.* touch $@ -- cgit v1.2.1