diff --git a/make-includes/build_content_rules.make b/make-includes/build_content_rules.make index 72b9304..e4991ff 100755 --- a/make-includes/build_content_rules.make +++ b/make-includes/build_content_rules.make @@ -63,6 +63,7 @@ vpath %-web-zoom.png $(BUILD_DIR) # vpath %-web-hires.png $(BUILD_DIR) vpath %-print.pdf $(BUILD_DIR) +vpath %.svg graphics images vpath %.eps graphics images vpath %.ps graphics images vpath %-print.png $(BUILD_DIR) @@ -90,7 +91,15 @@ ################################################################################ # -# Build correctly cropped EPS (for printing) from original source EPS or PS. +# Build EPS from Inkscape SVG source. +# +%.eps: %.svg + inkscape --file=$< --export-text-to-path --without-gui --export-eps=$@ + + +################################################################################ +# +# Build correctly cropped EPS (for printing) from source EPS or PS. # # Notes on ps2eps options: # @@ -136,8 +145,7 @@ ################################################################################ # -# Build correctly cropped PNGs for web display from the original source -# EPS or PS. +# Build correctly cropped PNGs for web display from the source EPS or PS. # # It might seem to make more sense to generate the PNGs from the print # EPS, which has already been appropriately cropped (see above). However,