You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 528B

1234567891011121314151617
  1. SVG =
  2. RASTERIMAGES = layout-schematic
  3. RASTERSRCIMAGES := $(foreach file, $(RASTERIMAGES), $(file).svg)
  4. RASTERIMAGES_HI := $(foreach file, $(RASTERIMAGES), ../img/$(file)-hi.png)
  5. SVGTRGIMAGES := $(foreach file, $(SVG), ../img/$(file).svg)
  6. images: $(RASTERIMAGES_HI) $(SVGTRGIMAGES) FORCE
  7. # Just do low now $(TRGIMAGES_LO)
  8. $(RASTERIMAGES_HI): ../img/%-hi.png: %.svg
  9. inkscape --export-png $@ --export-dpi=300 --export-area-drawing $<
  10. $(SVGTRGIMAGES): ../img/%.svg: %.svg FORCE
  11. inkscape $< --export-text-to-path -l $@
  12. FORCE: