Files
sysprof/data/icons/Makefile.am
Christian Hergert 29c4ec495f Land Sysprof 2.x
This is a major redesign a modernization of Sysprof. The core data
structures and design are largely the same, but it has been ported to
Gtk3 and has lots of additions that should make your profiling experience
smoother. Especially for those that are new to profiling.

There are some very simple help docs added, but we really need the
experts to come in and write some documentation here.
2016-04-13 05:24:03 -07:00

30 lines
722 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) \
sysprof-source.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