Typica is a free program for professional coffee roasters. https://typica.us
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.am 740B

12345678910111213141516171819202122232425262728293031
  1. size = 22x22
  2. context = emblems
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. emblem-favorite.png \
  6. emblem-important.png \
  7. emblem-photos.png \
  8. emblem-readonly.png \
  9. emblem-symbolic-link.png \
  10. emblem-system.png \
  11. emblem-unreadable.png
  12. EXTRA_DIST = \
  13. $(icons_DATA)
  14. install-data-local: install-iconsDATA
  15. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  16. if ENABLE_ICON_FRAMING
  17. $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context)
  18. (cd $(DESTDIR)$(themedir) && \
  19. for icon in $(icons_DATA); do \
  20. $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \
  21. done)
  22. (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context))
  23. endif
  24. uninstall-local:
  25. rm -rf $(themedir)/24x24/$(context)