diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-11-01 10:41:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-11-01 10:41:18 +0000 |
commit | fea095df52551f92484763264af592160d9e8a1e (patch) | |
tree | 5719c92d281b129b9263258874da0fc0c43d2483 /make-dist | |
parent | c8d0a68e9e478f0591fef17ae336525d75d59d1a (diff) | |
download | emacs-fea095df52551f92484763264af592160d9e8a1e.tar.gz |
Put nt subdir and its subdirs in the dist.
(lib-src): Put makefile.nt in the dist.
(lisp): Put makefile.nt in the dist.
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/make-dist b/make-dist index 29c5f7e1065..aa0a86d9e7e 100755 --- a/make-dist +++ b/make-dist @@ -171,6 +171,7 @@ echo "Creating subdirectories." # 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 mkdir ${tempdir}/${subdir} done @@ -183,7 +184,7 @@ echo "Making links to \`lisp'." ln [a-zA-Z]*.dat ../${tempdir}/lisp ## simula.el doesn't keep abbreviations in simula.defns any more. ## ln [a-zA-Z]*.defns ../${tempdir}/lisp - ln ChangeLog Makefile ChangeLog.? README dired.todo ../${tempdir}/lisp + ln ChangeLog Makefile makefile.nt ChangeLog.? README dired.todo ../${tempdir}/lisp cd ../${tempdir}/lisp rm -f TAGS =* rm -f site-init site-init.el site-init.elc @@ -251,11 +252,27 @@ echo "Making links to \`lib-src'." (cd lib-src ln [a-zA-Z]*.[chy] [a-zA-Z]*.lex ../${tempdir}/lib-src ln ChangeLog Makefile.in.in README testfile vcdiff ../${tempdir}/lib-src - ln emacs.csh rcs2log rcs-checkin ../${tempdir}/lib-src + ln emacs.csh rcs2log rcs-checkin makefile.nt ../${tempdir}/lib-src cd ../${tempdir}/lib-src rm -f getdate.tab.c y.tab.c y.tab.h rm -f =* TAGS) +echo "Making links to \`nt'." +(cd nt + ln [a-z]*.cmd makefile.* todo ChangeLog install readme ../${tempdir}/nt) + +echo "Making links to \`nt/inc'." +(cd nt/inc + ln [a-z]*.h ../${tempdir}/nt/inc) + +echo "Making links to \`nt/inc/sys'." +(cd nt/inc/sys + ln [a-z]*.h ../${tempdir}/nt/inc/sys) + +echo "Making links to \`nt/src'." +(cd nt/src + ln [a-z]*.h ../${tempdir}/nt/src) + echo "Making links to \`msdos'." (cd msdos ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos |