]> Dogcows Code - chaz/homebank/blob - themes/hicolor/Makefile.am
Merge branch 'upstream'
[chaz/homebank] / themes / hicolor / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 NULL =
4
5 public_icons_themes = \
6 hicolor \
7 $(NULL)
8
9 public_icons = \
10 $(NULL)
11
12 private_icons = \
13 hicolor_actions_16x16_hb-ope-future.png \
14 hicolor_actions_24x24_hb-document-new.png \
15 hicolor_actions_24x24_hb-document-open.png \
16 hicolor_actions_24x24_hb-document-save.png \
17 hicolor_actions_24x24_hb-document-save-as.png \
18 hicolor_actions_24x24_hb-account.png \
19 hicolor_actions_24x24_hb-archive.png \
20 hicolor_actions_24x24_hb-assign.png \
21 hicolor_actions_24x24_hb-assign-run.png \
22 hicolor_actions_24x24_hb-budget.png \
23 hicolor_actions_24x24_hb-category.png \
24 hicolor_actions_24x24_hb-currency.png \
25 hicolor_actions_24x24_hb-file-export.png \
26 hicolor_actions_24x24_hb-file-import.png \
27 hicolor_actions_24x24_hb-file-valid.png \
28 hicolor_actions_24x24_hb-file-invalid.png \
29 hicolor_actions_24x24_hb-filter.png \
30 hicolor_actions_24x24_hb-legend.png \
31 hicolor_actions_24x24_hb-ope-add.png \
32 hicolor_actions_24x24_hb-ope-cleared.png \
33 hicolor_actions_24x24_hb-ope-delete.png \
34 hicolor_actions_24x24_hb-ope-edit.png \
35 hicolor_actions_24x24_hb-ope-herit.png \
36 hicolor_actions_24x24_hb-ope-multiedit.png \
37 hicolor_actions_24x24_hb-ope-reconciled.png \
38 hicolor_actions_24x24_hb-ope-convert.png \
39 hicolor_actions_24x24_hb-ope-show.png \
40 hicolor_actions_24x24_hb-payee.png \
41 hicolor_actions_24x24_hb-rate.png \
42 hicolor_actions_24x24_hb-rep-balance.png \
43 hicolor_actions_24x24_hb-rep-budget.png \
44 hicolor_actions_24x24_hb-rep-stats.png \
45 hicolor_actions_24x24_hb-rep-time.png \
46 hicolor_actions_24x24_hb-rep-vehicle.png \
47 hicolor_actions_24x24_hb-view-bar.png \
48 hicolor_actions_24x24_hb-view-column.png \
49 hicolor_actions_24x24_hb-view-donut.png \
50 hicolor_actions_24x24_hb-view-line.png \
51 hicolor_actions_24x24_hb-view-list.png \
52 hicolor_actions_24x24_hb-view-pie.png \
53 hicolor_actions_24x24_hb-view-stack.png \
54 hicolor_actions_24x24_hb-view-refresh.png \
55 hicolor_status_16x16_flt-exclude.png \
56 hicolor_status_16x16_flt-inactive.png \
57 hicolor_status_16x16_flt-include.png \
58 hicolor_status_16x16_hb-ope-new.png \
59 hicolor_status_16x16_hb-ope-similar.png \
60 hicolor_status_16x16_hb-ope-auto.png \
61 hicolor_status_16x16_hb-ope-budget.png \
62 hicolor_status_16x16_hb-ope-edit.png \
63 hicolor_status_16x16_hb-ope-cleared.png \
64 hicolor_status_16x16_hb-ope-remind.png \
65 hicolor_status_16x16_hb-ope-reconciled.png \
66 hicolor_status_16x16_pm-none.png \
67 hicolor_status_16x16_pm-ccard.png \
68 hicolor_status_16x16_pm-dcard.png \
69 hicolor_status_16x16_pm-check.png \
70 hicolor_status_16x16_pm-cash.png \
71 hicolor_status_16x16_pm-transfer.png \
72 hicolor_status_16x16_pm-intransfer.png \
73 hicolor_status_16x16_pm-none.png \
74 hicolor_status_16x16_pm-standingorder.png \
75 hicolor_status_16x16_pm-epayment.png \
76 hicolor_status_16x16_pm-deposit.png \
77 hicolor_status_16x16_pm-fifee.png \
78 hicolor_status_16x16_pm-directdebit.png \
79 hicolor_status_48x48_prf-backup.png \
80 hicolor_status_48x48_prf-columns.png \
81 hicolor_status_48x48_prf-euro.png \
82 hicolor_status_48x48_prf-folder.png \
83 hicolor_status_48x48_prf-general.png \
84 hicolor_status_48x48_prf-import.png \
85 hicolor_status_48x48_prf-interface.png \
86 hicolor_status_48x48_prf-locale.png \
87 hicolor_status_48x48_prf-report.png \
88 hicolor_actions_scalable_edit-split-symbolic.svg \
89 hicolor_actions_scalable_toggle-sign-symbolic.svg \
90 hicolor_actions_scalable_list-collapse-all-symbolic.svg \
91 hicolor_actions_scalable_list-expand-all-symbolic.svg \
92 $(NULL)
93
94
95 EXTRA_DIST = \
96 $(public_icons) \
97 $(private_icons) \
98 $(noinst_DATA) \
99 $(NULL)
100
101 ###############################################################################
102
103 gtk_update_icon_cache = gtk-update-icon-cache -f -t
104
105 update-icon-cache:
106 @-if test -z "$(DESTDIR)"; then \
107 echo "Updating Gtk icon cache."; \
108 for theme in $(public_icons_themes); do \
109 $(gtk_update_icon_cache) $(datadir)/icons/$$theme; \
110 done; \
111 else \
112 echo "*** Icon cache not updated. After (un)install, run this:"; \
113 for theme in $(public_icons_themes); do \
114 echo "*** $(gtk_update_icon_cache) $(datadir)/icons/$$theme"; \
115 done; \
116 fi
117
118 install-icons:
119 for icon in $(public_icons); do \
120 THEME=`echo $$icon | cut -d_ -f1`; \
121 CONTEXT=`echo $$icon | cut -d_ -f2`; \
122 SIZE=`echo $$icon | cut -d_ -f3`; \
123 ICONFILE=`echo $$icon | cut -d_ -f4`; \
124 mkdir -p $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
125 $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
126 done; \
127 for icon in $(private_icons); do \
128 THEME=`echo $$icon | cut -d_ -f1`; \
129 CONTEXT=`echo $$icon | cut -d_ -f2`; \
130 SIZE=`echo $$icon | cut -d_ -f3`; \
131 ICONFILE=`echo $$icon | cut -d_ -f4`; \
132 mkdir -p $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT; \
133 $(INSTALL_DATA) $(srcdir)/$$icon $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
134 done
135
136 uninstall-icons:
137 -for icon in $(public_icons); do \
138 THEME=`echo $$icon | cut -d_ -f1`; \
139 CONTEXT=`echo $$icon | cut -d_ -f2`; \
140 SIZE=`echo $$icon | cut -d_ -f3`; \
141 ICONFILE=`echo $$icon | cut -d_ -f4`; \
142 rm -f $(DESTDIR)$(datadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
143 done; \
144 for icon in $(private_icons); do \
145 THEME=`echo $$icon | cut -d_ -f1`; \
146 CONTEXT=`echo $$icon | cut -d_ -f2`; \
147 SIZE=`echo $$icon | cut -d_ -f3`; \
148 ICONFILE=`echo $$icon | cut -d_ -f4`; \
149 rm -f $(DESTDIR)$(pkgdatadir)/icons/$$THEME/$$SIZE/$$CONTEXT/$$ICONFILE; \
150 done
151
152 install-data-local: install-icons update-icon-cache
153
154 uninstall-local: uninstall-icons update-icon-cache
This page took 0.036706 seconds and 4 git commands to generate.