File: Makefile.am

package info (click to toggle)
xfce4-windowck-plugin 0.5.1-1
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,388 kB
  • sloc: sh: 4,360; ansic: 2,841; makefile: 283
file content (23 lines) | stat: -rw-r--r-- 544 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $Id$

SUBDIRS =								\
	48x48

gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor

update-icon-cache:
	@-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

install-data-hook: update-icon-cache

uninstall-hook: update-icon-cache

# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: