Mercurial > emacs
annotate lisp/Makefile.in @ 52614:a77e35d5d0c2
(frame-current-scroll-bars): New defun.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Wed, 24 Sep 2003 22:54:55 +0000 |
parents | 916aeb134a46 |
children | 5bc5adc78004 |
rev | line source |
---|---|
29657 | 1 # Maintenance productions for the Lisp directory |
52199
7ae60c4fe488
Revision: emacs--cvs-trunk--0--patch-14
Miles Bader <miles@gnu.org>
parents:
49705
diff
changeset
|
2 # Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. |
36226 | 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' |
42147
b8d77bc6ce4d
Note that src/Makefile.in needs changes if DONTCOMPILE is modified.
Eli Zaretskii <eliz@gnu.org>
parents:
42127
diff
changeset
|
43 # to something different, you'll have to change make-dist as well, and |
b8d77bc6ce4d
Note that src/Makefile.in needs changes if DONTCOMPILE is modified.
Eli Zaretskii <eliz@gnu.org>
parents:
42127
diff
changeset
|
44 # modify the lists in $lisp and $shortlisp on src/Makefile.in. |
30084
bafd38c61694
(DONTCOMPILE): Add comment that the name may
Gerd Moellmann <gerd@gnu.org>
parents:
29935
diff
changeset
|
45 # |
29657 | 46 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's |
47 # no point compiling it, although it doesn't hurt. | |
48 | |
49 DONTCOMPILE = \ | |
50 $(lisp)/cus-load.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 \ | |
42127
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
66 $(lisp)/language/czech.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
67 $(lisp)/language/devanagari.el \ |
49705
11a1f873b7e8
(DONTCOMPILE): Add malayalam.el and tamil.el.
Kenichi Handa <handa@m17n.org>
parents:
49597
diff
changeset
|
68 $(lisp)/language/malayalam.el \ |
11a1f873b7e8
(DONTCOMPILE): Add malayalam.el and tamil.el.
Kenichi Handa <handa@m17n.org>
parents:
49597
diff
changeset
|
69 $(lisp)/language/tamil.el \ |
42127
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
70 $(lisp)/language/english.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
71 $(lisp)/language/greek.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
72 $(lisp)/language/hebrew.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
73 $(lisp)/language/japanese.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
74 $(lisp)/language/korean.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
75 $(lisp)/language/lao.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
76 $(lisp)/language/misc-lang.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
77 $(lisp)/language/romanian.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
78 $(lisp)/language/slovak.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
79 $(lisp)/language/thai.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
80 $(lisp)/language/utf-8-lang.el \ |
298738c23c3e
(DONTCOMPILE): Add various language files.
Dave Love <fx@gnu.org>
parents:
41408
diff
changeset
|
81 $(lisp)/language/georgian.el \ |
29657 | 82 $(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
|
83 $(lisp)/loaddefs-boot.el \ |
29657 | 84 $(lisp)/loadup.el \ |
85 $(lisp)/mail/blessmail.el \ | |
86 $(lisp)/patcomp.el \ | |
87 $(lisp)/paths.el \ | |
88 $(lisp)/play/bruce.el \ | |
89 $(lisp)/subdirs.el \ | |
90 $(lisp)/term/internal.el \ | |
35605
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
91 $(lisp)/term/AT386.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
92 $(lisp)/term/apollo.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
93 $(lisp)/term/bobcat.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
94 $(lisp)/term/iris-ansi.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
95 $(lisp)/term/keyswap.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
96 $(lisp)/term/linux.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
97 $(lisp)/term/lk201.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
98 $(lisp)/term/news.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
99 $(lisp)/term/vt102.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
100 $(lisp)/term/vt125.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
101 $(lisp)/term/vt200.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
102 $(lisp)/term/vt201.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
103 $(lisp)/term/vt220.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
104 $(lisp)/term/vt240.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
105 $(lisp)/term/vt300.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
106 $(lisp)/term/vt320.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
107 $(lisp)/term/vt400.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
108 $(lisp)/term/vt420.el \ |
0689ddc1751c
(DONTCOMPILE): Add various term files.
Gerd Moellmann <gerd@gnu.org>
parents:
33667
diff
changeset
|
109 $(lisp)/term/wyse50.el \ |
29657 | 110 $(lisp)/version.el |
111 | |
36918
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
112 # 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
|
113 # 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
|
114 # 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
|
115 # 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
|
116 # bootstrapping. |
29657 | 117 |
118 COMPILE_FIRST = \ | |
119 $(lisp)/emacs-lisp/byte-opt.el \ | |
120 $(lisp)/emacs-lisp/bytecomp.el \ | |
36918
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
121 $(lisp)/subr.el \ |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
122 $(lisp)/progmodes/cc-mode.el \ |
b485ed237672
(COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents:
36226
diff
changeset
|
123 $(lisp)/progmodes/cc-vars.el |
29657 | 124 |
125 # The actual Emacs command run in the targets below. | |
126 | |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
127 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT) |
29657 | 128 |
129 # Common command to find subdirectories | |
130 | |
131 setwins=subdirs=`find $$wd -type d -print`; \ | |
132 for file in $$subdirs; do \ | |
52199
7ae60c4fe488
Revision: emacs--cvs-trunk--0--patch-14
Miles Bader <miles@gnu.org>
parents:
49705
diff
changeset
|
133 case $$file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;; \ |
29657 | 134 *) wins="$$wins $$file" ;; \ |
135 esac; \ | |
136 done | |
38819
87937c18338f
(finder_setwins): Renamed from nonobsolete_setwins.
Gerd Moellmann <gerd@gnu.org>
parents:
38796
diff
changeset
|
137 |
48471
ea89037b6852
(setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48006
diff
changeset
|
138 setwins_almost=subdirs=`find $$wd -type d -print`; \ |
37275
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
139 for file in $$subdirs; do \ |
41408
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
140 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* | */obsolete | */term ) ;; \ |
37275
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
141 *) wins="$$wins $$file" ;; \ |
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
142 esac; \ |
9a3f00ed6c43
(nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
36918
diff
changeset
|
143 done |
29657 | 144 |
145 doit: | |
146 | |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
147 $(lisp)/cus-load.el: |
29657 | 148 touch $@ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
149 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
|
150 wd=$(lisp); $(setwins_almost); \ |
29657 | 151 echo Directories: $$wins; \ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
152 $(EMACS) $(EMACSOPT) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins |
29657 | 153 |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
154 finder-data: doit |
48471
ea89037b6852
(setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48006
diff
changeset
|
155 wd=$(lisp); $(setwins_almost); \ |
29657 | 156 echo Directories: $$wins; \ |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
157 $(EMACS) $(EMACSOPT) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins |
29657 | 158 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
159 $(lisp)/loaddefs.el: |
29657 | 160 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ |
161 echo ";;" >> $@; echo ";;; Code:" >> $@ | |
162 echo "" >> $@ | |
163 echo ";;; Local Variables:" >> $@ | |
164 echo ";;; version-control: never" >> $@ | |
165 echo ";;; no-byte-compile: t" >> $@ | |
166 echo ";;; no-update-autoloads: t" >> $@ | |
167 echo ";;; End:" >> $@ | |
168 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
|
169 autoloads: $(lisp)/loaddefs.el doit |
29657 | 170 wd=$(lisp); $(setwins); \ |
171 echo Directories: $$wins; \ | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
172 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins |
29657 | 173 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
174 $(lisp)/subdirs.el: |
29657 | 175 $(MAKE) $(MFLAGS) update-subdirs |
176 update-subdirs: doit | |
177 wd=$(lisp); $(setwins); \ | |
178 for file in $$wins; do \ | |
179 $(srcdir)/update-subdirs $$file; \ | |
180 done; | |
181 | |
182 updates: update-subdirs autoloads finder-data custom-deps | |
183 | |
32884
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
184 # Update the AUTHORS file. |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
185 |
f677903fb663
(update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents:
31379
diff
changeset
|
186 update-authors: |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
187 $(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
|
188 |
29657 | 189 TAGS: $(lisptagsfiles1) $(lisptagsfiles2) |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
190 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.*\.el,,"`; \ |
38653
8b46b3446482
(TAGS, TAGS-LISP): Exclude loaddefs.el.
Gerd Moellmann <gerd@gnu.org>
parents:
37678
diff
changeset
|
191 ${ETAGS} $$els |
29657 | 192 |
30095
96039cc24acf
(TAGS-LISP): Don't use `$(lispsource)'.
Gerd Moellmann <gerd@gnu.org>
parents:
30084
diff
changeset
|
193 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2) |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
194 els=`echo $(lisptagsfiles1) $(lisptagsfiles2) | sed -e "s,$(lisp)/loaddefs.*\.el,,"`; \ |
38653
8b46b3446482
(TAGS, TAGS-LISP): Exclude loaddefs.el.
Gerd Moellmann <gerd@gnu.org>
parents:
37678
diff
changeset
|
195 ${ETAGS} -o TAGS-LISP $$els |
29657 | 196 |
33667
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
197 .SUFFIXES: .elc .el |
646b893652e6
(.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents:
33626
diff
changeset
|
198 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
199 .el.elc: $(lisp)/subdirs.el |
33158
075e5f998739
* Makefile.in (emacs): Set EMACSLOADPATH always.
Ken Raeburn <raeburn@raeburn.org>
parents:
32884
diff
changeset
|
200 -$(emacs) -f batch-byte-compile $< |
29657 | 201 |
202 $(DONTCOMPILE:.el=.elc): | |
203 -rm -f $@ | |
204 | |
43026 | 205 # Compile all Lisp files, except those from DONTCOMPILE, |
206 # but don't recompile those that are up to date. | |
207 | |
208 # All .elc files are made writable | |
29657 | 209 # before compilation in case we checked out read-only (CVS option -r). |
210 # Files MUST be compiled one by one. If we compile several files in a | |
211 # row we can't make sure that the compilation environment is clean. | |
212 # We also set the load-path of the Emacs used for compilation to the | |
213 # current directory and its subdirectories, to make sure require's and | |
214 # load's in the files being compiled find the right files. | |
215 | |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
216 # NOTE about DONTCOMPILE: in the `echo <foo> | sort | uniq -u' we pass |
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
217 # $(DONTCOMPILE) twice. This is in case one of the files in DONTCOMPILE |
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
218 # is absent. -stef |
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
219 |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
220 compile: $(lisp)/subdirs.el doit |
43026 | 221 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1; \ |
222 wd=$(lisp); $(setwins); \ | |
223 elpat=`echo $$wins | tr ' ' '\012\012' | \ | |
224 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ | |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
225 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \ |
43026 | 226 tr ' ' '\012\012' | sort | uniq -u`; \ |
227 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
|
228 if test -f $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
229 then \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
230 echo Compiling $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
231 $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
232 fi \ |
43026 | 233 done |
234 | |
235 # Compile all Lisp files, except those from DONTCOMPILE. This | |
236 # is like `compile' but compiles files unconditionally. | |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
237 compile-always: $(lisp)/subdirs.el doit |
48006 | 238 # `|| true' prevents old Bash versions from getting confused |
239 # by an error. | |
48005
93d886a02ac0
(compile-always): Avoid error in old Bash versions.
Richard M. Stallman <rms@gnu.org>
parents:
47536
diff
changeset
|
240 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \ |
29657 | 241 wd=$(lisp); $(setwins); \ |
242 elpat=`echo $$wins | tr ' ' '\012\012' | \ | |
243 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \ | |
44106
748924636cc4
(finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44080
diff
changeset
|
244 els=`echo $$elpat $(DONTCOMPILE) $(DONTCOMPILE) $(COMPILE_FIRST) | \ |
29657 | 245 tr ' ' '\012\012' | sort | uniq -u`; \ |
246 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
|
247 if test -f $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
248 then \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
249 echo Compiling $$el; \ |
f41b79ef76f5
(compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents:
44106
diff
changeset
|
250 $(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
|
251 fi \ |
29657 | 252 done |
253 | |
49597
e88404e8f2cf
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49382
diff
changeset
|
254 compile-calc: |
48993
b23fb6dc0915
Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents:
48471
diff
changeset
|
255 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
|
256 echo Compiling $$el; \ |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
257 $(emacs) -f batch-byte-compile $$el || exit 1; \ |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
258 done |
eb28aac7bdd1
(finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents:
40874
diff
changeset
|
259 |
29657 | 260 # Backup compiled Lisp files in elc.tar.gz. If that file already |
261 # exists, make a backup of it. | |
262 | |
263 backup-compiled-files: | |
264 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~ | |
265 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc | |
266 | |
267 # Compile Lisp files, but save old compiled files first. | |
268 | |
43026 | 269 compile-after-backup: backup-compiled-files compile-always |
29657 | 270 |
271 # Recompile all Lisp files which are newer than their .elc files. | |
272 # Note that this doesn't create .elc files. It only recompiles if an | |
273 # .elc is present. | |
274 | |
275 recompile: doit | |
33505
2b0399706883
(custom-deps, finder-data, autoloads, recompile): Don't set EMACSLOADPATH.
Eli Zaretskii <eliz@gnu.org>
parents:
33158
diff
changeset
|
276 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) |
29657 | 277 |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
278 # 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
|
279 # |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
280 # Build loaddefs.el, because it's not sure it's up-to-date, and if it's not, |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
281 # that might lead to errors during the bootstrap because something fails to |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
282 # autoload as expected. However, if there is no emacs binary, then we can't |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
283 # build autoloads yet, so just make sure there's some loaddefs.el file, as |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
284 # it's necessary for generating the binary (because loaddefs.el is an |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
285 # automatically generated file, we don't want to store it in the source |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
286 # repository). |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
287 # |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
288 # Remove compiled Lisp files so that bootstrap-emacs will be built from |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
289 # sources only. |
29657 | 290 |
291 bootstrap-clean: | |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
292 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
|
293 $(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
|
294 else \ |
52588
916aeb134a46
(bootstrap-clean): Fix misplaced `!'.
Dave Love <fx@gnu.org>
parents:
52505
diff
changeset
|
295 if test ! -r $(lisp)/loaddefs.el; then \ |
52505
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
296 cp $(lisp)/loaddefs-boot.el $(lisp)/loaddefs.el; \ |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
297 fi \ |
88edef684d4c
Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
298 fi |
47536
211a66b32323
(bootstrap-clean): Use cd to shorten arg strings.
Richard M. Stallman <rms@gnu.org>
parents:
44174
diff
changeset
|
299 cd $(lisp); rm -f *.elc */*.elc |
29657 | 300 |
301 # Generate/update files for the bootstrap process. | |
302 | |
49382
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
303 bootstrap: update-subdirs autoloads compile |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
304 |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
305 # Generate/update files after the bootstrap process. |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
306 # custom-deps needs `preloaded-file-list'. |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
307 |
8a3c38e8fdae
(bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
48993
diff
changeset
|
308 bootstrap-after: finder-data custom-deps |
29657 | 309 |
29703 | 310 distclean: |
42222
2f835f4a8ef8
(distclean): Remove Makefile in the build directory, not in the source
Eli Zaretskii <eliz@gnu.org>
parents:
42147
diff
changeset
|
311 -rm -f ./Makefile |
29703 | 312 |
52401 | 313 # arch-tag: d4ea703a-b91c-405c-a171-8dde30b163a7 |
29657 | 314 # Makefile ends here. |