blob: 41ea2d4b5aa547c7d48c96dca53ff23ee0b4eee3 (
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
61
|
size = 48x48
context = actions
iconsdir = $(themedir)/$(size)/$(context)
icons_DATA = \
address-book-new.png \
application-exit.png \
bookmark-new.png \
call-start.png \
call-stop.png \
contact-new.png \
document-new.png \
document-open.png \
document-page-setup.png \
document-print.png \
document-properties.png \
document-revert.png \
document-save-as.png \
document-save.png \
edit-delete.png \
edit-find.png \
edit-find-replace.png \
edit-select-all.png \
folder-new.png \
format-text-direction-ltr.png \
format-text-direction-rtl.png \
mail-mark-junk.png \
mail-mark-not-junk.png \
system-lock-screen.png
EXTRA_DIST = \
$(icons_DATA)
MAINTAINERCLEANFILES = \
Makefile.in
install-data-local: install-iconsDATA
(cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context))
check:
if test -r CVS/Entries; then \
for icon in *.png; do \
if grep $$icon CVS/Entries > /dev/null; then \
if ! grep $$icon Makefile > /dev/null; then \
echo "Missing $$icon in Makefile.am"; \
exit 1; \
fi; \
fi; \
done; \
else \
for icon in *.png; do \
if ! grep $$icon Makefile > /dev/null; then \
echo "Missing $$icon in Makefile.am"; \
exit 1; \
fi; \
done; \
fi
-include $(top_srcdir)/git.mk
|