(lock_if_free): After deleting a stale lock,
[bpt/emacs.git] / make-dist
CommitLineData
f7dbcf3c 1#!/bin/sh
76fb0a58
JB
2
3#### make-dist: create an Emacs distribution tar file from the current
1d650ff1 4#### source tree. This basically creates a duplicate directory
76fb0a58
JB
5#### structure, and then hard links into it only those files that should
6#### be distributed. This means that if you add a file with an odd name,
7#### you should make sure that this script will include it.
f7dbcf3c 8
e4e1c623 9# Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
4c9c1174
KH
10#
11# This file is part of GNU Emacs.
12#
13# GNU Emacs is free software; you can redistribute it and/or modify
14# it under the terms of the GNU General Public License as published by
15# the Free Software Foundation; either version 2, or (at your option)
16# any later version.
17#
18# GNU Emacs is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21# GNU General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
1fb87c77
KH
24# along with GNU Emacs; see the file COPYING. If not, write to the
25# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26# Boston, MA 02111-1307, USA.
4c9c1174 27
f7dbcf3c
JB
28progname="$0"
29
76fb0a58
JB
30### Exit if a command fails.
31### set -e
f7dbcf3c 32
76fb0a58
JB
33### Print out each line we read, for debugging's sake.
34### set -v
f7dbcf3c 35
ccd57f4d 36## Don't restrict access to any files.
67ffab69
RS
37umask 0
38
c75cfabd 39update=yes
e4e1c623 40check=yes
f22edcea
RS
41clean_up=no
42make_tar=no
1260d6ba 43newer=""
f7dbcf3c
JB
44
45while [ $# -gt 0 ]; do
46 case "$1" in
f22edcea
RS
47 ## This option tells make-dist to delete the staging directory
48 ## when done. It is useless to use this unless you make a tar file.
49 "--clean-up" )
50 clean_up=yes
4746118a 51 ;;
f22edcea
RS
52 ## This option tells make-dist to make a tar file.
53 "--tar" )
54 make_tar=yes
f7dbcf3c 55 ;;
c75cfabd
RS
56 ## This option tells make-dist not to recompile or do analogous things.
57 "--no-update" )
58 update=no
59 ;;
e4e1c623
RS
60 ## This option says don't check for bad file names, etc.
61 "--no-check" )
62 check=no
63 ;;
76fb0a58 64 ## This option tells make-dist to make the distribution normally, then
7b9cd64c
ER
65 ## remove all files older than the given timestamp file. This is useful
66 ## for creating incremental or patch distributions.
1260d6ba 67 "--newer")
ef15f270
JB
68 newer="$2"
69 new_extension=".new"
1260d6ba
ER
70 shift
71 ;;
922ac4c5
JB
72 ## This option tells make-dist to use `compress' instead of gzip.
73 ## Normally, make-dist uses gzip whenever it is present.
74 "--compress")
75 default_gzip="compress"
76 ;;
f7dbcf3c
JB
77 * )
78 echo "${progname}: Unrecognized argument: $1" >&2
79 exit 1
80 ;;
81 esac
82 shift
83done
84
76fb0a58 85### Make sure we're running in the right place.
f7dbcf3c 86if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
1260d6ba
ER
87 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
88 echo "${progname} must be run in the top directory of the Emacs" >&2
0d122844 89 echo "distribution tree. cd to that directory and try again." >&2
f7dbcf3c
JB
90 exit 1
91fi
92
c75cfabd 93### Find where to run Emacs.
fcea5346
KH
94### (We don't accept EMACS=t as an answer, since that probably only means
95### that the shell is running in an Emacs window.)
c75cfabd
RS
96if [ $update = yes ];
97then
98 if [ -f src/emacs ];
99 then
100 EMACS=`pwd`/src/emacs
101 else
fcea5346 102 if [ "x$EMACS" = "x" -o "x$EMACS" = "xt" ];
c75cfabd
RS
103 then
104 echo You must specify the EMACS environment variable 2>&1
105 exit 1
106 fi
107 fi
108fi
109
76fb0a58 110### Find out which version of Emacs this is.
0e0186f1 111shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
47d105b0 112 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
0e0186f1
RS
113version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
114 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
f7dbcf3c 115if [ ! "${version}" ]; then
21764d60 116 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
f7dbcf3c
JB
117 exit 1
118fi
119
21764d60 120echo Version numbers are $version and $shortversion
47d105b0 121
c75cfabd
RS
122if [ $update = yes ];
123then
124 if grep -s "GNU Emacs version ${shortversion}" ./man/emacs.texi > /dev/null; then
125 true
126 else
127 echo "You must update the version number in \`./man/emacs.texi'"
128 sleep 5
129 fi
f753e9aa
JB
130fi
131
bb160193
RS
132### Make sure we don't already have a directory emacs-${version}.
133
134emacsname="emacs-${version}${new_extension}"
135
136if [ -d ${emacsname} ]
137then
138 echo Directory "${emacsname}" already exists >&2
139 exit 1
140fi
141
76fb0a58 142### Make sure the subdirectory is available.
1260d6ba 143tempparent="make-dist.tmp.$$"
f7dbcf3c 144if [ -d ${tempparent} ]; then
1260d6ba
ER
145 echo "${progname}: staging directory \`${tempparent}' already exists.
146Perhaps a previous invocation of \`${progname}' failed to clean up after
147itself. Check that directories whose names are of the form
148\`make-dist.tmp.NNNNN' don't contain any important information, remove
149them, and try again." >&2
f7dbcf3c
JB
150 exit 1
151fi
152
e4e1c623
RS
153### Find where to run Emacs.
154if [ $check = yes ];
155then
156 ### Check for .elc files with no corresponding .el file.
157 ls -1 lisp/[a-z]*.el lisp/[a-z]*/[a-z]*.el \
158 leim/[a-z]*.el leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
159 ls -1 lisp/[a-z]*.elc lisp/[a-z]*/[a-z]*.elc \
160 leim/[a-z]*.elc leim/[a-z]*/[a-z]*.elc > /tmp/elc
161 bogosities="`comm -13 /tmp/el /tmp/elc`"
162 if [ "${bogosities}" != "" ]; then
163 echo "The following .elc files have no corresponding .el files:"
164 echo "${bogosities}"
8615e792 165 fi
e4e1c623
RS
166 rm -f /tmp/el /tmp/elc
167
168 ### Check for .el files with no corresponding .elc file.
3985f85d
RS
169 (cd lisp; ls -1 [a-z]*.el [a-z]*/[a-z]*.el ; \
170 cd ../leim; ls -1 [a-z]*.el [a-z]*/[a-z]*.el) > /tmp/el
171 (cd lisp; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc; \
172 cd ../leim; ls -1 [a-z]*.elc [a-z]*/[a-z]*.elc) | sed 's/\.elc$/.el/' > /tmp/elc
e4e1c623
RS
173 losers="`comm -23 /tmp/el /tmp/elc`"
174 bogosities=
175 for file in $losers; do
176 file1=`echo $file | sed -e "s|.*/||"`
177 if ! grep -q "dontcompilefiles:.* $file1\($\| \)" lisp/Makefile; then
178 case $file in
179 site-init.el | site-load.el | site-start.el | default.el)
180 ;;
181 term/*)
182 ;;
183 *)
184 bogosities="$file $bogosities"
185 ;;
186 esac
187 fi
188 done
189 if [ x"${bogosities}" != x"" ]; then
190 echo "The following .el files have no corresponding .elc files:"
191 echo "${bogosities}"
192 fi
193 rm -f /tmp/el /tmp/elc
8615e792 194
e4e1c623
RS
195 ### Check for .el files that would overflow the 14-char limit if compiled.
196 long=`find lisp leim -name '[a-zA-Z0-9]??????????*.el' -print`
197 if [ "$long" != "" ]; then
198 echo "The following .el file names are too long:"
199 echo "$long"
200 fi
f5674423
KH
201fi
202
b4e84d5d
JB
203### Make sure configure is newer than configure.in.
204if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then
21764d60
KH
205 echo "\`./configure.in' is newer than \`./configure'" >&2
206 echo "Running autoconf" >&2
28335560 207 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
b4e84d5d
JB
208fi
209
c75cfabd
RS
210if [ $update = yes ];
211then
212 echo "Updating Info files"
980ab937 213
870cfc55 214 (cd man; make -f Makefile.in srcdir=. info)
980ab937 215
e888d449 216 echo "Updating finder, custom and autoload data"
4f23c692 217
7cf45b04
RS
218 (cd lisp; make updates EMACS=$EMACS)
219
220 echo "Updating leim-list.el"
221
222 (cd leim; make leim-list.el EMACS=$EMACS)
29c98ed3
RS
223
224 echo "Recompiling Lisp files"
225
226 $EMACS -batch -f batch-byte-recompile-directory lisp leim
c75cfabd 227fi
0588a761 228
f07eebe0
KH
229echo "Making lisp/MANIFEST"
230
73494596
RS
231(cd lisp;
232 files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'`
233 for dir in [!=]*; do
234 if [ -d $dir ] && [ $dir != term ] && [ $dir != RCS ]; then
235 echo $dir
236 thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'`
237 files="$files $thisdir"
238 fi
239 done
240 head -1 $files | grep '^;' | sed -e 's/;;; //' | sort > MANIFEST)
f07eebe0 241
1260d6ba 242echo "Creating staging directory: \`${tempparent}'"
bb160193 243
f7dbcf3c 244mkdir ${tempparent}
f7dbcf3c
JB
245tempdir="${tempparent}/${emacsname}"
246
76fb0a58
JB
247### This trap ensures that the staging directory will be cleaned up even
248### when the script is interrupted in mid-career.
00c00348 249if [ "${clean_up}" = yes ]; then
21764d60 250 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
00c00348
ER
251fi
252
1260d6ba 253echo "Creating top directory: \`${tempdir}'"
f7dbcf3c
JB
254mkdir ${tempdir}
255
76fb0a58
JB
256### We copy in the top-level files before creating the subdirectories in
257### hopes that this will make the top-level files appear first in the
258### tar file; this means that people can start reading the INSTALL and
259### README while the rest of the tar file is still unpacking. Whoopee.
21764d60 260echo "Making links to top-level files"
94a13fbf 261ln GETTING.GNU.SOFTWARE INSTALL README BUGS move-if-change ${tempdir}
ac4eff2d 262ln ChangeLog Makefile.in configure configure.in ${tempdir}
6f8b09f3 263ln config.bat make-dist update-subdirs vpath.sed ${tempdir}
bb160193 264### Copy these files; they're cross-filesystem symlinks.
a4888c88 265cp mkinstalldirs ${tempdir}
76fb0a58 266cp config.sub ${tempdir}
2ed56345 267cp config.guess ${tempdir}
bb160193 268cp install.sh ${tempdir}
f7dbcf3c 269
21764d60 270echo "Updating version number in README"
f753e9aa
JB
271(cd ${tempdir}
272 awk \
273 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
274 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
275 version=${version} README > tmp.README
af559a4e 276 mv -f tmp.README README)
f753e9aa
JB
277
278
21764d60 279echo "Creating subdirectories"
91741841 280for subdir in lisp site-lisp leim real-leim real-leim/CXTERM-DIC \
5f8d02be 281 real-leim/SKK-DIC real-leim/skk real-leim/quail \
c660c0a7 282 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
5ec8424f 283 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
e4e1c623 284 etc etc/e lock info man msdos vms; do
f7dbcf3c
JB
285 mkdir ${tempdir}/${subdir}
286done
287
91741841
RS
288echo "Initializing \`leim' subdirectory"
289cp leim-Makefile.in ${tempdir}/leim/Makefile.in
290
67ffab69 291echo "Making links to \`lisp' and its subdirectories"
7b9cd64c 292### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
f7dbcf3c
JB
293(cd lisp
294 ln [a-zA-Z]*.el ../${tempdir}/lisp
295 ln [a-zA-Z]*.elc ../${tempdir}/lisp
8d2197ac 296 ln [a-zA-Z]*.dat ../${tempdir}/lisp
76fb0a58
JB
297 ## simula.el doesn't keep abbreviations in simula.defns any more.
298 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
3f7b30bf 299 ln ChangeLog Makefile makefile.nt ChangeLog.? README ../${tempdir}/lisp
67ffab69
RS
300 (cd ../${tempdir}/lisp
301 rm -f TAGS =*
302 rm -f site-init site-init.el site-init.elc
303 rm -f site-load site-load.el site-load.elc
304 rm -f site-start site-start.el site-start.elc
305 rm -f default default.el default.elc
306 )
307
308 ## Find all subdirs of lisp dir
309 for file in `find . -type d -print`; do
310 case $file in
762d80d1 311 . | .. | */Old | */RCS | */=*)
67ffab69
RS
312 ;;
313 *)
314 if [ -d $file ]; then
315 subdirs="$file $subdirs"
316 fi
317 ;;
318 esac
319 done
320
321 for file in $subdirs; do
322 echo " lisp/$file"
323 mkdir ../${tempdir}/lisp/$file
324 ln $file/[a-zA-Z]*.el ../${tempdir}/lisp/$file
325 ln $file/[a-zA-Z]*.elc ../${tempdir}/lisp/$file
326 if [ -f $file/README ]; then
327 ln $file/README ../${tempdir}/lisp/$file
328 fi
dcf3ff7f
RS
329 if [ -f $file/ChangeLog ]; then
330 ln $file/ChangeLog ../${tempdir}/lisp/$file
331 fi
67ffab69 332 done )
a78c106d 333
91741841
RS
334echo "Making links to \`leim' and its subdirectories for the LEIM distribution"
335### Don't distribute TAGS, or =*.el files.
336(cd leim
337 ln Makefile.in makefile.nt ../${tempdir}/real-leim
9089d8d7 338 ln ChangeLog README ../${tempdir}/real-leim
91741841
RS
339
340 ln CXTERM-DIC/*.tit ../${tempdir}/real-leim/CXTERM-DIC
5f8d02be 341 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/real-leim/SKK-DIC
91741841
RS
342 ln skk/*.el skk/*.elc ../${tempdir}/real-leim/skk
343 ln quail/*.el quail/*.elc ../${tempdir}/real-leim/quail
344
345 cd ../${tempdir}/real-leim
346 rm -f TAGS =* */=*)
347
348### Move the real-leim directory outside of Emacs proper.
65fda17c
RS
349(cd ${tempparent}
350 mkdir ${emacsname}-leim
351 mkdir ${emacsname}-leim/${emacsname}
352 mv ${emacsname}/real-leim ${emacsname}-leim/${emacsname}/leim)
91741841 353
21764d60 354echo "Making links to \`src'"
76fb0a58 355### Don't distribute =*.[ch] files, or the configured versions of
c3f1e1a9 356### config.in, paths.in, or Makefile.in, or TAGS.
f7dbcf3c 357(cd src
c75cfabd 358 echo " (It is ok if ln fails in some cases.)"
f7dbcf3c
JB
359 ln [a-zA-Z]*.c ../${tempdir}/src
360 ln [a-zA-Z]*.h ../${tempdir}/src
361 ln [a-zA-Z]*.s ../${tempdir}/src
c75cfabd
RS
362 ln [a-zA-Z]*.in ../${tempdir}/src
363 ln [a-zA-Z]*.opt ../${tempdir}/src
364 ## If we ended up with a symlink, or if we did not get anything
365 ## due to a cross-device symlink, copy the file.
366 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do
367 if test -f ../${tempdir}/src/$file; then
368 # test -f appears to succeed for a symlink
369 if test -L ../${tempdir}/src/$file; then
370 rm ../${tempdir}/src/$file
62dfdaf0 371 cp -p $file ../${tempdir}/src
c75cfabd
RS
372 chmod a-w ../${tempdir}/src/$file
373 fi
374 else
375 rm ../${tempdir}/src/$file
62dfdaf0 376 cp -p $file ../${tempdir}/src
c75cfabd
RS
377 chmod a-w ../${tempdir}/src/$file
378 fi
379 done
380 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
381 ln makefile.nt vms-pp.trans ../${tempdir}/src
990ee059 382 ln .gdbinit .dbxinit ../${tempdir}/src
f7dbcf3c 383 cd ../${tempdir}/src
a6903f09 384 rm -f config.h paths.h Makefile Makefile.c
7b9cd64c 385 rm -f =* TAGS)
f7dbcf3c 386
21764d60 387echo "Making links to \`src/bitmaps'"
690eca32
JB
388(cd src/bitmaps
389 ln README *.xbm ../../${tempdir}/src/bitmaps)
390
21764d60 391echo "Making links to \`src/m'"
f7dbcf3c 392(cd src/m
facbb78e
RS
393 # We call files for miscellaneous input (to linker etc) .inp.
394 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
f7dbcf3c 395
21764d60 396echo "Making links to \`src/s'"
f7dbcf3c 397(cd src/s
77427171 398 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
f7dbcf3c 399
21764d60 400echo "Making links to \`lib-src'"
f7dbcf3c 401(cd lib-src
375f1bd7 402 ln [a-zA-Z]*.[chy] ../${tempdir}/lib-src
c3f1e1a9 403 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
391b3748 404 ln emacs.csh rcs2log rcs-checkin makefile.nt ../${tempdir}/lib-src
c75cfabd
RS
405 ## If we ended up with a symlink, or if we did not get anything
406 ## due to a cross-device symlink, copy the file.
407 for file in [a-zA-Z]*.[chy]; do
408 if test -f ../${tempdir}/lib-src/$file; then
409 # test -f appears to succeed for a symlink
410 if test -L ../${tempdir}/lib-src/$file; then
411 rm ../${tempdir}/lib-src/$file
412 cp $file ../${tempdir}/lib-src
413 chmod a-w ../${tempdir}/lib-src/$file
414 fi
415 else
416 rm ../${tempdir}/lib-src/$file
417 cp $file ../${tempdir}/lib-src
418 chmod a-w ../${tempdir}/lib-src/$file
419 fi
420 done
1260d6ba 421 cd ../${tempdir}/lib-src
c75cfabd 422 rm -f Makefile.c
7b9cd64c 423 rm -f =* TAGS)
f7dbcf3c 424
21764d60 425echo "Making links to \`nt'"
391b3748 426(cd nt
e827bc37 427 ln emacs.ico emacs.rc config.nt [a-z]*.in [a-z]*.c ../${tempdir}/nt
b47cc08a 428 ln [a-z]*.bat [a-z]*.h makefile.def makefile.nt ../${tempdir}/nt
3bb3cfe7 429 ln TODO ChangeLog INSTALL README ../${tempdir}/nt)
391b3748 430
21764d60 431echo "Making links to \`nt/inc'"
391b3748 432(cd nt/inc
77427171 433 ln [a-z]*.h ../../${tempdir}/nt/inc)
391b3748 434
21764d60 435echo "Making links to \`nt/inc/sys'"
391b3748 436(cd nt/inc/sys
77427171 437 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
391b3748 438
e827bc37
RS
439echo "Making links to \`nt/inc/arpa'"
440(cd nt/inc/arpa
441 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
442
443echo "Making links to \`nt/inc/netinet'"
444(cd nt/inc/netinet
445 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
446
5ec8424f
GV
447echo "Making links to \`nt/icons'"
448(cd nt/icons
91978d00 449 ln [a-z]*.ico ../../${tempdir}/nt/icons)
5ec8424f 450
21764d60 451echo "Making links to \`msdos'"
52d7b2e5
RS
452(cd msdos
453 ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos
7fd85d56 454 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
52d7b2e5
RS
455 cd ../${tempdir}/msdos
456 rm -f =*)
457
21764d60 458echo "Making links to \`oldXMenu'"
f7dbcf3c 459(cd oldXMenu
8bdbf9ed 460 ln *.c *.h *.in ../${tempdir}/oldXMenu
df1ec566 461 ln README Imakefile ChangeLog ../${tempdir}/oldXMenu
f395c83a 462 ln compile.com descrip.mms ../${tempdir}/oldXMenu)
f7dbcf3c 463
21764d60 464echo "Making links to \`lwlib'"
c660c0a7
RS
465(cd lwlib
466 ln *.c *.h *.in ../${tempdir}/lwlib
72e7e784
KH
467 ln README Imakefile ChangeLog ../${tempdir}/lwlib
468 cd ../${tempdir}/lwlib
469 rm -f lwlib-Xol*)
c660c0a7 470
21764d60 471echo "Making links to \`etc'"
f395c83a
JB
472### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
473### tex litter.
f7dbcf3c 474(cd etc
7a6ee7ae
RS
475 files=`ls -d * | grep -v 'RCS' | grep -v 'Old' | grep -v '^e$'`
476 ln $files ../${tempdir}/etc
98d4c1d0
RS
477 ## If we ended up with a symlink, or if we did not get anything
478 ## due to a cross-device symlink, copy the file.
7a6ee7ae 479 for file in $files; do
98d4c1d0
RS
480 if test -f ../${tempdir}/etc/$file; then
481 # test -f appears to succeed for a symlink
482 if test -L ../${tempdir}/etc/$file; then
483 rm ../${tempdir}/etc/$file
484 cp $file ../${tempdir}/etc
485 chmod a-w ../${tempdir}/etc/$file
486 fi
487 else
488 rm ../${tempdir}/etc/$file
489 cp $file ../${tempdir}/etc
490 chmod a-w ../${tempdir}/etc/$file
491 fi
492 done
f7dbcf3c 493 cd ../${tempdir}/etc
ebd32d7b 494 rm -f fns*.el
23a58692 495 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
f395c83a 496 rm -f TAGS)
f7dbcf3c 497
21764d60 498echo "Making links to \`etc/e'"
f08ad882 499(cd etc/e
375f1bd7 500 ln `ls -d * | grep -v 'RCS'` ../../${tempdir}/etc/e
a6903f09 501 cd ../../${tempdir}/etc/e
375f1bd7 502 rm -f *~ \#*\# *,v =* core)
f08ad882 503
21764d60 504echo "Making links to \`info'"
66afa119
RS
505# Don't distribute backups or autosaves.
506(cd info
507 ln [a-zA-Z]* ../${tempdir}/info
508 cd ../${tempdir}/info
509 # Avoid an error when expanding the wildcards later.
510 ln emacs dummy~ ; ln emacs \#dummy\#
511 rm -f *~ \#*\# core)
fda4e8f6 512
21764d60 513echo "Making links to \`man'"
fda4e8f6 514(cd man
298c8970 515 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../${tempdir}/man
5e808bc0 516 test -f README && ln README ../${tempdir}/man
f08ad882 517 test -f Makefile.in && ln Makefile.in ../${tempdir}/man
56c31c87 518 ln ChangeLog split-man ../${tempdir}/man
375f1bd7 519 cp texinfo.tex ../${tempdir}/man
4f8cc93a 520 cd ../${tempdir}/man
56c31c87
RS
521 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
522 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
f7dbcf3c 523
21764d60 524echo "Making links to \`vms'"
40eef465
JB
525(cd vms
526 ln [0-9a-zA-Z]* ../${tempdir}/vms
527 cd ../${tempdir}/vms
528 rm -f *~)
529
c87b230f
JB
530### It would be nice if they could all be symlinks to etc's copy, but
531### you're not supposed to have any symlinks in distribution tar files.
21764d60 532echo "Making sure copying notices are all copies of \`etc/COPYING'"
1260d6ba
ER
533rm -f ${tempdir}/etc/COPYING
534cp etc/COPYING ${tempdir}/etc/COPYING
8e583b5d 535for subdir in lisp src lib-src info msdos; do
f7dbcf3c
JB
536 if [ -f ${tempdir}/${subdir}/COPYING ]; then
537 rm ${tempdir}/${subdir}/COPYING
538 fi
96858c42 539 cp etc/COPYING ${tempdir}/${subdir}
f7dbcf3c
JB
540done
541
5b8def65
JB
542#### Make sure that there aren't any hard links between files in the
543#### distribution; people with afs can't deal with that. Okay,
544#### actually we just re-copy anything with a link count greater
375f1bd7
KH
545#### than two. (Yes, strictly greater than 2 is correct; since we
546#### created these files by linking them in from the original tree,
547#### they'll have exactly two links normally.)
bb7e0f81 548####
908ff139 549#### Commented out since it's not strictly necessary; it should suffice
bb7e0f81 550#### to just break the link on alloca.c.
9b23a6c7
RS
551#echo "Breaking intra-tree links."
552#find ${tempdir} ! -type d -links +2 \
553# -exec cp -p {} $$ \; -exec rm -f {} \; -exec mv $$ {} \;
bb7e0f81
KH
554rm -f $tempdir/lib-src/alloca.c
555cp $tempdir/src/alloca.c $tempdir/lib-src/alloca.c
5b8def65 556
1260d6ba 557if [ "${newer}" ]; then
21764d60 558 echo "Removing files older than $newer"
76fb0a58
JB
559 ## We remove .elc files unconditionally, on the theory that anyone picking
560 ## up an incremental distribution already has a running Emacs to byte-compile
561 ## them with.
1260d6ba
ER
562 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
563fi
564
4746118a 565if [ "${make_tar}" = yes ]; then
922ac4c5 566 if [ "${default_gzip}" = "" ]; then
21764d60 567 echo "Looking for gzip"
922ac4c5
JB
568 temppath=`echo $PATH | sed 's/^:/.:/
569 s/::/:.:/g
570 s/:$/:./
571 s/:/ /g'`
572 default_gzip=`(
573 for dir in ${temppath}; do
574 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
575 done
576 echo compress
577 )`
578 fi
f395c83a
JB
579 case "${default_gzip}" in
580 compress* ) gzip_extension=.Z ;;
0dc610dd 581 * ) gzip_extension=.gz ;;
f395c83a 582 esac
91741841 583 echo "Creating tar files"
f395c83a
JB
584 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
585 | ${default_gzip} \
586 > ${emacsname}.tar${gzip_extension}
65fda17c 587 (cd ${tempparent}/${emacsname}-leim ; tar cvf - ${emacsname} ) \
91741841
RS
588 | ${default_gzip} \
589 > ${emacsname}-leim.tar${gzip_extension}
4746118a 590fi
f7dbcf3c 591
4746118a 592if [ "${clean_up}" = yes ]; then
21764d60 593 echo "Cleaning up the staging directory"
f395c83a 594 rm -rf ${tempparent}
bb160193 595else
91741841 596 (cd ${tempparent}; mv ${emacsname} ${emacsname}-leim ..)
bb160193 597 rm -rf ${tempparent}
f7dbcf3c 598fi
00c00348 599
76fb0a58 600### make-dist ends here