summaryrefslogtreecommitdiff
path: root/doc/Makefile.am
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1998-10-15 21:48:12 +0000
committerJim Blandy <jimb@red-bean.com>1998-10-15 21:48:12 +0000
commit7d12f0336780c2cacc3cea75223ce701c2abdace (patch)
tree81810a860964e1453463fd57ab10ea8ccc6dd447 /doc/Makefile.am
parent716290a7e0e08af2bf2ff5461c014b598f0ef482 (diff)
downloadguile-7d12f0336780c2cacc3cea75223ce701c2abdace.tar.gz
* data-rep.texi: Extended to accomodate a full running example,
provided with the manual. * example-smob: A new subdirectory, containing example files for the manual chapter on smobs. * Makefile.am (EXAMPLE_SMOB_FILES, dist-hook): New variable and target, to get the example-smob directory into the distribution. * Makefile.in: Regenerated.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r--doc/Makefile.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 2c759c97c..fc1dd1439 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,2 +1,11 @@
info_TEXINFOS = data-rep.texi
data_rep_TEXINFOS = data-rep.texi version.texi
+
+EXAMPLE_SMOB_FILES = \
+ ChangeLog Makefile README image-type.c image-type.h myguile.c
+
+dist-hook:
+ mkdir $(distdir)/example-smob
+ (dest="`cd $(distdir)/example-smob; pwd`"; \
+ cd $(srcdir)/example-smob; \
+ cp $(EXAMPLE_SMOB_FILES) $$dest)