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 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. size = 22x22
  2. context = mimetypes
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. application-certificate.png \
  6. application-x-executable.png \
  7. audio-x-generic.png \
  8. font-x-generic.png \
  9. image-x-generic.png \
  10. package-x-generic.png \
  11. text-html.png \
  12. text-x-generic.png \
  13. text-x-generic-template.png \
  14. text-x-script.png \
  15. video-x-generic.png \
  16. x-office-address-book.png \
  17. x-office-calendar.png \
  18. x-office-document.png \
  19. x-office-document-template.png \
  20. x-office-drawing.png \
  21. x-office-drawing-template.png \
  22. x-office-presentation.png \
  23. x-office-presentation-template.png \
  24. x-office-spreadsheet.png \
  25. x-office-spreadsheet-template.png
  26. EXTRA_DIST = \
  27. $(icons_DATA)
  28. install-data-local: install-iconsDATA
  29. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  30. if ENABLE_ICON_FRAMING
  31. $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context)
  32. (cd $(DESTDIR)$(themedir) && \
  33. for icon in $(icons_DATA); do \
  34. $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \
  35. done)
  36. (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context))
  37. endif
  38. uninstall-local:
  39. rm -rf $(themedir)/24x24/$(context)