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

123456789101112131415161718192021222324252627282930313233
  1. size = 22x22
  2. context = places
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. folder.png \
  6. folder-remote.png \
  7. folder-saved-search.png \
  8. network-server.png \
  9. network-workgroup.png \
  10. start-here.png \
  11. user-desktop.png \
  12. user-home.png \
  13. user-trash.png
  14. EXTRA_DIST = \
  15. $(icons_DATA)
  16. install-data-local: install-iconsDATA
  17. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  18. if ENABLE_ICON_FRAMING
  19. $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context)
  20. (cd $(DESTDIR)$(themedir) && \
  21. for icon in $(icons_DATA); do \
  22. $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \
  23. done)
  24. (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context))
  25. endif
  26. uninstall-local:
  27. rm -rf $(themedir)/24x24/$(context)