mirror of
https://github.com/VibedByKaKi/yad.git
synced 2026-08-20 21:21:12 +02:00
17 lines
498 B
Makefile
17 lines
498 B
Makefile
SUBDIRS = 16x16 24x24 32x32 48x48 96x96 128x128
|
|
|
|
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. Remember to run:"; \
|
|
echo "***"; \
|
|
echo "*** $(gtk_update_icon_cache)"; \
|
|
echo "***"; \
|
|
fi
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(datadir)/icons/hicolor/icon-theme.cache;
|