summaryrefslogtreecommitdiff
path: root/data/icons/Makefile.am
blob: 5439998ce44e14e6cbe11c6a5bf07c2638217e7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
icon16dir = $(datadir)/icons/hicolor/16x16/apps
icon16_DATA = \
	hicolor/16x16/apps/org.gnome.dfeet.png \
	hicolor/16x16/apps/dfeet-method-category.png \
	hicolor/16x16/apps/dfeet-method.png \
	hicolor/16x16/apps/dfeet-object.png \
	hicolor/16x16/apps/dfeet-property-category.png \
	hicolor/16x16/apps/dfeet-property.png \
	hicolor/16x16/apps/dfeet-signal-category.png \
	hicolor/16x16/apps/dfeet-signal.png \
	hicolor/16x16/apps/dfeet-icon-default-service.png

icon24dir = $(datadir)/icons/hicolor/24x24/apps
icon24_DATA = hicolor/24x24/apps/org.gnome.dfeet.png

icon32dir = $(datadir)/icons/hicolor/32x32/apps
icon32_DATA = hicolor/32x32/apps/org.gnome.dfeet.png

icon48dir = $(datadir)/icons/hicolor/48x48/apps
icon48_DATA = hicolor/48x48/apps/org.gnome.dfeet.png

#icon64dir = $(datadir)/icons/hicolor/64x64/apps
#icon64_DATA = hicolor/64x64/apps/org.gnome.dfeet.png

#icon128dir = $(datadir)/icons/hicolor/128x128/apps
#icon128_DATA = hicolor/128x128/apps/org.gnome.dfeet.png

icon256dir = $(datadir)/icons/hicolor/256x256/apps
icon256_DATA = hicolor/256x256/apps/org.gnome.dfeet.png

scalabledir = $(datadir)/icons/hicolor/scalable/apps
scalable_DATA = hicolor/scalable/apps/org.gnome.dfeet.svg

scalablehcdir = $(datadir)/icons/HighContrast/scalable/apps
scalablehc_DATA = HighContrast/scalable/apps/org.gnome.dfeet.svg


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

install-data-hook: update-icon-cache
uninstall-hook: update-icon-cache
update-icon-cache:
	@-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

EXTRA_DIST = \
	$(icon16_DATA)  	\
	$(icon24_DATA)  	\
	$(icon32_DATA)  	\
	$(icon48_DATA)  	\
	$(icon256_DATA)  	\
	$(scalable_DATA)	\
	$(scalablehc_DATA)