Mercurial > emacs
annotate lisp/Makefile.in @ 36695:8e8c4af5a4ae
(comint-insert-clicked-input): Use the last key
from this-command-keys to lookup the global key definition.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 09 Mar 2001 14:20:59 +0000 |
parents | c8fb06423da0 |
children | b485ed237672 |
rev | line source |
---|---|
29657 | 1 # Maintenance productions for the Lisp directory |
36226 | 2 # Copyright (C) 2000, 2001 Free Software Foundation, Inc. |
3 | |
4 # This file is part of GNU Emacs. | |
5 | |
6 # GNU Emacs is free software; you can redistribute it and/or modify | |
7 # it under the terms of the GNU General Public License as published by | |
8 # the Free Software Foundation; either version 2, or (at your option) | |
9 # any later version. | |
10 | |
11 # GNU Emacs is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU General Public License for more details. | |
15 | |
16 # You should have received a copy of the GNU General Public License | |
17 # along with GNU Emacs; see the file COPYING. If not, write to | |
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 # Boston, MA 02111-1307, USA. | |
29657 | 20 |
29679
97ed659aea4e
(SHELL): Make sure /bin/sh is used.
Eli Zaretskii <eliz@gnu.org>
parents:
29657
diff
changeset
|
21 SHELL = /bin/sh |
97ed659aea4e
(SHELL): Make sure /bin/sh is used.
Eli Zaretskii <eliz@gnu.org>
parents:
29657
diff
changeset
|
22 |
29657 | 23 lisp=@srcdir@ |
24 VPATH=@srcdir@ | |
29704
ce8197473e44
(srcdir): Define for update-subdirs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29703
diff
changeset
|
25 srcdir=@srcdir@/.. |
29657 | 26 |
27 # You can specify a different executable on the make command line, | |
28 # e.g. "make EMACS=../src/emacs ...". | |
29 | |
30 EMACS = ../src/emacs | |
31 | |
32 # Command line flags for Emacs. This must include --multibyte, | |
33 # otherwise some files will not compile. | |
34 | |
35 EMACSOPT = -batch --no-site-file --multibyte | |
36 | |
37 SOURCES = *.el COPYING Makefile | |
38 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el | |
39 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el | |
40 ETAGS = ../lib-src/etags | |
41 | |
30084
bafd38c61694
(DONTCOMPILE): Add comment that the name may
Gerd Moellmann <gerd@gnu.org>
parents:
29935
diff
changeset
|
42 # Files which should not be compiled. If you change the name `DONTCOMPILE' |
bafd38c61694
(DONTCOMPILE): Add comment that the name may
Gerd Moellmann <gerd@gnu.org>
parents:
29935
diff
changeset
|
43 # to something different, you'll have to change make-dist as well. |
bafd38c61694
(DONTCOMPILE): Add comment that the name may
Gerd Moellmann <gerd@gnu.org>
parents:
29935
diff
changeset
|
44 # |
29657 | 45 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's |
46 # no point compiling it, although it doesn't hurt. | |
47 | |
48 DONTCOMPILE = \ | |
49 $(lisp)/cus-load.el \ | |
50 $(lisp)/cus-start.el \ | |
51 $(lisp)/emacs-lisp/cl-specs.el \ | |
29874
faee0fe8fa05
(DONTCOMPILE): Add eshell/esh-maint.el.
Gerd Moellmann <gerd@gnu.org>
parents:
29704
diff
changeset
|
52 $(lisp)/eshell/esh-maint.el \ |
31379
58ff79ca361e
(DONTCOMPILE): Fix typo in file name.
Gerd Moellmann <gerd@gnu.org>
parents:
30095
diff
changeset
|
53 $(lisp)/eshell/esh-groups.el \ |
29657 | 54 $(lisp)/finder-inf.el \ |
55 $(lisp)/forms-d2.el \ | |
56 $(lisp)/forms-pass.el \ | |
57 $(lisp)/generic-x.el \ | |
58 $(lisp)/international/latin-1.el \ | |
59 $(lisp)/international/latin-2.el \ | |
60 $(lisp)/international/latin-3.el \ | |
61 $(lisp)/international/latin-4.el \ | |
62 $(lisp)/international/latin-5.el \ | |
63 $(lisp)/international/latin-8.el \ | |
64 $(lisp)/international/latin-9.el \ | |
65 $(lisp)/international/mule-conf.el \ | |
66 $(lisp)/loaddefs.el \ | |
67 $(lisp)/loadup.el \ | |
68 $(lisp)/mail/blessmail.el \ | |
69 $(lisp)/mail/sc.el \ | |
70 $(lisp)/patcomp.el \ | |
71 $(lisp)/paths.el \ | |
72 $(lisp)/play/bruce.el \ | |
73 $(lisp)/subdirs.el \ | |
74 $(lisp)/term/internal.el \ | |
35605
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
75 $(lisp)/term/AT386.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
76 $(lisp)/term/apollo.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
77 $(lisp)/term/bobcat.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
78 $(lisp)/term/iris-ansi.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
79 $(lisp)/term/keyswap.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
80 $(lisp)/term/linux.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
81 $(lisp)/term/lk201.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
82 $(lisp)/term/news.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
83 $(lisp)/term/vt102.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
84 $(lisp)/term/vt125.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
85 $(lisp)/term/vt200.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
86 $(lisp)/term/vt201.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
87 $(lisp)/term/vt220.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
88 $(lisp)/term/vt240.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
89 $(lisp)/term/vt300.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
90 $(lisp)/term/vt320.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
91 $(lisp)/term/vt400.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
92 $(lisp)/term/vt420.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
93 $(lisp)/term/wyse50.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
94 $(lisp)/term/xterm.el \ |
29657 | 95 $(lisp)/version.el |
96 | |
97 # Files to compile before others during a bootstrap. This is done | |
98 # to speed up the bootstrap process. | |
99 | |
100 COMPILE_FIRST = \ | |
101 $(lisp)/emacs-lisp/byte-opt.el \ | |
102 $(lisp)/emacs-lisp/bytecomp.el \ | |
103 $(lisp)/subr.el | |
104 | |
105 # The actual Emacs command run in the targets below. | |
106 | |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
107 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) |
29657 | 108 |
109 # Common command to find subdirectories | |
110 | |
111 setwins=subdirs=`find $$wd -type d -print`; \ | |
112 for file in $$subdirs; do \ | |
113 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \ | |
114 *) wins="$$wins $$file" ;; \ | |
115 esac; \ | |
116 done | |
117 | |
118 doit: | |
119 | |
120 cus-load.el: | |
121 touch $@ | |
122 custom-deps: cus-load.el doit | |
123 wd=$(lisp); $(setwins); \ | |
124 echo Directories: $$wins; \ | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
125 $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins |
29657 | 126 |
127 finder-inf.el: | |
128 echo "(provide 'finder-inf)" >> $@ | |
129 finder-data: finder-inf.el doit | |
130 wd=$(lisp); $(setwins); \ | |
131 echo Directories: $$wins; \ | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
132 $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins |
29657 | 133 |
134 loaddefs.el: | |
135 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ | |
136 echo ";;" >> $@; echo ";;; Code:" >> $@ | |
137 echo "" >> $@ | |
138 echo ";;; Local Variables:" >> $@ | |
139 echo ";;; version-control: never" >> $@ | |
140 echo ";;; no-byte-compile: t" >> $@ | |
141 echo ";;; no-update-autoloads: t" >> $@ | |
142 echo ";;; End:" >> $@ | |
143 echo ";;; loaddefs.el ends here" >> $@ | |
144 autoloads: loaddefs.el doit | |
145 wd=$(lisp); $(setwins); \ | |
146 echo Directories: $$wins; \ | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
147 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins |
29657 | 148 |
149 subdirs.el: | |
150 $(MAKE) $(MFLAGS) update-subdirs | |
151 update-subdirs: doit | |
152 wd=$(lisp); $(setwins); \ | |
153 for file in $$wins; do \ | |
154 $(srcdir)/update-subdirs $$file; \ | |
155 done; | |
156 | |
157 updates: update-subdirs autoloads finder-data custom-deps | |
158 | |
32884
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
159 # Update the AUTHORS file. |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
160 |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
161 update-authors: |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
162 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) |
32884
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
163 |
29657 | 164 TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
165 ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2) | |
166 | |
30095
96039cc24acf
(TAGS-LISP): Don't use `$(lispsource)'.
Gerd Moellmann <gerd@gnu.org>
parents:
30084
diff
changeset
|
167 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) |
96039cc24acf
(TAGS-LISP): Don't use `$(lispsource)'.
Gerd Moellmann <gerd@gnu.org>
parents:
30084
diff
changeset
|
168 ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2) |
29657 | 169 |
33667
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
170 .SUFFIXES: .elc .el |
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
171 |
29657 | 172 .el.elc: subdirs.el |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
173 -$(emacs) -f batch-byte-compile $< |
29657 | 174 |
175 $(DONTCOMPILE:.el=.elc): | |
176 -rm -f $@ | |
177 | |
178 # Compile all Lisp files, except those from DONTCOMPILE. This | |
179 # compiles files unconditionally. All .elc files are made writable | |
180 # before compilation in case we checked out read-only (CVS option -r). | |
181 # Files MUST be compiled one by one. If we compile several files in a | |
182 # row we can't make sure that the compilation environment is clean. | |
183 # We also set the load-path of the Emacs used for compilation to the | |
184 # current directory and its subdirectories, to make sure require's and | |
185 # load's in the files being compiled find the right files. | |
186 | |
187 compile-files: subdirs.el doit | |
188 find $(lisp) -name "*.elc" -print | xargs chmod +w; \ | |
189 wd=$(lisp); $(setwins); \ | |
190 elpat=`echo $$wins | tr ' ' '\012\012' | \ | |
191 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ | |
192 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \ | |
193 tr ' ' '\012\012' | sort | uniq -u`; \ | |
194 for el in $(COMPILE_FIRST) $$els; do \ | |
195 echo Compiling $$el; \ | |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
196 $(emacs) -f batch-byte-compile $$el || exit 1; \ |
29657 | 197 done |
198 | |
199 # Backup compiled Lisp files in elc.tar.gz. If that file already | |
200 # exists, make a backup of it. | |
201 | |
202 backup-compiled-files: | |
203 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ | |
204 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc | |
205 | |
206 # Compile Lisp files, but save old compiled files first. | |
207 | |
208 compile: backup-compiled-files compile-files | |
209 | |
210 # Recompile all Lisp files which are newer than their .elc files. | |
211 # Note that this doesn't create .elc files. It only recompiles if an | |
212 # .elc is present. | |
213 | |
214 recompile: doit | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
215 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) |
29657 | 216 |
217 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, | |
218 # because it's not sure it's up-to-date, and if it's not, that might | |
219 # lead to errors during the bootstrap because something fails to | |
220 # autoload as expected. Remove compiled Lisp files so that | |
221 # bootstrap-emacs will be built from sources only. | |
222 | |
223 bootstrap-clean: | |
224 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi | |
225 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc | |
226 | |
227 # Generate/update files for the bootstrap process. | |
228 | |
229 bootstrap: autoloads compile-files custom-deps | |
230 | |
29703 | 231 distclean: |
232 -rm -f $(lisp)/Makefile | |
233 | |
29657 | 234 # Makefile ends here. |