~bratsche/gdm/gdm-greeter-gtkrc

« back to all changes in this revision

Viewing changes to pixmaps/32x32/Makefile.am

  • Committer: Bazaar Package Importer
  • Date: 2008-11-05 23:50:46 UTC
  • Revision ID: jamesw@ubuntu.com-20081105235046-a1f87qv0x87kkdok
Tags: upstream-ubuntu-2.19.4
ImportĀ upstreamĀ versionĀ 2.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
appsicondir = \
4
4
        $(datadir)/icons/hicolor/32x32/apps
5
 
appsicon_DATA = \
 
5
dist_appsicon_DATA = \
6
6
        gdm-setup.png \
7
7
        gdm-xnest.png
8
8
 
9
 
EXTRA_DIST = \
10
 
        $(appsicon_DATA)
11
 
 
12
9
MAINTAINERCLEANFILES = \
13
10
        Makefile.in
 
11
 
 
12
gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
 
13
install-data-hook: update-icon-cache
 
14
uninstall-hook: update-icon-cache
 
15
update-icon-cache:
 
16
        @-if test -z "$(DESTDIR)"; then \
 
17
                echo "Updating Gtk icon cache."; \
 
18
                $(gtk_update_icon_cache); \
 
19
        else \
 
20
                echo "*** Icon cache not updated.  After (un)install, run this:"; \
 
21
                echo "***   $(gtk_update_icon_cache)"; \
 
22
        fi
 
23