Typica is a free program for professional coffee roasters. https://typica.us
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Makefile.am 924B

123456789101112131415161718192021222324252627282930313233343536
  1. size = 22x22
  2. context = categories
  3. iconsdir = $(themedir)/$(size)/$(context)
  4. icons_DATA = \
  5. applications-accessories.png \
  6. applications-development.png \
  7. applications-games.png \
  8. applications-graphics.png \
  9. applications-internet.png \
  10. applications-multimedia.png \
  11. applications-office.png \
  12. applications-other.png \
  13. applications-system.png \
  14. preferences-desktop.png \
  15. preferences-desktop-peripherals.png \
  16. preferences-system.png
  17. EXTRA_DIST = \
  18. $(icons_DATA)
  19. install-data-local: install-iconsDATA
  20. (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
  21. if ENABLE_ICON_FRAMING
  22. $(mkinstalldirs) $(DESTDIR)$(themedir)/24x24/$(context)
  23. (cd $(DESTDIR)$(themedir) && \
  24. for icon in $(icons_DATA); do \
  25. $(CONVERT) $(size)/$(context)/$$icon 24x24/$(context)/$$icon; \
  26. done)
  27. (cd $(DESTDIR)$(themedir)/24x24 && $(ICONMAP) -c $(context))
  28. endif
  29. uninstall-local:
  30. rm -rf $(themedir)/24x24/$(context)