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

12345678910111213141516
  1. SVG =
  2. RASTERIMAGES = architecture
  3. RASTERSRCIMAGES := $(foreach file, $(RASTERIMAGES), $(file).svg)
  4. RASTERIMAGES := $(foreach file, $(RASTERIMAGES), ../img/$(file).png)
  5. SVGTRGIMAGES := $(foreach file, $(SVG), ../img/$(file).svg)
  6. images: $(RASTERIMAGES) $(SVGTRGIMAGES) FORCE
  7. $(RASTERIMAGES): ../img/%.png: %.svg
  8. inkscape --export-png $@ --export-dpi=300 --export-area-page $<
  9. $(SVGTRGIMAGES): ../img/%.svg: %.svg FORCE
  10. inkscape $< --export-text-to-path -l $@
  11. FORCE: