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.

37 lines
1.5KB

  1. INKSCAPE=inkscape
  2. SVGO=svgo
  3. SVGS=MasterMixer.svg BufferedMult.svg UnityMix.svg DaisyChannel.svg DaisyMaster.svg Horsehair.svg
  4. all: $(SVGS)
  5. MasterMixer.svg: src/MasterMixer.src.svg
  6. $(INKSCAPE) src/MasterMixer.src.svg --export-plain-svg=MasterMixer-textpaths.svg --export-text-to-path
  7. $(SVGO) -i MasterMixer-textpaths.svg -o MasterMixer.svg
  8. rm MasterMixer-textpaths.svg
  9. BufferedMult.svg: src/BufferedMult.src.svg
  10. $(INKSCAPE) src/BufferedMult.src.svg --export-plain-svg=BufferedMult-textpaths.svg --export-text-to-path
  11. $(SVGO) -i BufferedMult-textpaths.svg -o BufferedMult.svg
  12. rm BufferedMult-textpaths.svg
  13. UnityMix.svg: src/UnityMix.src.svg
  14. $(INKSCAPE) src/UnityMix.src.svg --export-plain-svg=UnityMix-textpaths.svg --export-text-to-path
  15. $(SVGO) -i UnityMix-textpaths.svg -o UnityMix.svg
  16. rm UnityMix-textpaths.svg
  17. DaisyChannel.svg: src/DaisyChannel.src.svg
  18. $(INKSCAPE) src/DaisyChannel.src.svg --export-plain-svg=DaisyChannel-textpaths.svg --export-text-to-path
  19. $(SVGO) -i DaisyChannel-textpaths.svg -o DaisyChannel.svg
  20. rm DaisyChannel-textpaths.svg
  21. DaisyMaster.svg: src/DaisyMaster.src.svg
  22. $(INKSCAPE) src/DaisyMaster.src.svg --export-plain-svg=DaisyMaster-textpaths.svg --export-text-to-path
  23. $(SVGO) -i DaisyMaster-textpaths.svg -o DaisyMaster.svg
  24. rm DaisyMaster-textpaths.svg
  25. Horsehair.svg: src/Horsehair.src.svg
  26. $(INKSCAPE) src/Horsehair.src.svg --export-plain-svg=Horsehair-textpaths.svg --export-text-to-path
  27. $(SVGO) -i Horsehair-textpaths.svg -o Horsehair.svg
  28. rm Horsehair-textpaths.svg