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 611B

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