summaryrefslogtreecommitdiff
path: root/doc/Makefile.am
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-01-12 02:16:50 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-01-12 02:16:50 +0000
commitfa88b584e9d9f191023218c18064f2dfbed797b8 (patch)
treeccc541f036843b4aca785b59eda53f0c3d3ee0cf /doc/Makefile.am
parentd10385d570a103c9d58dd4716e806ce6613c2b96 (diff)
downloadguile-fa88b584e9d9f191023218c18064f2dfbed797b8.tar.gz
* Makefile.am (dist-hook): Updated to include oldfmt.c in
distribution archive.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r--doc/Makefile.am8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index fbdf5d0f4..fd6821dd0 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -24,8 +24,12 @@ data_rep_TEXINFOS = data-rep.texi version.texi
EXAMPLE_SMOB_FILES = \
ChangeLog Makefile README COPYING image-type.c image-type.h myguile.c
+OLDFMT = oldfmt.c
+
dist-hook:
mkdir $(distdir)/example-smob
- (dest="`cd $(distdir)/example-smob; pwd`"; \
- cd $(srcdir)/example-smob; \
+ (cd $(srcdir); \
+ cp $(OLDFMT) $(distdir); \
+ dest="`cd $(distdir)/example-smob; pwd`"; \
+ cd example-smob; \
cp $(EXAMPLE_SMOB_FILES) $$dest)