blob: 17ade18abe0f088107b4854743d4c52c09ed4c55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
themedir = $(pkgdatadir)/icons/hicolor
size = 24x24
context = actions
iconsdir = $(themedir)/$(size)/$(context)
icons_DATA = \
download.png \
web-bookmarks.png \
web-history.png \
location-entry.png
EXTRA_DIST = \
$(icons_DATA)
MAINTAINERCLEANFILES = \
Makefile.in
install-data-local: install-iconsDATA
if test -n "$(ICONMAP)" ; then \
(cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) ; \
fi
uninstall-am: uninstall-iconsDATA
|