Files
sysprof/data/icons/Makefile.am
Christian Hergert 08a7314c48 icons: no need to ship source svg in tarball
This sort of explodes the size of the distribution tarball.
2016-04-13 05:39:00 -07:00

28 lines
697 B
Makefile

icondir = $(datadir)/icons/hicolor
nobase_icon_DATA = \
16x16/apps/sysprof.png \
24x24/apps/sysprof.png \
32x32/apps/sysprof.png \
48x48/apps/sysprof.png \
256x256/apps/sysprof.png \
scalable/apps/sysprof-symbolic.svg \
$(NULL)
EXTRA_DIST = $(nobase_icon_DATA)
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