summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Finlay <finlay@src.gnome.org>2007-08-22 03:01:56 +0000
committerJohn Finlay <finlay@src.gnome.org>2007-08-22 03:01:56 +0000
commitaf62ae6b93711809d8ae745ba64c5317f2dd660c (patch)
tree75a78a77f9952966ed0430ca5cbe6d613bfe2a13
parent4f482fffaa7ec6d21b4084a44d0446bf79e130aa (diff)
downloadpygtk-af62ae6b93711809d8ae745ba64c5317f2dd660c.tar.gz
Install the stock item icons and cursor images with the ref docs.
svn path=/trunk/; revision=2885
-rw-r--r--docs/Makefile.am12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 5ccf062e..07d2a6d1 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -598,13 +598,23 @@ install-data-local:
if test "$$installfiles" = '$(srcdir)/html/*'; \
then echo '-- Nothing to install' ; \
else \
- $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \
+ $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) \
+ $(DESTDIR)$(TARGET_DIR)/icons \
+ $(DESTDIR)$(TARGET_DIR)/cursors; \
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
done; \
echo '-- Installing $(srcdir)/html/index.sgml' ; \
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
+ for i in $(srcdir)/icons/*; do \
+ echo '-- Installing '$$i ; \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR)/icons; \
+ done; \
+ for i in $(srcdir)/cursors/*; do \
+ echo '-- Installing '$$i ; \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR)/cursors; \
+ done; \
fi
install-data-hook: