(DONTCOMPILE): Add various term files.
[bpt/emacs.git] / lisp / Makefile.in
1 #
2 # Maintenance productions for the Lisp directory
3 #
4
5 SHELL = /bin/sh
6
7 lisp=@srcdir@
8 VPATH=@srcdir@
9 srcdir=@srcdir@/..
10
11 # You can specify a different executable on the make command line,
12 # e.g. "make EMACS=../src/emacs ...".
13
14 EMACS = ../src/emacs
15
16 # Command line flags for Emacs. This must include --multibyte,
17 # otherwise some files will not compile.
18
19 EMACSOPT = -batch --no-site-file --multibyte
20
21 SOURCES = *.el COPYING Makefile
22 lisptagsfiles1 = $(lisp)/[a-zA-Z]*.el
23 lisptagsfiles2 = $(lisp)/[a-zA-Z]*/[a-zA-Z]*.el
24 ETAGS = ../lib-src/etags
25
26 # Files which should not be compiled. If you change the name `DONTCOMPILE'
27 # to something different, you'll have to change make-dist as well.
28 #
29 # - emacs-lisp/cl-specs.el: only contains `def-edebug-spec's so there's
30 # no point compiling it, although it doesn't hurt.
31
32 DONTCOMPILE = \
33 $(lisp)/cus-load.el \
34 $(lisp)/cus-start.el \
35 $(lisp)/emacs-lisp/cl-specs.el \
36 $(lisp)/eshell/esh-maint.el \
37 $(lisp)/eshell/esh-groups.el \
38 $(lisp)/finder-inf.el \
39 $(lisp)/forms-d2.el \
40 $(lisp)/forms-pass.el \
41 $(lisp)/generic-x.el \
42 $(lisp)/international/latin-1.el \
43 $(lisp)/international/latin-2.el \
44 $(lisp)/international/latin-3.el \
45 $(lisp)/international/latin-4.el \
46 $(lisp)/international/latin-5.el \
47 $(lisp)/international/latin-8.el \
48 $(lisp)/international/latin-9.el \
49 $(lisp)/international/mule-conf.el \
50 $(lisp)/loaddefs.el \
51 $(lisp)/loadup.el \
52 $(lisp)/mail/blessmail.el \
53 $(lisp)/mail/sc.el \
54 $(lisp)/patcomp.el \
55 $(lisp)/paths.el \
56 $(lisp)/play/bruce.el \
57 $(lisp)/subdirs.el \
58 $(lisp)/term/internal.el \
59 $(lisp)/term/AT386.el \
60 $(lisp)/term/apollo.el \
61 $(lisp)/term/bobcat.el \
62 $(lisp)/term/iris-ansi.el \
63 $(lisp)/term/keyswap.el \
64 $(lisp)/term/linux.el \
65 $(lisp)/term/lk201.el \
66 $(lisp)/term/news.el \
67 $(lisp)/term/vt102.el \
68 $(lisp)/term/vt125.el \
69 $(lisp)/term/vt200.el \
70 $(lisp)/term/vt201.el \
71 $(lisp)/term/vt220.el \
72 $(lisp)/term/vt240.el \
73 $(lisp)/term/vt300.el \
74 $(lisp)/term/vt320.el \
75 $(lisp)/term/vt400.el \
76 $(lisp)/term/vt420.el \
77 $(lisp)/term/wyse50.el \
78 $(lisp)/term/xterm.el \
79 $(lisp)/version.el
80
81 # Files to compile before others during a bootstrap. This is done
82 # to speed up the bootstrap process.
83
84 COMPILE_FIRST = \
85 $(lisp)/emacs-lisp/byte-opt.el \
86 $(lisp)/emacs-lisp/bytecomp.el \
87 $(lisp)/subr.el
88
89 # The actual Emacs command run in the targets below.
90
91 emacs = EMACSLOADPATH=$(lisp) $(EMACS) $(EMACSOPT)
92
93 # Common command to find subdirectories
94
95 setwins=subdirs=`find $$wd -type d -print`; \
96 for file in $$subdirs; do \
97 case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
98 *) wins="$$wins $$file" ;; \
99 esac; \
100 done
101
102 doit:
103
104 cus-load.el:
105 touch $@
106 custom-deps: cus-load.el doit
107 wd=$(lisp); $(setwins); \
108 echo Directories: $$wins; \
109 $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins
110
111 finder-inf.el:
112 echo "(provide 'finder-inf)" >> $@
113 finder-data: finder-inf.el doit
114 wd=$(lisp); $(setwins); \
115 echo Directories: $$wins; \
116 $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins
117
118 loaddefs.el:
119 echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@
120 echo ";;" >> $@; echo ";;; Code:" >> $@
121 echo "\f" >> $@
122 echo ";;; Local Variables:" >> $@
123 echo ";;; version-control: never" >> $@
124 echo ";;; no-byte-compile: t" >> $@
125 echo ";;; no-update-autoloads: t" >> $@
126 echo ";;; End:" >> $@
127 echo ";;; loaddefs.el ends here" >> $@
128 autoloads: loaddefs.el doit
129 wd=$(lisp); $(setwins); \
130 echo Directories: $$wins; \
131 $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins
132
133 subdirs.el:
134 $(MAKE) $(MFLAGS) update-subdirs
135 update-subdirs: doit
136 wd=$(lisp); $(setwins); \
137 for file in $$wins; do \
138 $(srcdir)/update-subdirs $$file; \
139 done;
140
141 updates: update-subdirs autoloads finder-data custom-deps
142
143 # Update the AUTHORS file.
144
145 update-authors:
146 $(emacs) -f batch-update-authors $(srcdir)/AUTHORS $(srcdir)
147
148 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
149 ${ETAGS} $(lisptagsfiles1) $(lisptagsfiles2)
150
151 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
152 ${ETAGS} -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2)
153
154 .SUFFIXES: .elc .el
155
156 .el.elc: subdirs.el
157 -$(emacs) -f batch-byte-compile $<
158
159 $(DONTCOMPILE:.el=.elc):
160 -rm -f $@
161
162 # Compile all Lisp files, except those from DONTCOMPILE. This
163 # compiles files unconditionally. All .elc files are made writable
164 # before compilation in case we checked out read-only (CVS option -r).
165 # Files MUST be compiled one by one. If we compile several files in a
166 # row we can't make sure that the compilation environment is clean.
167 # We also set the load-path of the Emacs used for compilation to the
168 # current directory and its subdirectories, to make sure require's and
169 # load's in the files being compiled find the right files.
170
171 compile-files: subdirs.el doit
172 find $(lisp) -name "*.elc" -print | xargs chmod +w; \
173 wd=$(lisp); $(setwins); \
174 elpat=`echo $$wins | tr ' ' '\012\012' | \
175 sed -e 's|\(.\)$$|\1/|' -e 's|^\./||' -e 's|$$|*.el|'`; \
176 els=`echo $$elpat $(DONTCOMPILE) $(COMPILE_FIRST) | \
177 tr ' ' '\012\012' | sort | uniq -u`; \
178 for el in $(COMPILE_FIRST) $$els; do \
179 echo Compiling $$el; \
180 $(emacs) -f batch-byte-compile $$el || exit 1; \
181 done
182
183 # Backup compiled Lisp files in elc.tar.gz. If that file already
184 # exists, make a backup of it.
185
186 backup-compiled-files:
187 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
188 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
189
190 # Compile Lisp files, but save old compiled files first.
191
192 compile: backup-compiled-files compile-files
193
194 # Recompile all Lisp files which are newer than their .elc files.
195 # Note that this doesn't create .elc files. It only recompiles if an
196 # .elc is present.
197
198 recompile: doit
199 $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp)
200
201 # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el,
202 # because it's not sure it's up-to-date, and if it's not, that might
203 # lead to errors during the bootstrap because something fails to
204 # autoload as expected. Remove compiled Lisp files so that
205 # bootstrap-emacs will be built from sources only.
206
207 bootstrap-clean:
208 if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
209 -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
210
211 # Generate/update files for the bootstrap process.
212
213 bootstrap: autoloads compile-files custom-deps
214
215 distclean:
216 -rm -f $(lisp)/Makefile
217
218 # Makefile ends here.