Fix problems caught with --enable-gcc-warnings
[emacs.git] / make-dist
blob79db904a2c817f25ca1fb3059a3ceb02bf0c7e22
1 #!/bin/sh
2 ### make-dist: create an Emacs distribution tar file from current srcdir
4 ## Copyright (C) 1995, 1997-1998, 2000-2015 Free Software Foundation,
5 ## Inc.
7 ## This file is part of GNU Emacs.
9 ## GNU Emacs is free software: you can redistribute it and/or modify
10 ## it under the terms of the GNU General Public License as published by
11 ## the Free Software Foundation, either version 3 of the License, or
12 ## (at your option) any later version.
14 ## GNU Emacs is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ## GNU General Public License for more details.
19 ## You should have received a copy of the GNU General Public License
20 ## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 ### Commentary:
24 ## This basically creates a duplicate directory structure, and then
25 ## hard links into it only those files that should be distributed.
26 ## This means that if you add a file with an odd name, you should make
27 ## sure that this script will include it.
29 ### Code:
31 progname="$0"
33 ### Exit if a command fails.
34 #set -e
36 ### Print out each line we read, for debugging's sake.
37 #set -v
39 LANGUAGE=C
40 LC_ALL=C
41 LC_MESSAGES=
42 LANG=
43 export LANGUAGE LC_ALL LC_MESSAGES LANG
45 ## Remove unnecessary restrictions on file access.
46 umask 022
48 update=yes
49 check=yes
50 clean_up=no
51 make_tar=no
52 default_gzip=gzip
53 newer=""
54 with_tests=no
55 changelog=yes
57 while [ $# -gt 0 ]; do
58 case "$1" in
59 ## This option tells make-dist to delete the staging directory
60 ## when done. It is useless to use this unless you make a tar file.
61 "--clean-up" )
62 clean_up=yes
64 ## This option tells make-dist to make a tar file.
65 "--tar" )
66 make_tar=yes
68 ## This option tells make-dist not to recompile or do analogous things.
69 "--no-update" )
70 update=no
72 ## This option says don't check for bad file names, etc.
73 "--no-check" )
74 check=no
76 "--no-changelog" )
77 changelog=no
79 ## This option tells make-dist to make the distribution normally, then
80 ## remove all files older than the given timestamp file. This is useful
81 ## for creating incremental or patch distributions.
82 "--newer")
83 newer="$2"
84 new_extension=".new"
85 shift
87 ## This option tells make-dist to use 'bzip2' instead of gzip.
88 "--bzip2")
89 default_gzip="bzip2"
91 ## Same with xz.
92 "--xz")
93 default_gzip="xz"
95 "--no-compress")
96 default_gzip="cat"
99 "--snapshot")
100 clean_up=yes
101 make_tar=yes
102 update=no
103 check=no
106 ## Include the test/ directory.
107 ## This option is mainly for the hydra build server.
108 "--tests")
109 with_tests=yes
112 "--help")
113 echo "Usage: ${progname} [options]"
114 echo ""
115 echo " --bzip2 use bzip2 instead of gzip"
116 echo " --clean-up delete staging directories when done"
117 echo " --xz use xz instead of gzip"
118 echo " --no-compress don't compress"
119 echo " --newer=TIME don't include files older than TIME"
120 echo " --no-check don't check for bad file names etc."
121 echo " --no-update don't recompile or do analogous things"
122 echo " --no-changelog don't generate the top-level ChangeLog"
123 echo " --snapshot same as --clean-up --no-update --tar --no-check"
124 echo " --tar make a tar file"
125 echo " --tests include the test/ directory"
126 echo ""
127 exit 0
131 echo "${progname}: Unrecognized argument: $1" >&2
132 exit 1
134 esac
135 shift
136 done
138 ### Make sure we're running in the right place.
139 if [ ! -d src -o ! -f src/lisp.h -o ! -d lisp -o ! -f lisp/subr.el ]; then
140 echo "${progname}: Can't find 'src/lisp.h' and 'lisp/subr.el'." >&2
141 echo "${progname} must be run in the top directory of the Emacs" >&2
142 echo "distribution tree. cd to that directory and try again." >&2
143 exit 1
146 ### Find where to run Emacs.
147 ### (Accept only absolute file names.)
148 if [ $update = yes ];
149 then
150 if [ -f src/emacs ];
151 then
152 EMACS=`pwd`/src/emacs
153 else
154 case $EMACS in
155 /*) ;;
157 if [ ! -f "$EMACS" ]; then
158 echo "$0: You must set the EMACS environment variable " \
159 "to an absolute file name." 2>&1
160 exit 1
161 fi;;
162 esac
166 ### Find out which version of Emacs this is.
167 version=`
168 sed -n 's/^AC_INIT(GNU Emacs,[ ]*\([^ ,)]*\).*/\1/p' <configure.ac
169 ` || version=
170 if [ ! "${version}" ]; then
171 echo "${progname}: can't find current Emacs version in './src/emacs.c'" >&2
172 exit 1
175 echo Version number is $version
177 if [ $update = yes ]; then
178 if ! grep -q "tree holds version *${version}" README; then
179 echo "WARNING: README has the wrong version number"
180 echo "Consider running M-x set-version from admin/admin.el"
181 sleep 5
185 ### Make sure we don't already have a directory emacs-${version}.
187 emacsname="emacs-${version}${new_extension}"
189 if [ -d ${emacsname} ]
190 then
191 echo Directory "${emacsname}" already exists >&2
192 exit 1
195 ### Make sure the subdirectory is available.
196 tempparent="make-dist.tmp.$$"
197 if [ -d ${tempparent} ]; then
198 echo "${progname}: staging directory '${tempparent}' already exists.
199 Perhaps a previous invocation of '${progname}' failed to clean up after
200 itself. Check that directories whose names are of the form
201 'make-dist.tmp.NNNNN' don't contain any important information, remove
202 them, and try again." >&2
203 exit 1
206 if [ $check = yes ]; then
207 ls -1 lisp/[a-zA-Z]*.el lisp/[a-z]*/[a-zA-Z0-9]*.el \
208 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el \
209 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.el > /tmp/el
211 ls -1 lisp/[a-zA-Z]*.elc lisp/[a-z]*/[a-zA-Z0-9]*.elc \
212 lisp/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc \
213 lisp/[a-z]*/[a-z]*/[a-z]*/[a-zA-Z0-9]*.elc > /tmp/elc
215 ## Check for .elc files with no corresponding .el file.
216 sed 's/\.el$/.elc/' /tmp/el > /tmp/elelc
218 bogosities=`comm -13 /tmp/elelc /tmp/elc`
219 if [ x"${bogosities}" != x"" ]; then
220 echo "The following .elc files have no corresponding .el files:"
221 echo "${bogosities}"
224 ### Check for .el files with no corresponding .elc file.
225 sed 's/\.elc$/.el/' /tmp/elc > /tmp/elcel
226 losers=`comm -23 /tmp/el /tmp/elcel`
228 rm -f /tmp/el /tmp/elc /tmp/elcel /tmp/elelc
230 bogosities=
231 for file in $losers; do
232 grep -q "no-byte-compile: t" $file && continue
233 case $file in
234 site-init.el | site-load.el | site-start.el | default.el) continue ;;
235 esac
237 bogosities="$file $bogosities"
239 done
240 if [ x"${bogosities}" != x"" ]; then
241 echo "The following .el files have no corresponding .elc files:"
242 echo "${bogosities}"
246 if [ $update = yes ]; then
248 ## Make sure configure is newer than configure.ac, etc.
249 ## It is better to let autoreconf do what is needed than
250 ## for us to try and duplicate all its checks.
251 echo "Running autoreconf"
252 autoreconf -i -I m4 || { x=$?; echo Autoreconf FAILED! >&2; exit $x; }
254 ## Make sure src/stamp-h.in is newer than configure.ac.
255 rm -f src/stamp-h.in
256 echo timestamp > src/stamp-h.in
258 echo "Updating Info files"
259 make info
261 echo "Updating finder, custom and autoload data"
262 (cd lisp && make updates EMACS="$EMACS")
264 echo "Updating leim-list.el"
265 (cd leim && make leim-list.el EMACS="$EMACS")
267 echo "Recompiling Lisp files"
268 $EMACS -batch -f batch-byte-recompile-directory lisp
269 fi # $update = yes
271 echo "Creating staging directory: '${tempparent}'"
273 mkdir ${tempparent}
274 tempdir="${tempparent}/${emacsname}"
276 ### This trap ensures that the staging directory will be cleaned up even
277 ### when the script is interrupted in mid-career.
278 if [ "${clean_up}" = yes ]; then
279 trap "echo 'Cleaning up the staging directory'; rm -rf ${tempparent}" EXIT
282 echo "Creating top directory: '${tempdir}'"
283 mkdir ${tempdir}
285 if [ "$changelog" = yes ]; then
286 if test -d .git; then
287 echo "Making top-level ChangeLog"
288 make ChangeLog CHANGELOG=${tempdir}/ChangeLog || \
289 { x=$?; echo "make ChangeLog FAILED (try --no-changelog?)" >&2; exit $x; }
290 else
291 echo "No repository, so omitting top-level ChangeLog"
295 ### We copy in the top-level files before creating the subdirectories in
296 ### hopes that this will make the top-level files appear first in the
297 ### tar file; this means that people can start reading the INSTALL and
298 ### README while the rest of the tar file is still unpacking. Whoopee.
299 echo "Making links to top-level files"
300 ln INSTALL README BUGS ${tempdir}
301 ln ChangeLog.*[0-9] Makefile.in autogen.sh configure configure.ac ${tempdir}
302 ln config.bat make-dist .dir-locals.el ${tempdir}
303 ln aclocal.m4 ${tempdir}
305 echo "Creating subdirectories"
306 for subdir in site-lisp \
307 leim leim/CXTERM-DIC leim/MISC-DIC leim/SKK-DIC \
308 build-aux build-aux/snippet \
309 src src/bitmaps lib lib-src oldXMenu lwlib \
310 nt nt/inc nt/inc/sys nt/inc/arpa nt/inc/netinet nt/icons \
311 `find etc lisp admin test -type d` \
312 doc doc/emacs doc/misc doc/man doc/lispref doc/lispintro \
313 info m4 msdos \
314 nextstep nextstep/templates \
315 nextstep/Cocoa nextstep/Cocoa/Emacs.base \
316 nextstep/Cocoa/Emacs.base/Contents \
317 nextstep/Cocoa/Emacs.base/Contents/Resources \
318 nextstep/GNUstep \
319 nextstep/GNUstep/Emacs.base \
320 nextstep/GNUstep/Emacs.base/Resources
323 if [ "$with_tests" != "yes" ]; then
324 case $subdir in
325 test*) continue ;;
326 esac
329 ## site-lisp for in-place installs (?).
330 [ "$subdir" = "site-lisp" ] || [ -d "$subdir" ] || \
331 echo "WARNING: $subdir not found, making anyway"
332 echo " ${tempdir}/${subdir}"
333 mkdir ${tempdir}/${subdir}
334 done
336 echo "Making links to 'lisp' and its subdirectories"
337 files=`find lisp \( -name '*.el' -o -name '*.elc' -o -name 'ChangeLog*' \
338 -o -name 'README' \)`
340 ### Don't distribute site-init.el, site-load.el, or default.el.
341 for file in lisp/Makefile.in $files; do
342 case $file in
343 */site-init*|*/site-load*|*/default*) continue ;;
344 esac
345 ln $file $tempdir/$file
346 done
348 echo "Making links to 'leim' and its subdirectories"
349 (cd leim
350 ln ChangeLog.*[0-9] README ../${tempdir}/leim
351 ln CXTERM-DIC/README CXTERM-DIC/*.tit ../${tempdir}/leim/CXTERM-DIC
352 ln SKK-DIC/README SKK-DIC/SKK-JISYO.L ../${tempdir}/leim/SKK-DIC
353 ln MISC-DIC/README MISC-DIC/*.* ../${tempdir}/leim/MISC-DIC
354 ln Makefile.in ../${tempdir}/leim/Makefile.in
355 ln leim-ext.el ../${tempdir}/leim/leim-ext.el)
357 ## FIXME Can we not just use the "find -type f" method for this one?
358 echo "Making links to 'build-aux'"
359 (cd build-aux
360 ln compile config.guess config.sub depcomp msys-to-w32 ../${tempdir}/build-aux
361 ln gitlog-to-changelog gitlog-to-emacslog ../${tempdir}/build-aux
362 ln install-sh missing move-if-change ../${tempdir}/build-aux
363 ln update-copyright update-subdirs ../${tempdir}/build-aux
364 ln dir_top make-info-dir ../${tempdir}/build-aux)
366 echo "Making links to 'build-aux/snippet'"
367 (cd build-aux/snippet
368 ln *.h ../../${tempdir}/build-aux/snippet)
370 echo "Making links to 'src'"
371 ### Don't distribute the configured versions of
372 ### config.in, paths.in, buildobj.h, or Makefile.in.
373 (cd src
374 echo " (It is ok if ln fails in some cases.)"
375 ln [a-zA-Z]*.[chm] ../${tempdir}/src
376 ln [a-zA-Z]*.in ../${tempdir}/src
377 ln deps.mk ../${tempdir}/src
378 ln README ChangeLog.*[0-9] ../${tempdir}/src
379 ln .gdbinit .dbxinit ../${tempdir}/src
380 cd ../${tempdir}/src
381 rm -f globals.h config.h epaths.h Makefile buildobj.h)
383 echo "Making links to 'src/bitmaps'"
384 (cd src/bitmaps
385 ln README *.xbm ../../${tempdir}/src/bitmaps)
387 echo "Making links to 'lib'"
388 (snippet_h=`(cd build-aux/snippet && ls *.h)`
389 cd lib
390 ln [a-zA-Z]*.[ch] ../${tempdir}/lib
391 ln gnulib.mk Makefile.am Makefile.in ../${tempdir}/lib
392 cd ../${tempdir}/lib
393 script='/[*]/d; s/\.in\.h$/.h/'
394 rm -f `(echo "$snippet_h"; ls *.in.h) | sed "$script"`)
396 echo "Making links to 'lib-src'"
397 (cd lib-src
398 ln [a-zA-Z]*.[ch] ../${tempdir}/lib-src
399 ln ChangeLog.*[0-9] Makefile.in README ../${tempdir}/lib-src
400 ln rcs2log ../${tempdir}/lib-src
401 ln update-game-score.exe.manifest ../${tempdir}/lib-src)
403 echo "Making links to 'm4'"
404 (cd m4
405 ln *.m4 ../${tempdir}/m4)
407 echo "Making links to 'nt'"
408 (cd nt
409 ln emacs-x86.manifest emacs-x64.manifest ../${tempdir}/nt
410 ln subdirs.el [a-z]*.bat [a-z]*.[ch] ../${tempdir}/nt
411 ln *.in gnulib.mk ../${tempdir}/nt
412 ln mingw-cfg.site epaths.nt INSTALL.OLD ../${tempdir}/nt
413 ln ChangeLog.*[0-9] INSTALL README README.W32 ../${tempdir}/nt)
415 echo "Making links to 'nt/inc' and its subdirectories"
416 for f in `find nt/inc -type f -name '[a-z]*.h'`; do
417 ln $f $tempdir/$f
418 done
420 echo "Making links to 'nt/icons'"
421 (cd nt/icons
422 ln README [a-z]*.ico ../../${tempdir}/nt/icons
423 ln [a-z]*.cur ../../${tempdir}/nt/icons)
425 echo "Making links to 'msdos'"
426 (cd msdos
427 ln ChangeLog.*[0-9] INSTALL README emacs.ico emacs.pif ../${tempdir}/msdos
428 ln depfiles.bat inttypes.h ../${tempdir}/msdos
429 ln mainmake.v2 sed*.inp ../${tempdir}/msdos)
431 echo "Making links to 'nextstep'"
432 (cd nextstep
433 ln ChangeLog.*[0-9] README INSTALL Makefile.in ../${tempdir}/nextstep)
435 echo "Making links to 'nextstep/templates'"
436 (cd nextstep/templates
437 ln Emacs.desktop.in Info-gnustep.plist.in Info.plist.in InfoPlist.strings.in ../../${tempdir}/nextstep/templates)
439 echo "Making links to 'nextstep/Cocoa/Emacs.base/Contents'"
440 (cd nextstep/Cocoa/Emacs.base/Contents
441 ln PkgInfo ../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents)
443 echo "Making links to 'nextstep/Cocoa/Emacs.base/Contents/Resources'"
444 (cd nextstep/Cocoa/Emacs.base/Contents/Resources
445 ln Credits.html *.icns ../../../../../${tempdir}/nextstep/Cocoa/Emacs.base/Contents/Resources)
447 echo "Making links to 'nextstep/GNUstep/Emacs.base/Resources'"
448 (cd nextstep/GNUstep/Emacs.base/Resources
449 ln README emacs.tiff ../../../../${tempdir}/nextstep/GNUstep/Emacs.base/Resources )
451 echo "Making links to 'oldXMenu'"
452 (cd oldXMenu
453 ln *.[ch] *.in *.mk ../${tempdir}/oldXMenu
454 ln README ChangeLog.*[0-9] ../${tempdir}/oldXMenu)
456 echo "Making links to 'lwlib'"
457 (cd lwlib
458 ln *.[ch] *.in *.mk ../${tempdir}/lwlib
459 ln README ChangeLog.*[0-9] ../${tempdir}/lwlib)
461 ## It is important to distribute admin/ because it contains sources
462 ## for generated lisp/international/uni-*.el files.
463 echo "Making links to 'admin' and its subdirectories"
464 for f in `find admin -type f`; do
465 case $f in
466 */Makefile) [ -f $f.in ] && continue ;;
467 esac
468 ln $f $tempdir/$f
469 done
471 if [ "$with_tests" = "yes" ]; then
472 echo "Making links to 'test' and its subdirectories"
473 for f in `find test -type f`; do
474 case $f in
475 test/automated/*.log) continue ;;
476 test/automated/flymake/warnpred/a.out) continue ;;
477 test/automated/Makefile) continue ;;
478 esac
479 ln $f $tempdir/$f
480 done
483 echo "Making links to 'etc' and its subdirectories"
484 for f in `find etc -type f`; do
485 case $f in
486 etc/DOC*|etc/*.pyc) continue ;;
487 ## Arguably we should not exclude *.ps.
488 etc/refcards/*.aux|etc/refcards/*.dvi|etc/refcards/*.log|etc/refcards/*.ps)
489 continue ;;
490 esac
491 ln $f $tempdir/$f
492 done
494 echo "Making links to 'info'"
495 ln `find info -type f -print` ${tempdir}/info
497 echo "Making links to 'doc/emacs'"
498 (cd doc/emacs
499 ln *.texi *.in ChangeLog.*[0-9] ../../${tempdir}/doc/emacs)
501 echo "Making links to 'doc/misc'"
502 (cd doc/misc
503 ln *.texi *.tex *.in gnus-news.el ChangeLog.*[0-9] \
504 ../../${tempdir}/doc/misc)
506 echo "Making links to 'doc/lispref'"
507 (cd doc/lispref
508 ln *.texi *.in README ChangeLog.*[0-9] ../../${tempdir}/doc/lispref
509 ln spellfile ../../${tempdir}/doc/lispref
510 ln two-volume.make two-volume-cross-refs.txt ../../${tempdir}/doc/lispref)
512 echo "Making links to 'doc/lispintro'"
513 (cd doc/lispintro
514 ln *.texi *.in *.eps *.pdf ../../${tempdir}/doc/lispintro
515 ln README ChangeLog.*[0-9] ../../${tempdir}/doc/lispintro
516 cd ../../${tempdir}/doc/lispintro)
518 echo "Making links to 'doc/man'"
519 (cd doc/man
520 ln *.*[0-9] *.in ../../${tempdir}/doc/man
521 cd ../../${tempdir}/doc/man
522 rm -f emacs.1)
524 ### It would be nice if they could all be symlinks to top-level copy, but
525 ### you're not supposed to have any symlinks in distribution tar files.
526 echo "Making sure copying notices are all copies of 'COPYING'"
527 for subdir in . etc leim lib lib-src lisp lwlib msdos nt src; do
528 rm -f ${tempdir}/${subdir}/COPYING
529 cp COPYING ${tempdir}/${subdir}
530 done
532 if [ "${newer}" ]; then
533 echo "Removing files older than $newer"
534 ## We remove .elc files unconditionally, on the theory that anyone picking
535 ## up an incremental distribution already has a running Emacs to byte-compile
536 ## them with.
537 find ${tempparent} \( -name '*.elc' -o ! -newer ${newer} \) -exec rm -f {} \;
540 ## Don't distribute backups, autosaves, etc.
541 echo "Removing unwanted files"
542 find ${tempparent} \( -name '*~' -o -name '#*#' -o -name '.*ignore' -o -name '=*' -o -name 'TAGS' \) -exec rm -f {} \;
544 if [ "${make_tar}" = yes ]; then
545 echo "Looking for $default_gzip"
546 found=0
547 temppath=`echo $PATH | sed -e 's/^:/.:/' -e 's/::/:.:/g' -e 's/:$/:./' \
548 -e 's/:/ /g'`
549 for dir in ${temppath}; do
550 [ -x ${dir}/$default_gzip ] || continue
551 found=1; break
552 done
553 if [ "$found" = "0" ]; then
554 echo "WARNING: '$default_gzip' not found, will not compress" >&2
555 default_gzip=cat
557 case "${default_gzip}" in
558 bzip2) gzip_extension=.bz2 ;;
559 xz) gzip_extension=.xz ;;
560 gzip) gzip_extension=.gz ; default_gzip="gzip --best";;
561 *) gzip_extension= ;;
562 esac
563 echo "Creating tar file"
564 (cd ${tempparent} ; tar cvf - ${emacsname} ) \
565 | ${default_gzip} \
566 > ${emacsname}.tar${gzip_extension}
569 if [ "${clean_up}" != yes ]; then
570 (cd ${tempparent}; mv ${emacsname} ..)
571 rm -rf ${tempparent}
574 ### make-dist ends here