Mercurial > emacs
annotate lisp/Makefile.in @ 74103:b21beb03e5c4
(idlwave-shell-filter-directory): Handle extra newlines and spaces.
(idlwave-shell-mode-map): Add help-with-topic.
author | J.D. Smith <jdsmith@as.arizona.edu> |
---|---|
date | Mon, 20 Nov 2006 21:35:28 +0000 |
parents | a7589067f2a4 |
children | e3694f1cb928 c71725faff1a 02cf29720f31 |
rev | line source |
---|---|
29657 | 1 # Maintenance productions for the Lisp directory |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
68466
diff
changeset
|
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, |
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
68466
diff
changeset
|
3 # 2006 Free Software Foundation, Inc. |
36226 | 4 |
5 # This file is part of GNU Emacs. | |
6 | |
7 # GNU Emacs is free software; you can redistribute it and/or modify | |
8 # it under the terms of the GNU General Public License as published by | |
9 # the Free Software Foundation; either version 2, or (at your option) | |
10 # any later version. | |
11 | |
12 # GNU Emacs is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU General Public License for more details. | |
16 | |
17 # You should have received a copy of the GNU General Public License | |
18 # along with GNU Emacs; see the file COPYING. If not, write to | |
64091 | 19 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 # Boston, MA 02110-1301, USA. | |
29657 | 21 |
29679
97ed659aea4e
(SHELL): Make sure /bin/sh is used.
Eli Zaretskii <eliz@gnu.org>
parents:
29657
diff
changeset
|
22 SHELL = /bin/sh |
97ed659aea4e
(SHELL): Make sure /bin/sh is used.
Eli Zaretskii <eliz@gnu.org>
parents:
29657
diff
changeset
|
23 |
29657 | 24 lisp=@srcdir@ |
25 VPATH=@srcdir@ | |
29704
ce8197473e44
(srcdir): Define for update-subdirs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29703
diff
changeset
|
26 srcdir=@srcdir@/.. |
29657 | 27 |
28 # You can specify a different executable on the make command line, | |
29 # e.g. "make EMACS=../src/emacs ...". | |
30 | |
31 EMACS = ../src/emacs | |
32 | |
33 # Command line flags for Emacs. This must include --multibyte, | |
34 # otherwise some files will not compile. | |
35 | |
36 EMACSOPT = -batch --no-site-file --multibyte | |
37 | |
38 SOURCES = *.el COPYING Makefile | |
39 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el | |
40 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el | |
41 ETAGS = ../lib-src/etags | |
42 | |
54244
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
43 # Elisp files auto-generated. |
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
44 AUTOGENEL = loaddefs.el \ |
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
45 cus-load.el \ |
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
46 finder-inf.el \ |
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
47 subdirs.el \ |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
48 eshell/esh-groups.el \ |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
49 mh-e/mh-loaddefs.el |
54244
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
50 |
36918
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
51 # Files to compile before others during a bootstrap. This is done to |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
52 # speed up the bootstrap process. The CC files are compiled first |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
53 # because CC mode tweaks the compilation process, and requiring |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
54 # cc-mode when it is not compiled doesn't work during the |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
55 # bootstrapping. |
29657 | 56 |
57 COMPILE_FIRST = \ | |
58 $(lisp)/emacs-lisp/byte-opt.el \ | |
59 $(lisp)/emacs-lisp/bytecomp.el \ | |
36918
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
60 $(lisp)/subr.el \ |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
61 $(lisp)/progmodes/cc-mode.el \ |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
62 $(lisp)/progmodes/cc-vars.el |
29657 | 63 |
64 # The actual Emacs command run in the targets below. | |
65 | |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
66 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) |
29657 | 67 |
68 # Common command to find subdirectories | |
69 | |
54632
e2815226989d
(setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents:
54248
diff
changeset
|
70 setwins=subdirs=`(cd $$wd; find . -type d -print)`; \ |
29657 | 71 for file in $$subdirs; do \ |
54248
28e8d2c26aa1
(setwins, setwins_almost): Skip .arch-ids and other hidden files/directories.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54244
diff
changeset
|
72 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \ |
54632
e2815226989d
(setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents:
54248
diff
changeset
|
73 *) wins="$$wins $$wd/$$file" ;; \ |
29657 | 74 esac; \ |
75 done | |
38819
87937c18338f
(finder_setwins): Renamed from nonobsolete_setwins.
Gerd Moellmann <gerd@gnu.org>
parents:
38796
diff
changeset
|
76 |
73773
a7589067f2a4
(autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents:
72152
diff
changeset
|
77 # Find all subdirectories except `obsolete'. |
a7589067f2a4
(autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents:
72152
diff
changeset
|
78 |
54632
e2815226989d
(setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents:
54248
diff
changeset
|
79 setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \ |
37275
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
80 for file in $$subdirs; do \ |
54248
28e8d2c26aa1
(setwins, setwins_almost): Skip .arch-ids and other hidden files/directories.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54244
diff
changeset
|
81 case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* | */obsolete | */term ) ;; \ |
54632
e2815226989d
(setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents:
54248
diff
changeset
|
82 *) wins="$$wins $$wd/$$file" ;; \ |
37275
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
83 esac; \ |
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
84 done |
29657 | 85 |
86 doit: | |
87 | |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
88 $(lisp)/cus-load.el: |
29657 | 89 touch $@ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
90 custom-deps: $(lisp)/cus-load.el doit |
48471
ea89037b6852
(setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48006
diff
changeset
|
91 wd=$(lisp); $(setwins_almost); \ |
29657 | 92 echo Directories: $$wins; \ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
93 $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins |
29657 | 94 |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
95 finder-data: doit |
48471
ea89037b6852
(setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48006
diff
changeset
|
96 wd=$(lisp); $(setwins_almost); \ |
29657 | 97 echo Directories: $$wins; \ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
98 $(EMACS) $(EMACSOPT) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins |
29657 | 99 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
100 $(lisp)/loaddefs.el: |
29657 | 101 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ |
102 echo ";;" >> $@; echo ";;; Code:" >> $@ | |
103 echo "" >> $@ | |
66789
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
104 echo ";; Local Variables:" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
105 echo ";; version-control: never" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
106 echo ";; no-byte-compile: t" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
107 echo ";; no-update-autoloads: t" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
108 echo ";; End:" >> $@ |
29657 | 109 echo ";;; loaddefs.el ends here" >> $@ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
110 autoloads: $(lisp)/loaddefs.el doit |
73773
a7589067f2a4
(autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents:
72152
diff
changeset
|
111 wd=$(lisp); $(setwins_almost); \ |
29657 | 112 echo Directories: $$wins; \ |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
113 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins |
29657 | 114 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
115 $(lisp)/subdirs.el: |
29657 | 116 $(MAKE) $(MFLAGS) update-subdirs |
117 update-subdirs: doit | |
118 wd=$(lisp); $(setwins); \ | |
119 for file in $$wins; do \ | |
120 $(srcdir)/update-subdirs $$file; \ | |
121 done; | |
122 | |
68058
484a75387b1b
(updates): Remove mh-autoloads dependency, since it probably has
Bill Wohler <wohler@newt.com>
parents:
68057
diff
changeset
|
123 updates: update-subdirs autoloads finder-data custom-deps |
29657 | 124 |
67952 | 125 # This is useful after "cvs up". |
126 cvs-update: recompile autoloads finder-data custom-deps | |
127 | |
32884
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
128 # Update the AUTHORS file. |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
129 |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
130 update-authors: |
61526 | 131 $(emacs) -l authors -f batch-update-authors $(srcdir)/AUTHORS $(srcdir) |
32884
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
132 |
29657 | 133 TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
53972
2627b0171f3d
(TAGS, TAGS-LISP): Filter out of `els' only loaddefs* and ldefs-boot*.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53941
diff
changeset
|
134 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ |
38653
8b46b3446482
(TAGS, TAGS-LISP): Exclude loaddefs.el.
Gerd Moellmann <gerd@gnu.org>
parents:
37678
diff
changeset
|
135 ${ETAGS} $$els |
29657 | 136 |
30095
96039cc24acf
(TAGS-LISP): Don't use `$(lispsource)'.
Gerd Moellmann <gerd@gnu.org>
parents:
30084
diff
changeset
|
137 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) |
53972
2627b0171f3d
(TAGS, TAGS-LISP): Filter out of `els' only loaddefs* and ldefs-boot*.
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53941
diff
changeset
|
138 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs[^ ]*,," -e "s,$(lisp)/ldefs-boot[^ ]*,,"`; \ |
38653
8b46b3446482
(TAGS, TAGS-LISP): Exclude loaddefs.el.
Gerd Moellmann <gerd@gnu.org>
parents:
37678
diff
changeset
|
139 ${ETAGS} -o TAGS-LISP $$els |
29657 | 140 |
33667
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
141 .SUFFIXES: .elc .el |
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
142 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
143 .el.elc: $(lisp)/subdirs.el |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
144 -$(emacs) -f batch-byte-compile $< |
29657 | 145 |
61526 | 146 # Compile all Lisp files, but don't recompile those that are up to |
147 # date. Some files don't actually get compiled because they set the | |
148 # local variable no-byte-compile. | |
43026 | 149 |
61526 | 150 # All .elc files are made writable before compilation in case we |
151 # checked out read-only (CVS option -r). Files MUST be compiled one by | |
152 # one. If we compile several files in a row we can't make sure that | |
153 # the compilation environment is clean. We also set the load-path of | |
154 # the Emacs used for compilation to the current directory and its | |
155 # subdirectories, to make sure require's and load's in the files being | |
156 # compiled find the right files. | |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
157 |
68729
fbaf1c0fb4da
(compile): Append "|| true" to the end of the `find' command, like
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
158 # `|| true' below prevents old Bash versions from getting confused |
fbaf1c0fb4da
(compile): Append "|| true" to the end of the `find' command, like
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
159 # by an error. |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
160 compile: $(lisp)/subdirs.el mh-autoloads doit |
68729
fbaf1c0fb4da
(compile): Append "|| true" to the end of the `find' command, like
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
161 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \ |
43026 | 162 wd=$(lisp); $(setwins); \ |
61526 | 163 els=`echo $$wins | tr ' \011' '\012\012' | \ |
43026 | 164 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ |
165 for el in $(COMPILE_FIRST) $$els; do \ | |
44174
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
166 if test -f $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
167 then \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
168 echo Compiling $$el; \ |
58345
29561dbc0629
(recompile): Revert 2004-11-19 change.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
58341
diff
changeset
|
169 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ |
44174
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
170 fi \ |
43026 | 171 done |
172 | |
61526 | 173 # Compile all Lisp files. This is like `compile' but compiles files |
174 # unconditionally. Some files don't actually get compiled because they | |
175 # set the local variable no-byte-compile. | |
176 | |
68057
f6843c5eadd5
(compile-always): Add mh-autoloads dependency.
Bill Wohler <wohler@newt.com>
parents:
67952
diff
changeset
|
177 compile-always: $(lisp)/subdirs.el mh-autoloads doit |
48006 | 178 # `|| true' prevents old Bash versions from getting confused |
179 # by an error. | |
48005
93d886a02ac0
(compile-always): Avoid error in old Bash versions.
Richard M. Stallman <rms@gnu.org>
parents:
47536
diff
changeset
|
180 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \ |
29657 | 181 wd=$(lisp); $(setwins); \ |
61526 | 182 els=`echo $$wins | tr ' \011' '\012\012' | \ |
29657 | 183 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ |
184 for el in $(COMPILE_FIRST) $$els; do \ | |
44174
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
185 if test -f $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
186 then \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
187 echo Compiling $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
188 $(emacs) -f batch-byte-compile $$el || exit 1; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
189 fi \ |
29657 | 190 done |
191 | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49382
diff
changeset
|
192 compile-calc: |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
193 for el in `find $(lisp)/calc -name '*.el'`; do \ |
41408
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
194 echo Compiling $$el; \ |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
195 $(emacs) -f batch-byte-compile $$el || exit 1; \ |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
196 done |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
197 |
29657 | 198 # Backup compiled Lisp files in elc.tar.gz. If that file already |
199 # exists, make a backup of it. | |
200 | |
201 backup-compiled-files: | |
202 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ | |
203 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc | |
204 | |
205 # Compile Lisp files, but save old compiled files first. | |
206 | |
43026 | 207 compile-after-backup: backup-compiled-files compile-always |
29657 | 208 |
72152
5f2636a9b8eb
(recompile): Update comment to reflect change
Nick Roberts <nickrob@snap.net.nz>
parents:
71952
diff
changeset
|
209 # Recompile all Lisp files which are newer than their .elc files and compile |
5f2636a9b8eb
(recompile): Update comment to reflect change
Nick Roberts <nickrob@snap.net.nz>
parents:
71952
diff
changeset
|
210 # new ones. |
29657 | 211 |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
212 recompile: doit mh-autoloads $(lisp)/progmodes/cc-mode.elc |
58345
29561dbc0629
(recompile): Revert 2004-11-19 change.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
58341
diff
changeset
|
213 $(EMACS) $(EMACSOPT) --eval "(batch-byte-recompile-directory 0)" $(lisp) |
29657 | 214 |
53892
f3098a6fd4f0
Added extra dependencies in the recompile target needed to cope with
Martin Stjernholm <mast@lysator.liu.se>
parents:
53015
diff
changeset
|
215 # CC Mode uses a compile time macro system which causes a compile time |
f3098a6fd4f0
Added extra dependencies in the recompile target needed to cope with
Martin Stjernholm <mast@lysator.liu.se>
parents:
53015
diff
changeset
|
216 # dependency in cc-mode.elc on the macros in cc-langs.el and the |
f3098a6fd4f0
Added extra dependencies in the recompile target needed to cope with
Martin Stjernholm <mast@lysator.liu.se>
parents:
53015
diff
changeset
|
217 # version string in cc-defs.el. |
53941
f381d8277172
* Makefile.in: Fixed the CC Mode recompile kludge so it works
Martin Stjernholm <mast@lysator.liu.se>
parents:
53892
diff
changeset
|
218 $(lisp)/progmodes/cc-mode.elc: \ |
f381d8277172
* Makefile.in: Fixed the CC Mode recompile kludge so it works
Martin Stjernholm <mast@lysator.liu.se>
parents:
53892
diff
changeset
|
219 $(lisp)/progmodes/cc-mode.el \ |
f381d8277172
* Makefile.in: Fixed the CC Mode recompile kludge so it works
Martin Stjernholm <mast@lysator.liu.se>
parents:
53892
diff
changeset
|
220 $(lisp)/progmodes/cc-langs.el \ |
f381d8277172
* Makefile.in: Fixed the CC Mode recompile kludge so it works
Martin Stjernholm <mast@lysator.liu.se>
parents:
53892
diff
changeset
|
221 $(lisp)/progmodes/cc-defs.el |
f381d8277172
* Makefile.in: Fixed the CC Mode recompile kludge so it works
Martin Stjernholm <mast@lysator.liu.se>
parents:
53892
diff
changeset
|
222 $(EMACS) $(EMACSOPT) -f batch-byte-compile $(lisp)/progmodes/cc-mode.el |
53892
f3098a6fd4f0
Added extra dependencies in the recompile target needed to cope with
Martin Stjernholm <mast@lysator.liu.se>
parents:
53015
diff
changeset
|
223 |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
224 # Update MH-E internal autoloads. These are not to be confused with |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
225 # the autoloads for the MH-E entry points, which are already in |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
226 # loaddefs.el. |
68135
03bac2d0a4aa
* Makefile (MH_E_SRC): Add mh-buffers.el.
Bill Wohler <wohler@newt.com>
parents:
68058
diff
changeset
|
227 MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \ |
68466
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
228 $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-compat.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
229 $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-e.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
230 $(lisp)/mh-e/mh-folder.el $(lisp)/mh-e/mh-funcs.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
231 $(lisp)/mh-e/mh-gnus.el $(lisp)/mh-e/mh-identity.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
232 $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-junk.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
233 $(lisp)/mh-e/mh-letter.el $(lisp)/mh-e/mh-limit.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
234 $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-print.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
235 $(lisp)/mh-e/mh-scan.el $(lisp)/mh-e/mh-search.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
236 $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-show.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
237 $(lisp)/mh-e/mh-speed.el $(lisp)/mh-e/mh-thread.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
238 $(lisp)/mh-e/mh-tool-bar.el $(lisp)/mh-e/mh-utils.el \ |
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
239 $(lisp)/mh-e/mh-xface.el |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
240 |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
241 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el |
68135
03bac2d0a4aa
* Makefile (MH_E_SRC): Add mh-buffers.el.
Bill Wohler <wohler@newt.com>
parents:
68058
diff
changeset
|
242 $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
243 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@ |
68466
c6d6f5ab6731
(MH_E_SRC): Add mh-compat.el, mh-folder.el,
Bill Wohler <wohler@newt.com>
parents:
68164
diff
changeset
|
244 echo "" >> $@ |
68135
03bac2d0a4aa
* Makefile (MH_E_SRC): Add mh-buffers.el.
Bill Wohler <wohler@newt.com>
parents:
68058
diff
changeset
|
245 echo ";; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc." >> $@ |
66789
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
246 echo ";; Author: Bill Wohler <wohler@newt.com>" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
247 echo ";; Keywords: mail" >> $@ |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
248 echo ";;; Commentary:" >> $@ |
67242
2e240c06e087
(mh-loaddefs.el): Reinsert Change Log as its absence triggers
Bill Wohler <wohler@newt.com>
parents:
66789
diff
changeset
|
249 echo ";;; Change Log:" >> $@ |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
250 echo ";;; Code:" >> $@ |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
251 echo "" >> $@ |
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
252 echo "(provide 'mh-loaddefs)" >> $@ |
66789
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
253 echo ";; Local Variables:" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
254 echo ";; version-control: never" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
255 echo ";; no-byte-compile: t" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
256 echo ";; no-update-autoloads: t" >> $@ |
f03f8ff82435
(mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65967
diff
changeset
|
257 echo ";; End:" >> $@ |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
258 echo ";;; mh-loaddefs.el ends here" >> $@ |
71952
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
259 $(EMACS) $(EMACSOPT) \ |
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
260 -l autoload \ |
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
261 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \ |
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
262 --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \ |
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
263 --eval "(setq make-backup-files nil)" \ |
5021520a58bd
(mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68729
diff
changeset
|
264 -f batch-update-autoloads $(lisp)/mh-e |
65887
135cf95723ca
* mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents:
65010
diff
changeset
|
265 |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
266 # Prepare a bootstrap in the lisp subdirectory. |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
267 # |
63338
9f31ece48b49
(bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents:
61526
diff
changeset
|
268 # Build loaddefs.el to make sure it's up-to-date. If it's not, that |
9f31ece48b49
(bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents:
61526
diff
changeset
|
269 # might lead to errors during the bootstrap because something fails to |
9f31ece48b49
(bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents:
61526
diff
changeset
|
270 # autoload as expected. If there is no emacs binary, then we can't |
65010
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
271 # build autoloads yet. In that case we have to use ldefs-boot.el. |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
272 # Bootstrap should always work with ldefs-boot.el. Therefore, |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
273 # whenever a new autoload cookie gets added that is necessary during |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
274 # bootstrapping, ldefs-boot.el should be updated by overwriting it with |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
275 # an up-to-date copy of loaddefs.el that is uncorrupted by |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
276 # local changes. (Because loaddefs.el is an automatically generated |
e654d00374e0
Expand comment about building loaddefs.el.
Luc Teirlinck <teirllm@auburn.edu>
parents:
64769
diff
changeset
|
277 # file, we don't want to store it in the source repository). |
29657 | 278 |
54244
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
279 bootstrap-prepare: |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
280 if test -x $(EMACS); then \ |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
281 $(MAKE) $(MFLAGS) autoloads; \ |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
282 else \ |
63338
9f31ece48b49
(bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents:
61526
diff
changeset
|
283 cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \ |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
284 fi |
54244
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
285 |
58080
c3a97f7b64f5
* Makefile.in (maintainer-clean): Depend on distclean.
Jan Djärv <jan.h.d@swipnet.se>
parents:
58020
diff
changeset
|
286 maintainer-clean: distclean |
54244
9df8cecf70d2
(AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53972
diff
changeset
|
287 cd $(lisp); rm -f *.elc */*.elc $(AUTOGENEL) |
29657 | 288 |
58020
95969b0d9f39
(bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents:
56026
diff
changeset
|
289 bootstrap-clean: |
95969b0d9f39
(bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents:
56026
diff
changeset
|
290 cd $(lisp); rm -f *.elc */*.elc |
95969b0d9f39
(bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents:
56026
diff
changeset
|
291 |
29657 | 292 # Generate/update files for the bootstrap process. |
293 | |
68057
f6843c5eadd5
(compile-always): Add mh-autoloads dependency.
Bill Wohler <wohler@newt.com>
parents:
67952
diff
changeset
|
294 bootstrap: update-subdirs autoloads compile |
49382
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
295 |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
296 # Generate/update files after the bootstrap process. |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
297 # custom-deps needs `preloaded-file-list'. |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
298 |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
299 bootstrap-after: finder-data custom-deps |
29657 | 300 |
29703 | 301 distclean: |
42222
2f835f4a8ef8
(distclean): Remove Makefile in the build directory, not in the source
Eli Zaretskii <eliz@gnu.org>
parents:
42147
diff
changeset
|
302 -rm -f ./Makefile |
29703 | 303 |
29657 | 304 # Makefile ends here. |