annotate lisp/Makefile.in @ 93195:096de5eb1d54

(verilog-auto-output) (verilog-auto-input, verilog-auto-inout, verilog-auto) (verilog-delete-auto): Add optional regular expression to AUTOINPUT/AUTOOUTPUT/AUTOINOUT. (verilog-signals-matching-regexp): New internal function for signal matching.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 25 Mar 2008 15:45:49 +0000
parents 4f4df8fa443f
children 0f802f448fc9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
1 # Maintenance productions for the Lisp directory
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
2 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
3 # 2008 Free Software Foundation, Inc.
36226
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
4
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
5 # This file is part of GNU Emacs.
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
6
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
7 # GNU Emacs is free software; you can redistribute it and/or modify
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
8 # it under the terms of the GNU General Public License as published by
78236
9355f9b7bbff Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 78057
diff changeset
9 # the Free Software Foundation; either version 3, or (at your option)
36226
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
10 # any later version.
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
11
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
12 # GNU Emacs is distributed in the hope that it will be useful,
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
15 # GNU General Public License for more details.
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
16
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
17 # You should have received a copy of the GNU General Public License
c8fb06423da0 Add copyright notice.
Gerd Moellmann <gerd@gnu.org>
parents: 35605
diff changeset
18 # along with GNU Emacs; see the file COPYING. If not, write to
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63338
diff changeset
19 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63338
diff changeset
20 # Boston, MA 02110-1301, USA.
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
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
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
24 lisp=@srcdir@
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
25 VPATH=@srcdir@
29704
ce8197473e44 (srcdir): Define for update-subdirs.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29703
diff changeset
26 srcdir=@srcdir@/..
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
27
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
28 # You can specify a different executable on the make command line,
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
29 # e.g. "make EMACS=../src/emacs ...".
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
30
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
31 EMACS = ../src/emacs
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
32
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
33 # Command line flags for Emacs. This must include --multibyte,
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
34 # otherwise some files will not compile.
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
35
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
36 EMACSOPT = -batch --no-site-file --multibyte
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
37
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
38 # Extra flags to pass to the byte compiler
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
39 BYTE_COMPILE_EXTRA_FLAGS =
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
40 # For example to not display the undefined function warnings you can use this:
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
41 # BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))'
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
42 # The example above is just for developers, it should not be used by default.
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
43
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
44 SOURCES = *.el COPYING Makefile
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
45 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
46 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
47 ETAGS = ../lib-src/etags
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
48
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
49 # Automatically generated autoload files, apart from lisp/loaddefs.el.
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
50 LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
51 $(lisp)/calendar/diary-loaddefs.el $(lisp)/calendar/hol-loaddefs.el
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
52
54244
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
53 # Elisp files auto-generated.
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
54 AUTOGENEL = loaddefs.el \
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
55 $(LOADDEFS) \
54244
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
56 cus-load.el \
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
57 finder-inf.el \
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
58 subdirs.el \
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
59 eshell/esh-groups.el \
91793
ff93c8b2a389 (AUTOGENEL): Remove charprop.el and uni-*.el.
Kenichi Handa <handa@m17n.org>
parents: 91327
diff changeset
60 mh-e/mh-loaddefs.el
54244
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
61
36918
b485ed237672 (COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents: 36226
diff changeset
62 # 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
63 # 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
64 # 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
65 # 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
66 # bootstrapping.
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
67
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
68 COMPILE_FIRST = \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
69 $(lisp)/emacs-lisp/byte-opt.el \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
70 $(lisp)/emacs-lisp/bytecomp.el \
36918
b485ed237672 (COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents: 36226
diff changeset
71 $(lisp)/subr.el \
b485ed237672 (COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents: 36226
diff changeset
72 $(lisp)/progmodes/cc-mode.el \
b485ed237672 (COMPILE_FIRST): Add cc-mode.el
Gerd Moellmann <gerd@gnu.org>
parents: 36226
diff changeset
73 $(lisp)/progmodes/cc-vars.el
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
74
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
75 # The actual Emacs command run in the targets below.
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
76
88602
1ed369a4eb81 Cancel the 2002-05-17 change of mine.
Kenichi Handa <handa@m17n.org>
parents: 88568
diff changeset
77 emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT)
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
78
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
79 # Common command to find subdirectories
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
80
54632
e2815226989d (setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents: 54248
diff changeset
81 setwins=subdirs=`(cd $$wd; find . -type d -print)`; \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
82 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
83 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
84 *) wins="$$wins $$wd/$$file" ;; \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
85 esac; \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
86 done
38819
87937c18338f (finder_setwins): Renamed from nonobsolete_setwins.
Gerd Moellmann <gerd@gnu.org>
parents: 38796
diff changeset
87
73773
a7589067f2a4 (autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents: 72152
diff changeset
88 # Find all subdirectories except `obsolete'.
a7589067f2a4 (autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents: 72152
diff changeset
89
54632
e2815226989d (setwins, setwins_almost): Change directory to $wd
Kenichi Handa <handa@m17n.org>
parents: 54248
diff changeset
90 setwins_almost=subdirs=`(cd $$wd; find . -type d -print)`; \
37275
9a3f00ed6c43 (nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents: 36918
diff changeset
91 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
92 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
93 *) wins="$$wins $$wd/$$file" ;; \
37275
9a3f00ed6c43 (nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents: 36918
diff changeset
94 esac; \
9a3f00ed6c43 (nonobsolete_setwins): New macro.
Gerd Moellmann <gerd@gnu.org>
parents: 36918
diff changeset
95 done
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
96
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
97 doit:
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
98
48993
b23fb6dc0915 Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents: 48471
diff changeset
99 $(lisp)/cus-load.el:
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
100 touch $@
79693
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
101 # Note that custom-deps and finder-data depend on autoloads rather
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
102 # than on loaddefs.el, so that autoloads does not run in parallel with
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
103 # them under "make -j", because that could delete loaddefs.el from
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
104 # under their feet.
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
105 custom-deps: $(lisp)/subdirs.el autoloads $(lisp)/cus-load.el doit
48471
ea89037b6852 (setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48006
diff changeset
106 wd=$(lisp); $(setwins_almost); \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
107 echo Directories: $$wins; \
91828
d7068e95d3d0 (custom-deps, finder-data, autoloads, recompile):
Glenn Morris <rgm@gnu.org>
parents: 91793
diff changeset
108 $(emacs) -l cus-dep --eval '(setq generated-custom-dependencies-file "$(lisp)/cus-load.el")' -f custom-make-dependencies $$wins
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
109
79693
8321e03ff91d (custom-deps, finder-data): Depend on autoloads instead of loaddefs.el.
Eli Zaretskii <eliz@gnu.org>
parents: 78596
diff changeset
110 finder-data: $(lisp)/subdirs.el autoloads doit
48471
ea89037b6852 (setwins_almost): Renamed from finder_setwins.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48006
diff changeset
111 wd=$(lisp); $(setwins_almost); \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
112 echo Directories: $$wins; \
91828
d7068e95d3d0 (custom-deps, finder-data, autoloads, recompile):
Glenn Morris <rgm@gnu.org>
parents: 91793
diff changeset
113 $(emacs) -l finder --eval '(setq generated-finder-keywords-file "$(lisp)/finder-inf.el")' -f finder-compile-keywords-make-dist $$wins
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
114
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
115 autoloads: $(lisp)/subdirs.el $(LOADDEFS) doit
73773
a7589067f2a4 (autoloads): Don't include `obsolete'.
Richard M. Stallman <rms@gnu.org>
parents: 72152
diff changeset
116 wd=$(lisp); $(setwins_almost); \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
117 echo Directories: $$wins; \
91828
d7068e95d3d0 (custom-deps, finder-data, autoloads, recompile):
Glenn Morris <rgm@gnu.org>
parents: 91793
diff changeset
118 $(emacs) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
119
48993
b23fb6dc0915 Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents: 48471
diff changeset
120 $(lisp)/subdirs.el:
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
121 $(MAKE) $(MFLAGS) update-subdirs
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
122 update-subdirs: doit
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
123 wd=$(lisp); $(setwins); \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
124 for file in $$wins; do \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
125 $(srcdir)/update-subdirs $$file; \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
126 done;
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
127
68058
484a75387b1b (updates): Remove mh-autoloads dependency, since it probably has
Bill Wohler <wohler@newt.com>
parents: 68057
diff changeset
128 updates: update-subdirs autoloads finder-data custom-deps
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
129
67952
cd2a2de85cae (cvs-update): New target.
Eli Zaretskii <eliz@gnu.org>
parents: 67242
diff changeset
130 # This is useful after "cvs up".
cd2a2de85cae (cvs-update): New target.
Eli Zaretskii <eliz@gnu.org>
parents: 67242
diff changeset
131 cvs-update: recompile autoloads finder-data custom-deps
cd2a2de85cae (cvs-update): New target.
Eli Zaretskii <eliz@gnu.org>
parents: 67242
diff changeset
132
32884
f677903fb663 (update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents: 31379
diff changeset
133 # Update the AUTHORS file.
f677903fb663 (update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents: 31379
diff changeset
134
f677903fb663 (update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents: 31379
diff changeset
135 update-authors:
84415
672bd8be7747 (update-authors): Add etc/ to AUTHORS.
Juri Linkov <juri@jurta.org>
parents: 82461
diff changeset
136 $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
32884
f677903fb663 (update-authors): New target for maintenance
Gerd Moellmann <gerd@gnu.org>
parents: 31379
diff changeset
137
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
138 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
139 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
140 ${ETAGS} $$els
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
141
30095
96039cc24acf (TAGS-LISP): Don't use `$(lispsource)'.
Gerd Moellmann <gerd@gnu.org>
parents: 30084
diff changeset
142 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
143 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
144 ${ETAGS} -o TAGS-LISP $$els
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
145
33667
646b893652e6 (.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents: 33626
diff changeset
146 .SUFFIXES: .elc .el
646b893652e6 (.SUFFIXES): Add .SUFFIXES.
Gerd Moellmann <gerd@gnu.org>
parents: 33626
diff changeset
147
48993
b23fb6dc0915 Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents: 48471
diff changeset
148 .el.elc: $(lisp)/subdirs.el
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
149 -$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $<
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
150
61526
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
151 # Compile all Lisp files, but don't recompile those that are up to
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
152 # date. Some files don't actually get compiled because they set the
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
153 # local variable no-byte-compile.
43026
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
154
61526
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
155 # All .elc files are made writable before compilation in case we
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
156 # checked out read-only (CVS option -r). Files MUST be compiled one by
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
157 # one. If we compile several files in a row we can't make sure that
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
158 # the compilation environment is clean. We also set the load-path of
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
159 # the Emacs used for compilation to the current directory and its
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
160 # subdirectories, to make sure require's and load's in the files being
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
161 # compiled find the right files.
44106
748924636cc4 (finder-inf.el): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44080
diff changeset
162
68729
fbaf1c0fb4da (compile): Append "|| true" to the end of the `find' command, like
Eli Zaretskii <eliz@gnu.org>
parents: 68651
diff changeset
163 # `|| 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
164 # by an error.
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
165 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
166 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
43026
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
167 wd=$(lisp); $(setwins); \
61526
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
168 els=`echo $$wins | tr ' \011' '\012\012' | \
43026
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
169 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
170 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
171 if test -f $$el; \
f41b79ef76f5 (compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents: 44106
diff changeset
172 then \
f41b79ef76f5 (compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents: 44106
diff changeset
173 echo Compiling $$el; \
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
174 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -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
175 fi \
43026
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
176 done
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
177
61526
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
178 # Compile all Lisp files. This is like `compile' but compiles files
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
179 # unconditionally. Some files don't actually get compiled because they
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
180 # set the local variable no-byte-compile.
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
181
68057
f6843c5eadd5 (compile-always): Add mh-autoloads dependency.
Bill Wohler <wohler@newt.com>
parents: 67952
diff changeset
182 compile-always: $(lisp)/subdirs.el mh-autoloads doit
48006
9fb2295753ce Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 48005
diff changeset
183 # `|| true' prevents old Bash versions from getting confused
9fb2295753ce Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 48005
diff changeset
184 # by an error.
48005
93d886a02ac0 (compile-always): Avoid error in old Bash versions.
Richard M. Stallman <rms@gnu.org>
parents: 47536
diff changeset
185 find $(lisp) -name "*.elc" -print | xargs chmod +w >/dev/null 2>&1 || true; \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
186 wd=$(lisp); $(setwins); \
61526
2864a2154c8d (DONTCOMPILE): Remove list.
Lute Kamstra <lute@gnu.org>
parents: 58345
diff changeset
187 els=`echo $$wins | tr ' \011' '\012\012' | \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
188 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
189 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
190 if test -f $$el; \
f41b79ef76f5 (compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents: 44106
diff changeset
191 then \
f41b79ef76f5 (compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents: 44106
diff changeset
192 echo Compiling $$el; \
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
193 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
44174
f41b79ef76f5 (compile, compile-always): Don't try to compile
Eli Zaretskii <eliz@gnu.org>
parents: 44106
diff changeset
194 fi \
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
195 done
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
196
49597
e88404e8f2cf Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 49382
diff changeset
197 compile-calc:
48993
b23fb6dc0915 Generate cus-load.el and finder-inf.el in the
Andreas Schwab <schwab@suse.de>
parents: 48471
diff changeset
198 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
199 echo Compiling $$el; \
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
200 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $$el || exit 1; \
41408
eb28aac7bdd1 (finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents: 40874
diff changeset
201 done
eb28aac7bdd1 (finder_setwins, setwins): Include Calc again.
Colin Walters <walters@gnu.org>
parents: 40874
diff changeset
202
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
203 # Backup compiled Lisp files in elc.tar.gz. If that file already
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
204 # exists, make a backup of it.
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
205
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
206 backup-compiled-files:
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
207 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
208 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
209
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
210 # Compile Lisp files, but save old compiled files first.
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
211
43026
7c4834964c35 (compile): New target.
Richard M. Stallman <rms@gnu.org>
parents: 42946
diff changeset
212 compile-after-backup: backup-compiled-files compile-always
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
213
72152
5f2636a9b8eb (recompile): Update comment to reflect change
Nick Roberts <nickrob@snap.net.nz>
parents: 71952
diff changeset
214 # 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
215 # new ones.
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
216
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
217 recompile: doit mh-autoloads $(lisp)/progmodes/cc-mode.elc
91828
d7068e95d3d0 (custom-deps, finder-data, autoloads, recompile):
Glenn Morris <rgm@gnu.org>
parents: 91793
diff changeset
218 $(emacs) --eval "(batch-byte-recompile-directory 0)" $(lisp)
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
219
53892
f3098a6fd4f0 Added extra dependencies in the recompile target needed to cope with
Martin Stjernholm <mast@lysator.liu.se>
parents: 53015
diff changeset
220 # 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
221 # 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
222 # 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
223 $(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
224 $(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
225 $(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
226 $(lisp)/progmodes/cc-defs.el
85765
f1a78e8d37f0 * textmodes/flyspell.el (message-signature-separator):
Dan Nicolaescu <dann@ics.uci.edu>
parents: 84415
diff changeset
227 $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -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
228
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
229 # Update MH-E internal autoloads. These are not to be confused with
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
230 # the autoloads for the MH-E entry points, which are already in loaddefs.el.
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
231 mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
232 $(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
233 ## The only non-standard part of this is the provide.
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
234 ## All these echos can be removed if mh-e.el changes to use
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
235 ## (load "mh-loaddefs" nil 'quiet).
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
236 echo ";;; mh-loaddefs.el --- automatically extracted autoloads" > $@
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
237 echo ";;" >> $@
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
238 echo ";;; Code:" >> $@
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
239 echo " " >> $@
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
240 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
241 echo ";; Local Variables:" >> $@
f03f8ff82435 (mh-loaddefs.el, loaddefs.el): Better follow the commenting conventions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65967
diff changeset
242 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
243 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
244 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
245 echo ";; End:" >> $@
65887
135cf95723ca * mh-e/mh-loaddefs.el: Removed. Now generated automatically.
Bill Wohler <wohler@newt.com>
parents: 65010
diff changeset
246 echo ";;; mh-loaddefs.el ends here" >> $@
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
247 $(emacs) -l autoload \
71952
5021520a58bd (mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68729
diff changeset
248 --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
249 --eval "(setq generated-autoload-file \"$@\")" \
71952
5021520a58bd (mh-loaddefs.el): Finish setting up the default empty
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 68729
diff changeset
250 --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
251 -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
252
92846
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
253 $(lisp)/calendar/cal-loaddefs.el:
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
254 $(emacs) -l autoload \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
255 --eval "(setq generate-autoload-cookie \";;;###cal-autoload\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
256 --eval "(setq generated-autoload-file \"$@\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
257 --eval "(setq make-backup-files nil)" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
258 -f batch-update-autoloads $(lisp)/calendar
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
259
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
260 $(lisp)/calendar/diary-loaddefs.el:
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
261 $(emacs) -l autoload \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
262 --eval "(setq generate-autoload-cookie \";;;###diary-autoload\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
263 --eval "(setq generated-autoload-file \"$@\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
264 --eval "(setq make-backup-files nil)" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
265 -f batch-update-autoloads $(lisp)/calendar
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
266
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
267 $(lisp)/calendar/hol-loaddefs.el:
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
268 $(emacs) -l autoload \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
269 --eval "(setq generate-autoload-cookie \";;;###holiday-autoload\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
270 --eval "(setq generated-autoload-file \"$@\")" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
271 --eval "(setq make-backup-files nil)" \
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
272 -f batch-update-autoloads $(lisp)/calendar
4f4df8fa443f (LOADDEFS): New variable.
Glenn Morris <rgm@gnu.org>
parents: 92711
diff changeset
273
52505
88edef684d4c Revision: miles@gnu.org--gnu-2003/emacs--cvs-trunk--0--patch-44
Miles Bader <miles@gnu.org>
parents: 52401
diff changeset
274 # 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
275 #
63338
9f31ece48b49 (bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents: 61526
diff changeset
276 # 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
277 # 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
278 # 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
279 # 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
280 # 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
281 # 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
282 # 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
283 # 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
284 # 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
285 # file, we don't want to store it in the source repository).
81710
941c1cfacdc7 (bootstrap-prepare): Make $(lisp)/ps-print.el
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 81704
diff changeset
286 #
941c1cfacdc7 (bootstrap-prepare): Make $(lisp)/ps-print.el
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 81704
diff changeset
287 # The chmod +w is to handle env var CVSREAD=1. Files named
941c1cfacdc7 (bootstrap-prepare): Make $(lisp)/ps-print.el
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 81704
diff changeset
288 # are identified by being the value of `generated-autoload-file'.
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
289
54244
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
290 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
291 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
292 $(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
293 else \
63338
9f31ece48b49 (bootstrap-prepare): Don't use an old loaddefs.el.
Lute Kamstra <lute@gnu.org>
parents: 61526
diff changeset
294 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
295 fi
81710
941c1cfacdc7 (bootstrap-prepare): Make $(lisp)/ps-print.el
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 81704
diff changeset
296 chmod +w $(lisp)/loaddefs.el \
941c1cfacdc7 (bootstrap-prepare): Make $(lisp)/ps-print.el
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 81704
diff changeset
297 $(lisp)/ps-print.el \
92711
ecb1c0e60608 (bootstrap-prepare): Don't chmod cal-loaddefs.el.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 92699
diff changeset
298 $(lisp)/emacs-lisp/cl-loaddefs.el
54244
9df8cecf70d2 (AUTOGENEL): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 53972
diff changeset
299
86563
d404da216302 (maintainer-clean): Depend on bootstrap-clean to delete .elc files.
Glenn Morris <rgm@gnu.org>
parents: 86179
diff changeset
300 maintainer-clean: distclean bootstrap-clean
d404da216302 (maintainer-clean): Depend on bootstrap-clean to delete .elc files.
Glenn Morris <rgm@gnu.org>
parents: 86179
diff changeset
301 cd $(lisp); rm -f $(AUTOGENEL)
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
302
86563
d404da216302 (maintainer-clean): Depend on bootstrap-clean to delete .elc files.
Glenn Morris <rgm@gnu.org>
parents: 86179
diff changeset
303 ## NB note that this rules assume only one level of subdirs below lisp/.
d404da216302 (maintainer-clean): Depend on bootstrap-clean to delete .elc files.
Glenn Morris <rgm@gnu.org>
parents: 86179
diff changeset
304 ## If nested subdirs are added, it's probably time to switch to:
d404da216302 (maintainer-clean): Depend on bootstrap-clean to delete .elc files.
Glenn Morris <rgm@gnu.org>
parents: 86179
diff changeset
305 ## find $(lisp) -name "*.elc" -exec rm -f '{}' ';'
58020
95969b0d9f39 (bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents: 56026
diff changeset
306 bootstrap-clean:
95969b0d9f39 (bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents: 56026
diff changeset
307 cd $(lisp); rm -f *.elc */*.elc
95969b0d9f39 (bootstrap-clean): New target for 'make bootstrap'.
Kim F. Storm <storm@cua.dk>
parents: 56026
diff changeset
308
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
309 # Generate/update files for the bootstrap process.
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
310
68057
f6843c5eadd5 (compile-always): Add mh-autoloads dependency.
Bill Wohler <wohler@newt.com>
parents: 67952
diff changeset
311 bootstrap: update-subdirs autoloads compile
49382
8a3c38e8fdae (bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48993
diff changeset
312
8a3c38e8fdae (bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48993
diff changeset
313 # Generate/update files after the bootstrap process.
8a3c38e8fdae (bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48993
diff changeset
314 # custom-deps needs `preloaded-file-list'.
8a3c38e8fdae (bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48993
diff changeset
315
8a3c38e8fdae (bootstrap-after): New target.
Markus Rost <rost@math.uni-bielefeld.de>
parents: 48993
diff changeset
316 bootstrap-after: finder-data custom-deps
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
317
29703
170ce838593c (distclean): New target.
Gerd Moellmann <gerd@gnu.org>
parents: 29679
diff changeset
318 distclean:
42222
2f835f4a8ef8 (distclean): Remove Makefile in the build directory, not in the source
Eli Zaretskii <eliz@gnu.org>
parents: 42147
diff changeset
319 -rm -f ./Makefile
29703
170ce838593c (distclean): New target.
Gerd Moellmann <gerd@gnu.org>
parents: 29679
diff changeset
320
86179
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
321 .PHONY: check-declare
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
322
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
323 check-declare:
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
324 $(emacs) -l $(lisp)/emacs-lisp/check-declare \
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
325 --eval '(check-declare-directory "$(lisp)")'
2b215e340de6 (check-declare): New target.
Glenn Morris <rgm@gnu.org>
parents: 85765
diff changeset
326
29657
cdef08609770 *** empty log message ***
Gerd Moellmann <gerd@gnu.org>
parents:
diff changeset
327 # Makefile ends here.