summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Ferretti <elle.uca@libero.it>2009-08-22 01:55:41 +0200
committerLuca Ferretti <elle.uca@libero.it>2009-08-22 01:55:41 +0200
commitbded369a0bd9cf05cdab756ffd17ddb7253090f3 (patch)
tree896883b5580f230bbc526400713a22b0b2638416
parent5bce70e4f6fe0b9e83e555d22429f12ed84a674f (diff)
downloadadwaita-icon-theme-bded369a0bd9cf05cdab756ffd17ddb7253090f3.tar.gz
Add check rule to 48x48/animations
-rw-r--r--48x48/animations/Makefile.am18
1 files changed, 18 insertions, 0 deletions
diff --git a/48x48/animations/Makefile.am b/48x48/animations/Makefile.am
index d761b6783..3bf285f00 100644
--- a/48x48/animations/Makefile.am
+++ b/48x48/animations/Makefile.am
@@ -16,5 +16,23 @@ MAINTAINERCLEANFILES = \
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