[Refdb-cvs] CVS: refdb/doc Makefile.am,1.1.2.7,1.1.2.8
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-12-26 22:06:37
|
Update of /cvsroot/refdb/refdb/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16545/doc Modified Files: Tag: Release_0_9_5_stable Makefile.am Log Message: use batik-rasterizer or convert conditionally to build the image files from the SVG sources Index: Makefile.am =================================================================== RCS file: /cvsroot/refdb/refdb/doc/Attic/Makefile.am,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -U2 -r1.1.2.7 -r1.1.2.8 --- Makefile.am 11 Dec 2005 20:23:39 -0000 1.1.2.7 +++ Makefile.am 26 Dec 2005 22:06:27 -0000 1.1.2.8 @@ -62,4 +62,5 @@ $(top_srcdir)/scripts/statgen.pl docbook > refdb-manual-statustable.sgml +if HAVEBATIK $(pdf_images): %.pdf: %.svg batik-rasterizer -m application/pdf $< @@ -67,4 +68,11 @@ $(png_images): %.png: %.svg batik-rasterizer -m image/png $< +else +$(pdf_images): %.pdf: %.svg + convert $< $@ + +$(png_images): %.png: %.svg + convert $< $@ +endif refdb-manual.pdf: $(manual_sources) $(pdf_images) refdb-manual-statustable.sgml include/doc-print.dsl |