gnome-contacts/data/icons/Makefile.am
Jakub Steiner e1c2ab029a icons: provide app icon
- hicolor in up to 512x512px
- symbolic

https://bugzilla.gnome.org/show_bug.cgi?id=779021
2017-06-30 15:07:16 +02:00

26 lines
795 B
Makefile

icondir = $(datadir)/icons
nobase_icon_DATA = \
hicolor/16x16/apps/gnome-contacts.png \
hicolor/22x22/apps/gnome-contacts.png \
hicolor/32x32/apps/gnome-contacts.png \
hicolor/48x48/apps/gnome-contacts.png \
hicolor/512x512/apps/gnome-contacts.png \
hicolor/symbolic/apps/gnome-contacts-symbolic.svg
EXTRA_DIST = $(nobase_icon_DATA) hicolor/gnome-contacts.svg
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
install-data-hook: update-icon-cache
uninstall-hook: update-icon-cache
update-icon-cache:
@-if test -z "$(DESTDIR)"; then \
echo "Updating Gtk icon cache."; \
$(gtk_update_icon_cache); \
else \
echo "*** Icon cache not updated. After (un)install, run this:"; \
echo "*** $(gtk_update_icon_cache)"; \
fi
-include $(top_srcdir)/git.mk