14 lines
426 B
Makefile
14 lines
426 B
Makefile
|
SUBDIRS = 16x16 20x20 22x22 24x24 32x32 36x36 40x40 48x48 64x64 72x72 96x96 128x128 192x192 256x256
|
||
|
|
||
|
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
|
||
|
|
||
|
install-data-hook:
|
||
|
@-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
|
||
|
|