diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-23 20:26:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-23 20:26:16 +0000 |
commit | 1095137c14491ecec65d42ed9d58e811e9a10d24 (patch) | |
tree | 7d6ee7e8d394f58db75b2e16bbab8f9458ed204b /make-dist | |
parent | 8ad8701907695c61caa8035f9440e1d24e216127 (diff) | |
download | emacs-1095137c14491ecec65d42ed9d58e811e9a10d24.tar.gz |
Create subdir etc/e. Make links to it.
Put man/Makefile.in in dist, instead of man/Makefile.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/make-dist b/make-dist index aa0a86d9e7e..141b6d5e6a5 100755 --- a/make-dist +++ b/make-dist @@ -167,12 +167,10 @@ echo "Updating version number in README." echo "Creating subdirectories." -# I think we're not going to distribute anything in external-lisp, so -# I've removed it from this list. for subdir in lisp lisp/term site-lisp \ src src/m src/s src/bitmaps lib-src oldXMenu lwlib \ nt nt/inc nt/inc/sys nt/src \ - etc lock cpp info man msdos shortnames vms; do + etc etc/e lock cpp info man msdos shortnames vms; do mkdir ${tempdir}/${subdir} done @@ -209,14 +207,6 @@ echo "Making links to \`lisp/term'." ln README ../../${tempdir}/lisp/term rm -f =* TAGS) -### echo "Making links to \`external-lisp'." -### ### Don't distribute =*.el files or TAGS. -### (cd external-lisp -### ln [a-zA-Z]*.el ../${tempdir}/external-lisp -### ln [a-zA-Z]*.elc ../${tempdir}/external-lisp -### ln ChangeLog README ../${tempdir}/external-lisp -### rm -f =* TAGS) - echo "Making links to \`src'." ### Don't distribute =*.[ch] files, or the configured versions of ### config.h.in, paths.h.in, or Makefile.in.in, or TAGS. @@ -300,6 +290,12 @@ echo "Making links to \`etc'." rm -f DOC* *~ \#*\# *.dvi *.log *,v =* core rm -f TAGS) +echo "Making links to \`etc/e'." +(cd etc/e + ln `ls -d * | grep -v 'RCS' ../${tempdir}/etc/e + cd ../${tempdir}/etc + rm -f DOC* *~ \#*\# *,v =* core) + echo "Making links to \`cpp'." (cd cpp ln cccp.c cexp.y Makefile README ../${tempdir}/cpp) @@ -317,7 +313,7 @@ echo "Making links to \`man'." (cd man ln *.texi *.aux *.cps *.fns *.kys *.vrs ../${tempdir}/man test -f README && ln README ../${tempdir}/man - test -f Makefile && ln Makefile ../${tempdir}/man + test -f Makefile.in && ln Makefile.in ../${tempdir}/man ln ChangeLog split-man ../${tempdir}/man cp texinfo.tex texindex.c getopt.c ../${tempdir}/man cd ../${tempdir}/man |