Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930
  1. all: icons
  2. .PHONY: clean
  3. clean: clean-icons
  4. ICONS := \
  5. icons/tigervnc_16.png \
  6. icons/tigervnc_22.png \
  7. icons/tigervnc_24.png \
  8. icons/tigervnc_32.png \
  9. icons/tigervnc_48.png
  10. .PHONY: icons clean-icons
  11. icons: $(ICONS)
  12. clean-icons:
  13. rm -f $(ICONS)
  14. icons/tigervnc_16.png: tigervnc_16.svg
  15. convert -background transparent "$<" "$@"
  16. icons/tigervnc_22.png: tigervnc_20.svg
  17. convert -size 22x22 xc:none -gravity center -background transparent "$<" -composite "$@"
  18. icons/tigervnc_24.png: tigervnc_20.svg
  19. convert -size 24x24 xc:none -gravity center -background transparent "$<" -composite "$@"
  20. icons/tigervnc_32.png: tigervnc_28.svg
  21. convert -size 32x32 xc:none -gravity center -background transparent "$<" -composite "$@"
  22. icons/tigervnc_48.png: tigervnc_42.svg
  23. convert -size 48x48 xc:none -gravity center -background transparent "$<" -composite "$@"