summaryrefslogtreecommitdiff
path: root/docs/reference/gdk-pixbuf/Makefile.am
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2003-10-24 22:16:07 +0000
committerOwen Taylor <otaylor@src.gnome.org>2003-10-24 22:16:07 +0000
commit3a7a64aa46ea1c312c06e17a177c81fddfa93683 (patch)
tree12608b485ea365f093a99c5c7e0654049a4bcb2c /docs/reference/gdk-pixbuf/Makefile.am
parent1e5c8e64f5f44adc288e16bc2aafbb06372e600f (diff)
downloadgtk+-3a7a64aa46ea1c312c06e17a177c81fddfa93683.tar.gz
=== Released 2.3.0 ===GTK_2_3_0
Fri Oct 24 16:54:04 2003 Owen Taylor <otaylor@redhat.com> * === Released 2.3.0 === * configure.in: Remove a stray comma. * README.in: Fix a few notes about Xft 1 and pango-1.0. * NEWS: Finish updates for 2.3.0. * po/Makefile.in.in: Update to latest GLib version.
Diffstat (limited to 'docs/reference/gdk-pixbuf/Makefile.am')
-rw-r--r--docs/reference/gdk-pixbuf/Makefile.am16
1 files changed, 13 insertions, 3 deletions
diff --git a/docs/reference/gdk-pixbuf/Makefile.am b/docs/reference/gdk-pixbuf/Makefile.am
index 7893c29ce0..d5199d41a1 100644
--- a/docs/reference/gdk-pixbuf/Makefile.am
+++ b/docs/reference/gdk-pixbuf/Makefile.am
@@ -62,6 +62,13 @@ HTML_IMAGES =
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS=
+include $(top_srcdir)/gtk-doc.make
+
+# Other files to distribute
+EXTRA_DIST += version.xml.in
+
+########################################################################
+
man_MANS = gdk-pixbuf-csource.1 gdk-pixbuf-query-loaders.1
if ENABLE_MAN
@@ -71,7 +78,10 @@ if ENABLE_MAN
endif
-include $(top_srcdir)/gtk-doc.make
+BUILT_EXTRA_DIST = $(man_MANS)
-# Other files to distribute
-EXTRA_DIST += version.xml.in
+dist-hook-local: $(BUILT_EXTRA_DIST)
+ files='$(BUILT_EXTRA_DIST)'; \
+ for f in $$files; do \
+ if test -f $$f; then d=.; else d=$(srcdir); fi; \
+ cp $$d/$$f $(distdir) || exit 1; done