Fix an incorrect buffer name and remove an unneeded defalias.
[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
e91081eb 9# Copyright (C) 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005,
37d6e313 10# 2006, 2007, 2008 Free Software Foundation, Inc.
b33ba812 11
4c9c1174
KH
12# This file is part of GNU Emacs.
13#
b33ba812 14# GNU Emacs is free software: you can redistribute it and/or modify
4c9c1174 15# it under the terms of the GNU General Public License as published by
b33ba812
GM
16# the Free Software Foundation, either version 3 of the License, or
17# (at your option) any later version.
18
4c9c1174
KH
19# GNU Emacs is distributed in the hope that it will be useful,
20# but WITHOUT ANY WARRANTY; without even the implied warranty of
21# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22# GNU General Public License for more details.
b33ba812 23
4c9c1174 24# You should have received a copy of the GNU General Public License
b33ba812
GM
25# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26
4c9c1174 27
f7dbcf3c
JB
28progname="$0"
29
76fb0a58 30### Exit if a command fails.
8c28d444 31#set -e
f7dbcf3c 32
76fb0a58 33### Print out each line we read, for debugging's sake.
8c28d444 34#set -v
f7dbcf3c 35
8df317a6
GM
36LANGUAGE=C
37LC_ALL=C
38LC_MESSAGES=
39LANG=
40export LANGUAGE LC_ALL LC_MESSAGES LANG
41
ccd57f4d 42## Don't restrict access to any files.
67ffab69
RS
43umask 0
44
c75cfabd 45update=yes
e4e1c623 46check=yes
f22edcea
RS
47clean_up=no
48make_tar=no
1260d6ba 49newer=""
f7dbcf3c
JB
50
51while [ $# -gt 0 ]; do
52 case "$1" in
f22edcea
RS
53 ## This option tells make-dist to delete the staging directory
54 ## when done. It is useless to use this unless you make a tar file.
55 "--clean-up" )
56 clean_up=yes
4746118a 57 ;;
f22edcea
RS
58 ## This option tells make-dist to make a tar file.
59 "--tar" )
60 make_tar=yes
f7dbcf3c 61 ;;
c75cfabd
RS
62 ## This option tells make-dist not to recompile or do analogous things.
63 "--no-update" )
64 update=no
65 ;;
e4e1c623
RS
66 ## This option says don't check for bad file names, etc.
67 "--no-check" )
68 check=no
69 ;;
76fb0a58 70 ## This option tells make-dist to make the distribution normally, then
7b9cd64c
ER
71 ## remove all files older than the given timestamp file. This is useful
72 ## for creating incremental or patch distributions.
1260d6ba 73 "--newer")
ef15f270
JB
74 newer="$2"
75 new_extension=".new"
1260d6ba
ER
76 shift
77 ;;
922ac4c5
JB
78 ## This option tells make-dist to use `compress' instead of gzip.
79 ## Normally, make-dist uses gzip whenever it is present.
80 "--compress")
81 default_gzip="compress"
82 ;;
37d6e313
RF
83 ## Same with bzip2.
84 "--bzip2")
85 default_gzip="bzip2"
86 ;;
ed398055
GM
87 ## Same with lzma.
88 "--lzma")
89 default_gzip="lzma"
90 ;;
2a714d4e
GM
91
92 "--snapshot")
93 clean_up=yes
94 make_tar=yes
95 update=no
96 check=no
97 ;;
98
99 "--help")
100 echo "Usage: ${progname} [options]"
101 echo ""
8772b5a8 102 echo " --bzip2 use bzip2 instead of gzip"
2a714d4e
GM
103 echo " --clean-up delete staging directories when done"
104 echo " --compress use compress instead of gzip"
8772b5a8 105 echo " --lzma use lzma instead of gzip"
2a714d4e
GM
106 echo " --newer=TIME don't include files older than TIME"
107 echo " --no-check don't check for bad file names etc."
108 echo " --no-update don't recompile or do analogous things"
109 echo " --snapshot same as --clean-up --no-update --tar --no-check"
110 echo " --tar make a tar file"
111 echo ""
112 exit 0
113 ;;
114
f7dbcf3c
JB
115 * )
116 echo "${progname}: Unrecognized argument: $1" >&2
117 exit 1
118 ;;
119 esac
120 shift
121done
122
76fb0a58 123### Make sure we're running in the right place.
f7dbcf3c 124if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/version.el ]; then
1260d6ba
ER
125 echo "${progname}: Can't find \`src/lisp.h' and \`lisp/version.el'." >&2
126 echo "${progname} must be run in the top directory of the Emacs" >&2
0d122844 127 echo "distribution tree. cd to that directory and try again." >&2
f7dbcf3c
JB
128 exit 1
129fi
130
c75cfabd 131### Find where to run Emacs.
4b1aaa8b 132### (Accept only absolute file names.)
c75cfabd
RS
133if [ $update = yes ];
134then
59d05d2d 135 unset EMACS_UNIBYTE
c75cfabd
RS
136 if [ -f src/emacs ];
137 then
138 EMACS=`pwd`/src/emacs
139 else
4b1aaa8b
PE
140 case $EMACS in
141 /*) ;;
142 *)
143 if [ ! -f "$EMACS" ]; then
144 echo "$0: You must specify the EMACS environment variable " \
145 "to an absolute file name." 2>&1
146 exit 1
147 fi;;
148 esac
c75cfabd
RS
149 fi
150fi
151
76fb0a58 152### Find out which version of Emacs this is.
0e0186f1 153shortversion=`grep 'defconst[ ]*emacs-version' lisp/version.el \
47d105b0 154 | sed -e 's/^.*"\([0-9][0-9]*\.[0-9][0-9]*\).*$/\1/'`
0e0186f1
RS
155version=`grep 'defconst[ ]*emacs-version' lisp/version.el \
156 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
f7dbcf3c 157if [ ! "${version}" ]; then
21764d60 158 echo "${progname}: can't find current Emacs version in \`./lisp/version.el'" >&2
f7dbcf3c
JB
159 exit 1
160fi
161
21764d60 162echo Version numbers are $version and $shortversion
47d105b0 163
c75cfabd
RS
164if [ $update = yes ];
165then
d175b0ae 166 if grep -s "@set EMACSVER *${shortversion}" ./doc/emacs/emacs.texi > /dev/null; then
c75cfabd
RS
167 true
168 else
d175b0ae 169 echo "You must update the version number in \`./doc/emacs/emacs.texi'"
c75cfabd
RS
170 sleep 5
171 fi
f753e9aa
JB
172fi
173
bb160193
RS
174### Make sure we don't already have a directory emacs-${version}.
175
176emacsname="emacs-${version}${new_extension}"
177
178if [ -d ${emacsname} ]
179then
180 echo Directory "${emacsname}" already exists >&2
181 exit 1
182fi
183
76fb0a58 184### Make sure the subdirectory is available.
1260d6ba 185tempparent="make-dist.tmp.$$"
f7dbcf3c 186if [ -d ${tempparent} ]; then
1260d6ba
ER
187 echo "${progname}: staging directory \`${tempparent}' already exists.
188Perhaps a previous invocation of \`${progname}' failed to clean up after
189itself. Check that directories whose names are of the form
190\`make-dist.tmp.NNNNN' don't contain any important information, remove
191them, and try again." >&2
f7dbcf3c
JB
192 exit 1
193fi
194
e4e1c623
RS
195### Find where to run Emacs.
196if [ $check = yes ];
197then
198 ### Check for .elc files with no corresponding .el file.
fb0797ca 199 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
5eea385d 200 leim/[a-z]*/[a-z]*.el | sed 's/\.el$/.elc/' > /tmp/el
fb0797ca 201 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
5eea385d 202 leim/[a-z]*/[a-z]*.elc > /tmp/elc
e4e1c623
RS
203 bogosities="`comm -13 /tmp/el /tmp/elc`"
204 if [ "${bogosities}" != "" ]; then
205 echo "The following .elc files have no corresponding .el files:"
206 echo "${bogosities}"
8615e792 207 fi
e4e1c623
RS
208 rm -f /tmp/el /tmp/elc
209
210 ### Check for .el files with no corresponding .elc file.
fb0797ca 211 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
33740d04 212 leim/[a-z]*/[a-z]*.el > /tmp/el
fb0797ca 213 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
33740d04 214 leim/[a-z]*/[a-z]*.elc | sed 's/\.elc$/.el/' > /tmp/elc
e4e1c623
RS
215 losers="`comm -23 /tmp/el /tmp/elc`"
216 bogosities=
217 for file in $losers; do
33740d04 218 if ! grep -q "no-byte-compile: t" $file; then
e4e1c623
RS
219 case $file in
220 site-init.el | site-load.el | site-start.el | default.el)
221 ;;
e4e1c623
RS
222 *)
223 bogosities="$file $bogosities"
224 ;;
225 esac
226 fi
227 done
228 if [ x"${bogosities}" != x"" ]; then
229 echo "The following .el files have no corresponding .elc files:"
230 echo "${bogosities}"
231 fi
232 rm -f /tmp/el /tmp/elc
f5674423
KH
233fi
234
b4e84d5d 235### Make sure configure is newer than configure.in.
a8a8fcfa 236if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then
21764d60
KH
237 echo "\`./configure.in' is newer than \`./configure'" >&2
238 echo "Running autoconf" >&2
28335560 239 autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; }
b4e84d5d
JB
240fi
241
a49eb675
AS
242### Make sure src/config-in.stamp is newer than configure.in.
243if [ "x`ls -t src/stamp-h.in configure.in | sed q`" != "xsrc/stamp-h.in" ]; then
244 echo "\`./configure.in' is newer than \`./src/stamp-h.in'" >&2
245 echo "Running autoheader" >&2
246 autoheader || { x=$?; echo Autoheader FAILED! >&2; exit $x; }
247 rm -f src/stamp-h.in
248 echo timestamp > src/stamp-h.in
249fi
250
c75cfabd
RS
251if [ $update = yes ];
252then
253 echo "Updating Info files"
d175b0ae
RF
254 (cd doc/emacs; make -f Makefile.in srcdir=. info)
255 (cd doc/misc; make -f Makefile.in srcdir=. info)
256 (cd doc/lispref; make -f Makefile.in srcdir=. info)
257 (cd doc/lispintro; make -f Makefile.in SHELL=/bin/sh srcdir=. info VPATH=.)
980ab937 258
e888d449 259 echo "Updating finder, custom and autoload data"
59d05d2d 260 (cd lisp; make updates EMACS="$EMACS")
7cf45b04 261
5eea385d
GM
262 if test -f leim/leim-list.el; then
263 echo "Updating leim-list.el"
264 (cd leim; make leim-list.el EMACS="$EMACS")
265 fi
29c98ed3
RS
266
267 echo "Recompiling Lisp files"
29c98ed3 268 $EMACS -batch -f batch-byte-recompile-directory lisp leim
c75cfabd 269fi
0588a761 270
f07eebe0
KH
271echo "Making lisp/MANIFEST"
272
73494596
RS
273(cd lisp;
274 files=`echo [!=]*.el | sed -e 's/ subdirs.el / /' -e 's/ default.el / /'`
275 for dir in [!=]*; do
5eea385d
GM
276 if [ -d $dir ] && [ $dir != term ] && [ $dir != CVS ] && [ $dir != RCS ]
277 then
73494596
RS
278 echo $dir
279 thisdir=`echo $dir/[!=]*.el | sed -e 's/ subdirs.el / /'`
280 files="$files $thisdir"
281 fi
282 done
a8a8fcfa
PE
283 for file in $files
284 do sed -n 's/^;;; //p; q' $file
285 done | sort > MANIFEST)
f07eebe0 286
1260d6ba 287echo "Creating staging directory: \`${tempparent}'"
bb160193 288
f7dbcf3c 289mkdir ${tempparent}
f7dbcf3c
JB
290tempdir="${tempparent}/${emacsname}"
291
76fb0a58
JB
292### This trap ensures that the staging directory will be cleaned up even
293### when the script is interrupted in mid-career.
00c00348 294if [ "${clean_up}" = yes ]; then
21764d60 295 trap "echo 'Interrupted...cleaning up the staging directory'; rm -rf ${tempparent}; exit 1" 1 2 15
00c00348
ER
296fi
297
1260d6ba 298echo "Creating top directory: \`${tempdir}'"
f7dbcf3c
JB
299mkdir ${tempdir}
300
76fb0a58
JB
301### We copy in the top-level files before creating the subdirectories in
302### hopes that this will make the top-level files appear first in the
303### tar file; this means that people can start reading the INSTALL and
304### README while the rest of the tar file is still unpacking. Whoopee.
21764d60 305echo "Making links to top-level files"
3ada8b66 306ln INSTALL README BUGS move-if-change ${tempdir}
bcea38a3 307ln ChangeLog Makefile.in configure configure.in ${tempdir}
6f8b09f3 308ln config.bat make-dist update-subdirs vpath.sed ${tempdir}
bb160193 309### Copy these files; they're cross-filesystem symlinks.
a4888c88 310cp mkinstalldirs ${tempdir}
76fb0a58 311cp config.sub ${tempdir}
2ed56345 312cp config.guess ${tempdir}
dc7717ab 313cp install-sh ${tempdir}
f7dbcf3c 314
21764d60 315echo "Updating version number in README"
f753e9aa
JB
316(cd ${tempdir}
317 awk \
318 '$1 " " $2 " " $3 " " $4 " " $5 == "This directory tree holds version" { $6 = version; print $0 }
319 $1 " " $2 " " $3 " " $4 " " $5 != "This directory tree holds version"' \
320 version=${version} README > tmp.README
af559a4e 321 mv -f tmp.README README)
f753e9aa
JB
322
323
21764d60 324echo "Creating subdirectories"
d175b0ae 325for subdir in lisp site-lisp \
05494c29 326 leim leim/CXTERM-DIC leim/MISC-DIC \
ca111811 327 leim/SKK-DIC leim/ja-dic leim/quail \
c660c0a7 328 src src/m src/s src/bitmaps lib-src oldXMenu lwlib \
5ec8424f 329 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
0bd50841 330 etc etc/charsets etc/e etc/gnus etc/nxml \
ffda926c 331 etc/images etc/images/ezimage etc/images/gnus etc/images/gud \
d8981daf 332 etc/images/icons etc/images/icons/hicolor \
dc6150eb 333 etc/images/icons/hicolor/*x* etc/images/icons/hicolor/scalable \
10eae9dd 334 etc/images/icons/hicolor/*/apps etc/images/icons/hicolor/*/mimetypes \
d8981daf 335 etc/images/low-color etc/images/mail \
56bcdb80
GM
336 etc/images/smilies etc/images/smilies/grayscale \
337 etc/images/smilies/medium etc/images/tree-widget \
338 etc/images/tree-widget/default etc/images/tree-widget/folder \
3ada8b66
RF
339 etc/refcards etc/schema etc/tutorials info doc doc/emacs \
340 doc/misc doc/man doc/lispref doc/lispintro m4 msdos vms mac \
c0bc7978 341 mac/src mac/Emacs.app mac/Emacs.app/Contents \
e0f712ba
AC
342 mac/Emacs.app/Contents/MacOS mac/Emacs.app/Contents/Resources \
343 mac/Emacs.app/Contents/Resources/English.lproj
b3635775
GM
344do
345 echo " ${tempdir}/${subdir}"
f7dbcf3c
JB
346 mkdir ${tempdir}/${subdir}
347done
348
67ffab69 349echo "Making links to \`lisp' and its subdirectories"
7b9cd64c 350### Don't distribute TAGS, =*.el files, site-init.el, site-load.el, or default.el.
f7dbcf3c
JB
351(cd lisp
352 ln [a-zA-Z]*.el ../${tempdir}/lisp
353 ln [a-zA-Z]*.elc ../${tempdir}/lisp
8d2197ac 354 ln [a-zA-Z]*.dat ../${tempdir}/lisp
a1363c1d 355 for img in [a-zA-Z]*.xpm [a-zA-Z]*.xbm [a-zA-Z]*.pbm; do
365949b7
GM
356 # If there are no images, the shell won't expand the pattern.
357 if [ -f $img ]; then
358 ln $img ../${tempdir}/lisp
359 fi
360 done
76fb0a58
JB
361 ## simula.el doesn't keep abbreviations in simula.defns any more.
362 ## ln [a-zA-Z]*.defns ../${tempdir}/lisp
fb0797ca
LK
363 ln ChangeLog ChangeLog.*[0-9] ../${tempdir}/lisp
364 ln Makefile.in makefile.w32-in ../${tempdir}/lisp
5eea385d 365 test -f README && ln README ../${tempdir}/lisp
67ffab69
RS
366 (cd ../${tempdir}/lisp
367 rm -f TAGS =*
368 rm -f site-init site-init.el site-init.elc
369 rm -f site-load site-load.el site-load.elc
370 rm -f site-start site-start.el site-start.elc
371 rm -f default default.el default.elc
372 )
373
374 ## Find all subdirs of lisp dir
375 for file in `find . -type d -print`; do
376 case $file in
5eea385d 377 . | .. | */Old | */CVS | */RCS | */=*)
177c0ea7 378 ;;
67ffab69
RS
379 *)
380 if [ -d $file ]; then
381 subdirs="$file $subdirs"
382 fi
383 ;;
384 esac
385 done
386
387 for file in $subdirs; do
388 echo " lisp/$file"
3ada8b66 389 mkdir -p ../${tempdir}/lisp/$file
b3635775
GM
390 ln $file/[a-zA-Z0-9]*.el ../${tempdir}/lisp/$file
391 ln $file/[a-zA-Z0-9]*.elc ../${tempdir}/lisp/$file
392 for img in $file/[a-zA-Z]*.xpm $file/[a-zA-Z]*.xbm $file/[a-zA-Z]*.pbm; do
365949b7
GM
393 if [ -f $img ]; then
394 ln $img ../${tempdir}/lisp/$file
395 fi
396 done
67ffab69
RS
397 if [ -f $file/README ]; then
398 ln $file/README ../${tempdir}/lisp/$file
399 fi
b3635775 400
dcf3ff7f
RS
401 if [ -f $file/ChangeLog ]; then
402 ln $file/ChangeLog ../${tempdir}/lisp/$file
fb0797ca 403 for f in $file/ChangeLog.*[0-9]; do
b3635775
GM
404 if [ -f $f ]; then
405 ln $f ../${tempdir}/lisp/$file
406 fi
407 done
dcf3ff7f 408 fi
67ffab69 409 done )
a78c106d 410
ca111811 411echo "Making links to \`leim' and its subdirectories"
91741841
RS
412### Don't distribute TAGS, or =*.el files.
413(cd leim
561bd1a1 414 ln makefile.w32-in ../${tempdir}/leim
ca111811
EZ
415 ln ChangeLog README ../${tempdir}/leim
416
417 ln CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC
418 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC
419 ln MISC-DIC/*.* ../${tempdir}/leim/MISC-DIC
420 ln ja-dic/*.el ja-dic/*.elc ../${tempdir}/leim/ja-dic
421 ln Makefile.in ../${tempdir}/leim/Makefile.in
1d390bd8 422 ln leim-ext.el ../${tempdir}/leim/leim-ext.el
fb0797ca
LK
423 ## Lisp files that start with a capital are generated from TIT
424 ## dictionaries so we don't distribute them.
ca111811
EZ
425 ln quail/[a-z]*.el quail/[a-z]*.elc ../${tempdir}/leim/quail
426 rm -f ../${tempdir}/leim/quail/quick-b5.*
427 rm -f ../${tempdir}/leim/quail/quick-cns.*
428 rm -f ../${tempdir}/leim/quail/tsang-b5.*
429 rm -f ../${tempdir}/leim/quail/tsang-cns.*
430
431 cd ../${tempdir}/leim
91741841
RS
432 rm -f TAGS =* */=*)
433
21764d60 434echo "Making links to \`src'"
76fb0a58 435### Don't distribute =*.[ch] files, or the configured versions of
c3f1e1a9 436### config.in, paths.in, or Makefile.in, or TAGS.
f7dbcf3c 437(cd src
c75cfabd 438 echo " (It is ok if ln fails in some cases.)"
f7dbcf3c
JB
439 ln [a-zA-Z]*.c ../${tempdir}/src
440 ln [a-zA-Z]*.h ../${tempdir}/src
441 ln [a-zA-Z]*.s ../${tempdir}/src
c75cfabd
RS
442 ln [a-zA-Z]*.in ../${tempdir}/src
443 ln [a-zA-Z]*.opt ../${tempdir}/src
444 ## If we ended up with a symlink, or if we did not get anything
445 ## due to a cross-device symlink, copy the file.
446 for file in [a-zA-Z]*.[hcs] [a-zA-Z]*.in [a-zA-Z]*.opt; do
447 if test -f ../${tempdir}/src/$file; then
448 # test -f appears to succeed for a symlink
449 if test -L ../${tempdir}/src/$file; then
450 rm ../${tempdir}/src/$file
62dfdaf0 451 cp -p $file ../${tempdir}/src
c75cfabd
RS
452 chmod a-w ../${tempdir}/src/$file
453 fi
454 else
455 rm ../${tempdir}/src/$file
62dfdaf0 456 cp -p $file ../${tempdir}/src
c75cfabd
RS
457 chmod a-w ../${tempdir}/src/$file
458 fi
459 done
460 ln README ChangeLog ChangeLog.*[0-9] ../${tempdir}/src
561bd1a1 461 ln makefile.w32-in ../${tempdir}/src
990ee059 462 ln .gdbinit .dbxinit ../${tempdir}/src
f7dbcf3c 463 cd ../${tempdir}/src
8c28d444 464 rm -f config.h epaths.h Makefile Makefile.c
7b9cd64c 465 rm -f =* TAGS)
f7dbcf3c 466
21764d60 467echo "Making links to \`src/bitmaps'"
690eca32
JB
468(cd src/bitmaps
469 ln README *.xbm ../../${tempdir}/src/bitmaps)
470
21764d60 471echo "Making links to \`src/m'"
f7dbcf3c 472(cd src/m
facbb78e
RS
473 # We call files for miscellaneous input (to linker etc) .inp.
474 ln README [a-zA-Z0-9]*.h *.inp ../../${tempdir}/src/m)
f7dbcf3c 475
21764d60 476echo "Making links to \`src/s'"
f7dbcf3c 477(cd src/s
77427171 478 ln README [a-zA-Z0-9]*.h ../../${tempdir}/src/s)
f7dbcf3c 479
21764d60 480echo "Making links to \`lib-src'"
f7dbcf3c 481(cd lib-src
375f1bd7 482 ln [a-zA-Z]*.[chy] ../${tempdir}/lib-src
c3f1e1a9 483 ln ChangeLog Makefile.in README testfile vcdiff ../${tempdir}/lib-src
561bd1a1 484 ln grep-changelog rcs2log rcs-checkin ../${tempdir}/lib-src
b3635775 485 ln makefile.w32-in ../${tempdir}/lib-src
c75cfabd
RS
486 ## If we ended up with a symlink, or if we did not get anything
487 ## due to a cross-device symlink, copy the file.
488 for file in [a-zA-Z]*.[chy]; do
489 if test -f ../${tempdir}/lib-src/$file; then
490 # test -f appears to succeed for a symlink
491 if test -L ../${tempdir}/lib-src/$file; then
492 rm ../${tempdir}/lib-src/$file
493 cp $file ../${tempdir}/lib-src
494 chmod a-w ../${tempdir}/lib-src/$file
495 fi
496 else
497 rm ../${tempdir}/lib-src/$file
498 cp $file ../${tempdir}/lib-src
499 chmod a-w ../${tempdir}/lib-src/$file
500 fi
501 done
1260d6ba 502 cd ../${tempdir}/lib-src
c75cfabd 503 rm -f Makefile.c
9eff9fe3 504 rm -f getopt.h
7b9cd64c 505 rm -f =* TAGS)
f7dbcf3c 506
9eff9fe3
PE
507echo "Making links to \`m4'"
508(cd m4
509 ln *.m4 ../${tempdir}/m4)
510
21764d60 511echo "Making links to \`nt'"
391b3748 512(cd nt
a695ae76 513 ln emacs.manifest emacs.rc config.nt [a-z]*.c ../${tempdir}/nt
bcea38a3 514 ln nmake.defs gmake.defs subdirs.el ../${tempdir}/nt
561bd1a1 515 ln [a-z]*.bat [a-z]*.h ../${tempdir}/nt
bcea38a3 516 ln ChangeLog INSTALL README makefile.w32-in ../${tempdir}/nt)
391b3748 517
21764d60 518echo "Making links to \`nt/inc'"
391b3748 519(cd nt/inc
77427171 520 ln [a-z]*.h ../../${tempdir}/nt/inc)
391b3748 521
21764d60 522echo "Making links to \`nt/inc/sys'"
391b3748 523(cd nt/inc/sys
77427171 524 ln [a-z]*.h ../../../${tempdir}/nt/inc/sys)
391b3748 525
e827bc37
RS
526echo "Making links to \`nt/inc/arpa'"
527(cd nt/inc/arpa
528 ln [a-z]*.h ../../../${tempdir}/nt/inc/arpa)
529
530echo "Making links to \`nt/inc/netinet'"
531(cd nt/inc/netinet
532 ln [a-z]*.h ../../../${tempdir}/nt/inc/netinet)
533
5ec8424f
GV
534echo "Making links to \`nt/icons'"
535(cd nt/icons
d6dc647f
JR
536 ln [a-z]*.ico ../../${tempdir}/nt/icons
537 ln [a-z]*.cur ../../${tempdir}/nt/icons)
5ec8424f 538
b3635775
GM
539echo "Making links to \`mac'"
540(cd mac
c0bc7978 541 ln ChangeLog INSTALL README make-package ../${tempdir}/mac)
b3635775
GM
542
543echo "Making links to \`mac/src'"
544(cd mac/src
545 ln [a-z]*.c *.r ../../${tempdir}/mac/src)
546
e0f712ba
AC
547echo "Making links to \`mac/Emacs.app/Contents'"
548(cd mac/Emacs.app/Contents
549 ln Info.plist PkgInfo ../../../${tempdir}/mac/Emacs.app/Contents)
550
e278f0fe
YM
551echo "Making links to \`mac/Emacs.app/Contents/Resources'"
552(cd mac/Emacs.app/Contents/Resources
553 ln Emacs.icns ../../../../${tempdir}/mac/Emacs.app/Contents/Resources)
554
e0f712ba
AC
555echo "Making links to \`mac/Emacs.app/Contents/Resources/English.lproj'"
556(cd mac/Emacs.app/Contents/Resources/English.lproj
557 ln InfoPlist.strings ../../../../../${tempdir}/mac/Emacs.app/Contents/Resources/English.lproj)
177c0ea7 558
21764d60 559echo "Making links to \`msdos'"
52d7b2e5
RS
560(cd msdos
561 ln ChangeLog emacs.ico emacs.pif ../${tempdir}/msdos
7fd85d56 562 ln is_exec.c sigaction.c mainmake mainmake.v2 sed*.inp ../${tempdir}/msdos
52d7b2e5
RS
563 cd ../${tempdir}/msdos
564 rm -f =*)
565
21764d60 566echo "Making links to \`oldXMenu'"
f7dbcf3c 567(cd oldXMenu
8bdbf9ed 568 ln *.c *.h *.in ../${tempdir}/oldXMenu
10b9fe32 569 ln README ChangeLog ../${tempdir}/oldXMenu
f395c83a 570 ln compile.com descrip.mms ../${tempdir}/oldXMenu)
f7dbcf3c 571
21764d60 572echo "Making links to \`lwlib'"
c660c0a7
RS
573(cd lwlib
574 ln *.c *.h *.in ../${tempdir}/lwlib
ebb81677 575 ln README ChangeLog ../${tempdir}/lwlib)
c660c0a7 576
21764d60 577echo "Making links to \`etc'"
f395c83a
JB
578### Don't distribute = files, TAGS, DOC files, backups, autosaves, or
579### tex litter.
f7dbcf3c 580(cd etc
561bd1a1 581 files=`ls -d * | grep -v CVS | grep -v RCS | grep -v 'Old' | grep -v '^e$' \
0bd50841 582 | grep -v '^charsets$' | grep -v '^gnus$' | grep -v '^images$' | grep -v '^nxml$' \
916447e4 583 | grep -v '^refcards$' | grep -v '^tutorials$'| grep -v '^schema$'`
7a6ee7ae 584 ln $files ../${tempdir}/etc
98d4c1d0
RS
585 ## If we ended up with a symlink, or if we did not get anything
586 ## due to a cross-device symlink, copy the file.
7a6ee7ae 587 for file in $files; do
98d4c1d0
RS
588 if test -f ../${tempdir}/etc/$file; then
589 # test -f appears to succeed for a symlink
590 if test -L ../${tempdir}/etc/$file; then
591 rm ../${tempdir}/etc/$file
592 cp $file ../${tempdir}/etc
593 chmod a-w ../${tempdir}/etc/$file
594 fi
595 else
596 rm ../${tempdir}/etc/$file
597 cp $file ../${tempdir}/etc
598 chmod a-w ../${tempdir}/etc/$file
599 fi
600 done
f7dbcf3c 601 cd ../${tempdir}/etc
d175b0ae 602 rm -f fns*.el
23a58692 603 rm -f DOC* *~ \#*\# *.dvi *.log *.orig *.rej *,v =* core
f395c83a 604 rm -f TAGS)
f7dbcf3c 605
0bd50841 606for dir in etc/charsets etc/e etc/gnus etc/nxml etc/tutorials etc/refcards etc/schema ; do
561c44e8
RF
607 echo "Making links to \`${dir}'"
608 (cd ${dir}
609 ln `ls -d * | grep -v CVS | grep -v RCS` ../../${tempdir}/${dir}
610 cd ../../${tempdir}/${dir}
611 rm -f *~ \#*\# *,v =* core)
612done
f08ad882 613
36eaa68f
RF
614echo "Making links to \`etc/images'"
615(cd etc/images
10b9fe32 616 for img in README [a-zA-Z]*.xpm [a-zA-Z]*.xbm [a-zA-Z]*.pbm; do
36eaa68f
RF
617 if [ -f $img ]; then
618 ln $img ../../${tempdir}/etc/images
619 fi
620 done)
621
ad7a98ae 622for dir in etc/images/ezimage etc/images/gnus etc/images/gud etc/images/icons \
561c44e8 623 etc/images/low-color etc/images/mail etc/images/smilies ; do
561bd1a1
EZ
624 echo "Making links to \`${dir}'"
625 (cd ${dir}
626 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../${tempdir}/${dir}
627 cd ../../../${tempdir}/${dir}
628 rm -f *~ \#*\# *,v =* core)
629done
630
56bcdb80 631for dir in etc/images/tree-widget/default etc/images/tree-widget/folder \
d8981daf 632 etc/images/smilies/grayscale etc/images/smilies/medium; do
561c44e8
RF
633 echo "Making links to \`${dir}'"
634 (cd ${dir}
635 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../${tempdir}/${dir}
636 cd ../../../../${tempdir}/${dir}
637 rm -f *~ \#*\# *,v =* core)
638done
639
10eae9dd
GM
640for dir in etc/images/icons/hicolor/*/apps \
641 etc/images/icons/hicolor/*/mimetypes; do
d8981daf
GM
642 echo "Making links to \`${dir}'"
643 (cd ${dir}
644 ln `ls -d * | grep -v CVS | grep -v RCS` ../../../../../../${tempdir}/${dir}
645 cd ../../../../../../${tempdir}/${dir}
646 rm -f *~ \#*\# *,v =* core)
647done
648
21764d60 649echo "Making links to \`info'"
66afa119
RS
650# Don't distribute backups or autosaves.
651(cd info
b3635775 652 ln `find . -type f -print | grep -v CVS | grep -v RCS | grep -v cvsignore` ../${tempdir}/info
5eea385d 653 #ln [a-zA-Z]* ../${tempdir}/info
66afa119
RS
654 cd ../${tempdir}/info
655 # Avoid an error when expanding the wildcards later.
656 ln emacs dummy~ ; ln emacs \#dummy\#
657 rm -f *~ \#*\# core)
fda4e8f6 658
d175b0ae
RF
659echo "Making links to \`doc/emacs'"
660(cd doc/emacs
661 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../../${tempdir}/doc/emacs
662 ln makefile.w32-in ../../${tempdir}/doc/emacs
663 test -f README && ln README ../../${tempdir}/doc/emacs
664 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/emacs
665 ln ChangeLog ../../${tempdir}/doc/emacs
666 cp texinfo.tex ../../${tempdir}/doc/emacs
667 cd ../../${tempdir}/doc/emacs
56c31c87
RS
668 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
669 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
f7dbcf3c 670
d175b0ae
RF
671echo "Making links to \`doc/misc'"
672(cd doc/misc
673 ln *.texi *.aux *.cps *.fns *.kys *.vrs ../../${tempdir}/doc/misc
674 ln makefile.w32-in ../../${tempdir}/doc/misc
675 test -f README && ln README ../../${tempdir}/doc/misc
676 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/misc
677 ln ChangeLog ../../${tempdir}/doc/misc
678 cp texinfo.tex ../../${tempdir}/doc/misc
679 cd ../../${tempdir}/doc/misc
680 rm -f \#*\# =* *~ core emacs-index* *.Z *.z xmail
681 rm -f emacs.?? termcap.?? gdb.?? *.log *.toc *.dvi *.oaux)
682
683echo "Making links to \`doc/lispref'"
684(cd doc/lispref
685 ln `ls -1 *.texi` ../../${tempdir}/doc/lispref
686 ln *.aux *.cps *.fns *.kys *.vrs ../../${tempdir}/doc/lispref
687 ln *.txt *.el spellfile tindex.pl ../../${tempdir}/doc/lispref
688 ln makefile.w32-in ../../${tempdir}/doc/lispref
689 test -f README && ln README ../../${tempdir}/doc/lispref
690 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispref
691 ln ChangeLog ../../${tempdir}/doc/lispref
692 cd ../../${tempdir}/doc/lispref
1d951084
EZ
693 rm -f \#*\# =* *~ core elisp-index* *.Z *.z xmail
694 rm -f elisp.?? *.log *.toc *.dvi *.oaux)
695
d175b0ae
RF
696echo "Making links to \`doc/lispintro'"
697(cd doc/lispintro
698 ln *.texi *.aux *.cps *.fns *.kys *.vrs *.eps ../../${tempdir}/doc/lispintro
699 ln makefile.w32-in ../../${tempdir}/doc/lispintro
700 test -f texinfo.tex && ln texinfo.tex ../../${tempdir}/doc/lispintro
701 test -f README && ln README ../../${tempdir}/doc/lispintro
702 test -f Makefile.in && ln Makefile.in ../../${tempdir}/doc/lispintro
703 ln ChangeLog ../../${tempdir}/doc/lispintro
704 cd ../../${tempdir}/doc/lispintro
3716a206
EZ
705 rm -f \#*\# =* *~ core *.Z *.z xmail
706 rm -f emacs-lisp-intro.?? *.log *.toc *.dvi *.oaux)
707
d175b0ae
RF
708echo "Making links to \`doc/man'"
709(cd doc/man
31d0fa8c 710 ln *.1 ../../${tempdir}/doc/man)
d175b0ae 711
21764d60 712echo "Making links to \`vms'"
40eef465 713(cd vms
5eea385d 714 test -f README && ln README ../${tempdir}/vms
40eef465
JB
715 cd ../${tempdir}/vms
716 rm -f *~)
717
6ab508db 718### It would be nice if they could all be symlinks to top-level copy, but
c87b230f 719### you're not supposed to have any symlinks in distribution tar files.
fd4bc580 720echo "Making sure copying notices are all copies of \`COPYING'"
860484dd 721for subdir in . etc info leim lib-src lisp lwlib mac msdos nt src; do
b37017c6 722 rm -f ${tempdir}/${subdir}/COPYING
fd4bc580 723 cp COPYING ${tempdir}/${subdir}
f7dbcf3c
JB
724done
725
1260d6ba 726if [ "${newer}" ]; then
21764d60 727 echo "Removing files older than $newer"
76fb0a58
JB
728 ## We remove .elc files unconditionally, on the theory that anyone picking
729 ## up an incremental distribution already has a running Emacs to byte-compile
730 ## them with.
1260d6ba
ER
731 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
732fi
733
4746118a 734if [ "${make_tar}" = yes ]; then
922ac4c5 735 if [ "${default_gzip}" = "" ]; then
21764d60 736 echo "Looking for gzip"
922ac4c5
JB
737 temppath=`echo $PATH | sed 's/^:/.:/
738 s/::/:.:/g
739 s/:$/:./
740 s/:/ /g'`
741 default_gzip=`(
742 for dir in ${temppath}; do
743 if [ -f ${dir}/gzip ]; then echo 'gzip --best'; exit 0; fi
744 done
745 echo compress
746 )`
747 fi
f395c83a 748 case "${default_gzip}" in
37d6e313 749 bzip2) gzip_extension=.bz2 ;;
f395c83a 750 compress* ) gzip_extension=.Z ;;
ed398055 751 lzma) gzip_extension=.lzma ;;
0dc610dd 752 * ) gzip_extension=.gz ;;
f395c83a 753 esac
ca111811 754 echo "Creating tar file"
f395c83a
JB
755 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
756 | ${default_gzip} \
757 > ${emacsname}.tar${gzip_extension}
4746118a 758fi
f7dbcf3c 759
4746118a 760if [ "${clean_up}" = yes ]; then
21764d60 761 echo "Cleaning up the staging directory"
f395c83a 762 rm -rf ${tempparent}
bb160193 763else
ca111811 764 (cd ${tempparent}; mv ${emacsname} ..)
bb160193 765 rm -rf ${tempparent}
f7dbcf3c 766fi
00c00348 767
ab5796a9 768# arch-tag: 26e3eb50-a394-4ab2-82b2-d8e5af500de7
76fb0a58 769### make-dist ends here