blob: 4643814836f558ff64ed9a81560a9d0f9db719df (
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
60
|
themedir = $(datadir)/icons/ContrastHigh-SVG
size = scalable
context = devices
icondir = $(themedir)/$(size)/$(context)
icon_DATA = \
audio-input-microphone.svg \
battery.svg \
camera-photo.svg \
camera-video.svg \
camera-web.svg \
computer.svg \
drive-harddisk.svg \
drive-optical.svg \
drive-removable-media.svg \
input-keyboard.svg \
input-mouse.svg \
input-tablet.svg \
media-flash.svg \
media-floppy.svg \
media-optical.svg \
media-tape.svg \
multimedia-player.svg \
network-wired.svg \
network-wireless.svg \
pda.svg \
phone.svg \
printer.svg \
scanner.svg \
video-display.svg
placeholder_FILES = \
audio-card.svg \
input-gaming.svg \
modem.svg
if PLACEHOLDERS
icon_DATA += $(placeholder_FILES)
endif
EXTRA_DIST = \
$(icon_DATA) \
$(placeholder_FILES)
if LEGACY_ICON_MAPPING
install-data-local: install-iconDATA
(cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
endif
uninstall-symlinks:
list=`ls $(DESTDIR)$(themedir)/$(size)/$(context)`; \
for p in $$list; do \
if test -h $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; then \
rm -f $(DESTDIR)$(themedir)/$(size)/$(context)/$$p; \
fi; \
done
uninstall-am: uninstall-iconDATA uninstall-symlinks
|