update.
[chise/xemacs-chise.git] / lib-src / update-elc.sh
1 #!/bin/sh
2 # update-elc.sh --- recompile all missing or out-of-date .elc files
3
4 # Author:       Jamie Zawinski, Ben Wing, Martin Buchholz
5 # Maintainer:   Martin Buchholz
6 # Keywords:     recompile byte-compile .el .elc
7
8 # This file is part of XEmacs.
9
10 # XEmacs is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2, or (at your option)
13 # any later version.
14
15 # XEmacs is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # General Public License for more details.
19
20 # You should have received a copy of the GNU General Public License
21 # along with XEmacs; see the file COPYING.  If not, write to
22 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24
25 ### Commentary:
26 ##  Recompile all .elc files that need recompilation.  Requires a
27 ##  working version of "xemacs".  Correctly handles the case where the
28 ##  .elc files are missing; thus you can execute "rm lisp/*/*.elc"
29 ##  before running this script.  Run this from the parent of the
30 ##  "lisp" directory, or another nearby directory.
31
32 set -e
33
34 # Try to find the lisp directory in several places.
35 # (Sun workspaces have an "editor" directory)
36 for dir in  .  ..  ../..  editor  ../editor  ; do
37   if test -d $dir/lisp/. ; then cd $dir ; break ; fi
38 done
39
40 if test ! -d lisp/. ; then
41   echo "$0: Cannot find the \"lisp\" directory."
42   exit 1
43 fi
44
45 if test -z "$EMACS"; then EMACS="./src/xemacs"; fi
46 export EMACS
47
48 echo " (using $EMACS)"
49
50 # fuckin' sysv, man...
51 if [ "`uname -r | sed 's/[^0-9]*\([0-9]*\).*/\1/'`" -gt 4 ]; then
52   echon()
53   {    
54     /bin/echo $* '\c'
55   }
56 else
57   echon()
58   {
59     echo -n $*
60   }
61 fi
62
63 EMACS_DIR=`cd \`dirname $EMACS\` && pwd`;
64 CANON_PWD=`pwd`
65 # Account for various system automounter configurations
66 if test -d "/net"; then
67   if test -d "/tmp_mnt/net"; then tdir="/tmp_mnt/net"; else tdir="/tmp_mnt"; fi
68   EMACS_DIR=`echo "$EMACS_DIR" | \
69    sed -e "s|^${tdir}/|/net/|" -e "s|^/a/|/net/|" -e "s|^/amd/|/net/|"`
70   CANON_PWD=`echo "$CANON_PWD" | \
71    sed -e "s|^${tdir}/|/net/|" -e "s|^/a/|/net/|" -e "s|^/amd/|/net/|"`
72 fi
73 REAL="$EMACS_DIR/`basename $EMACS`"
74
75 echo "Recompiling in $CANON_PWD"
76 echo "          with $REAL..."
77
78 BYTECOMP="$REAL -batch -vanilla "
79
80 $EMACS -batch -vanilla -l $CANON_PWD/lisp/cleantree -f batch-remove-old-elc lisp
81
82 prune_vc="( -name '.*' -o -name SCCS -o -name RCS -o -name CVS ) -prune -o"
83
84 # $els  is a list of all .el  files
85 # $elcs is a list of all .elc files
86 els=/tmp/update-elc-1.$$ elcs=/tmp/update-elc-2.$$
87 rm -f $els $elcs
88 trap "rm -f $els $elcs" 0 1 2 3 15
89 find lisp/. $prune_vc -name '*.el'  -print                    | sort > $els
90 find lisp/. $prune_vc -name '*.elc' -print | sed 's/elc$/el/' | sort > $elcs
91
92
93 echon "Deleting .elc files without .el files..."
94 comm -13 $els $elcs | sed -e '\!/vm.el!d' -e 's/el$/elc/' | \
95  while read file ; do echo rm "$file" ; rm "$file" ; done
96 echo done.
97
98
99 # Compute patterns to ignore when searching for files
100 ignore_dirs=""
101 ignore_pattern=''
102
103 # Only use Mule XEmacs to compile Mule-specific elisp dirs
104 echon "Checking for Mule support..."
105 lisp_prog='(princ (featurep (quote mule)))'
106 mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`"
107 if test "$mule_p" = nil ; then
108         echo No
109         ignore_dirs="$ignore_dirs mule"
110 else
111   echo Yes
112 fi
113
114 ignore_dirs="$ignore_dirs utf-2000"
115
116 # first recompile the byte-compiler, so that the other compiles take place
117 # with the latest version (assuming we're compiling the lisp dir of the emacs
118 # we're running, which might not be the case, but often is.)
119 #echo "Checking the byte compiler..."
120 #$BYTECOMP -f batch-byte-recompile-directory lisp/bytecomp
121
122 # Prepare for byte-compiling directories with directory-specific instructions
123 # Not necessary any more, but I want to keep the text current to cut & paste
124 # into the package lisp maintenance tree.
125 #make_special_commands=''
126 #make_special () {
127 #  dir="$1"; shift;
128 #  ignore_dirs="$ignore_dirs $dir"
129 #  make_special_commands="$make_special_commands \
130 #echo \"Compiling in lisp/$dir\"; \
131 #(cd \"lisp/$dir\" && ${MAKE:-make} EMACS=$REAL ${1+$*}); \
132 #echo \"lisp/$dir done.\";"
133 #}
134
135 #if test "$mule_p" != nil; then
136 #       make_special skk all
137 #fi
138
139 ## AUCTeX is a package now
140 # if test "$mule_p" = nil ; then
141 #       make_special auctex some
142 # else
143 #       make_special auctex some MULE_ELC=tex-jp.elc
144 # fi
145 #make_special cc-mode all
146 # EFS is now packaged
147 # make_special efs x20
148 #make_special eos -k            # not strictly necessary...
149 ## make_special gnus  some      # Now this is a package.
150 # hyperbole is now packaged
151 # make_special hyperbole elc
152 # We're not ready for the following, yet.
153 #make_special ilisp XEmacsELC=custom-load.elc elc
154 # ilisp is now packaged
155 # make_special ilisp elc
156 # oobr is now packaged
157 # make_special oobr HYPB_ELC='' elc
158 ## W3 is a package now.
159 #make_special w3 xemacs-w3
160
161 for dir in $ignore_dirs ; do
162   ignore_pattern="${ignore_pattern}/\\/$dir\\//d
163 /\\/$dir\$/d
164 "
165 done
166
167 # Other special-case filenames that don't get byte-compiled
168 ignore_pattern="$ignore_pattern"'
169 \!/,!d
170 \!/paths.el$!d
171 \!/loadup.el$!d
172 \!/loadup-el.el$!d
173 \!/update-elc.el$!d
174 \!/dumped-lisp.el$!d
175 \!/make-docfile.el$!d
176 \!/site-start.el$!d
177 \!/site-load.el$!d
178 \!/site-init.el$!d
179 \!/version.el$!d
180 \!/very-early-lisp.el$!d
181 '
182
183 echo "Compiling files without .elc..."
184 NUMTOCOMPILE=20                 # compile this many files with each invocation
185 comm -23 $els $elcs | \
186  sed "$ignore_pattern" | \
187  xargs -t -n$NUMTOCOMPILE $BYTECOMP -f batch-byte-compile
188 echo "Compiling files without .elc... Done"
189
190 #if test "$mule_p" != nil; then
191 #       eval "$make_special_commands"
192 #fi