diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-01-12 02:16:50 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-01-12 02:16:50 +0000 |
commit | fa88b584e9d9f191023218c18064f2dfbed797b8 (patch) | |
tree | ccc541f036843b4aca785b59eda53f0c3d3ee0cf | |
parent | d10385d570a103c9d58dd4716e806ce6613c2b96 (diff) | |
download | guile-fa88b584e9d9f191023218c18064f2dfbed797b8.tar.gz |
* Makefile.am (dist-hook): Updated to include oldfmt.c in
distribution archive.
-rw-r--r-- | doc/Makefile.am | 8 |
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) |