Update some function declarations
[bpt/emacs.git] / lisp / makefile.w32-in
... / ...
CommitLineData
1# -*- Makefile -*- for GNU Emacs on the Microsoft Windows API.
2# Copyright (C) 2000-2012 Free Software Foundation, Inc.
3
4# This file is part of GNU Emacs.
5
6# GNU Emacs is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
18
19ALL =
20
21all: $(ALL)
22
23SQUOTE='
24# '
25
26lisp = $(CURDIR)
27srcdir = $(CURDIR)/..
28
29# You can specify a different executable on the make command line,
30# e.g. "make EMACS=../bin/emacs ...".
31
32EMACS = ../src/$(BLD)/emacs.exe
33
34# Command line flags for Emacs.
35
36EMACSOPT = -batch --no-site-file --no-site-lisp
37
38# Extra flags to pass to the byte compiler
39BYTE_COMPILE_EXTRA_FLAGS =
40# For example to not display the undefined function warnings you can use this:
41# BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))'
42# The example above is just for developers, it should not be used by default.
43
44# Set EMACSLOADPATH correctly (already defined in environment).
45EMACSLOADPATH=$(lisp)
46
47# Use C locale
48LC_ALL = C
49
50lisptagsfiles1 = $(lisp)/*.el
51lisptagsfiles2 = $(lisp)/*/*.el
52lisptagsfiles3 = $(lisp)/*/*/*.el
53lisptagsfiles4 = $(lisp)/*/*/*/*.el
54ETAGS = "../lib-src/$(BLD)/etags.exe"
55## $(DEST) is overridden by ../src/makefile.w32-in.
56DEST=$(lisp)
57
58# Automatically generated autoload files, apart from lisp/loaddefs.el.
59LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \
60 $(lisp)/calendar/diary-loaddefs.el $(lisp)/calendar/hol-loaddefs.el \
61 $(lisp)/mh-e/mh-loaddefs.el $(lisp)/net/tramp-loaddefs.el
62
63AUTOGENEL = $(lisp)/loaddefs.el $(LOADDEFS) $(lisp)/cus-load.el \
64 $(lisp)/finder-inf.el $(lisp)/subdirs.el $(lisp)/eshell/esh-groups.el \
65 $(lisp)/calc/calc-loaddefs.el $(lisp)/nxml/subdirs.el \
66 $(lisp)/cedet/semantic/loaddefs.el $(lisp)/cedet/ede/loaddefs.el \
67 $(lisp)/cedet/srecode/loaddefs.el
68
69# Value of max-lisp-eval-depth when compiling initially.
70# During bootstrapping the byte-compiler is run interpreted when compiling
71# itself, and uses more stack than usual.
72#
73BIG_STACK_DEPTH = 2200
74BIG_STACK_OPTS = --eval "(setq max-lisp-eval-depth $(BIG_STACK_DEPTH))"
75
76BYTE_COMPILE_FLAGS = $(BIG_STACK_OPTS) $(BYTE_COMPILE_EXTRA_FLAGS)
77
78# Files to compile before others during a bootstrap. This is done to
79# speed up the bootstrap process.
80
81COMPILE_FIRST = \
82 $(lisp)/emacs-lisp/macroexp.el \
83 $(lisp)/emacs-lisp/cconv.el \
84 $(lisp)/emacs-lisp/byte-opt.el \
85 $(lisp)/emacs-lisp/bytecomp.el \
86 $(lisp)/emacs-lisp/autoload.el
87
88# The actual Emacs command run in the targets below.
89# The quotes around $(EMACS) are here because the user could type
90# it with forward slashes and without quotes, which will fail if
91# the shell is cmd.exe.
92
93emacs = "$(EMACS)" $(EMACSOPT)
94
95# Have to define the list of subdirs manually when not using sh.
96WINS_CEDET=\
97 cedet \
98 cedet/ede \
99 cedet/semantic \
100 cedet/srecode \
101 cedet/semantic/analyze \
102 cedet/semantic/bovine \
103 cedet/semantic/decorate \
104 cedet/semantic/symref \
105 cedet/semantic/wisent
106
107WINS_BASIC=\
108 calc \
109 calendar \
110 emacs-lisp \
111 emulation \
112 erc \
113 eshell \
114 gnus \
115 international \
116 language \
117 mail \
118 mh-e \
119 net \
120 nxml \
121 org \
122 play \
123 progmodes \
124 textmodes \
125 url \
126 vc
127
128# Directories with lisp files to compile, and to extract data from
129# (customs, autoloads, etc.)
130WINS_UPDATES=$(WINS_BASIC) \
131 $(WINS_CEDET)
132
133# Directories to add to subdirs.el
134WINS_SUBDIR=$(WINS_BASIC) \
135 obsolete
136
137# All directories
138WINS= $(WINS_UPDATES) \
139 term \
140 obsolete
141
142doit:
143
144cus-load.el-SH:
145 echo ";;; cus-load.el --- automatically extracted custom dependencies" > $@
146 echo ";;" >> $@; echo ";;; Code:" >> $@
147 echo "\f" >> $@
148 echo ";; Local Variables:" >> $@
149 echo ";; version-control: never" >> $@
150 echo ";; no-byte-compile: t" >> $@
151 echo ";; no-update-autoloads: t" >> $@
152 echo ";; End:" >> $@
153
154cus-load.el-CMD:
155 echo ;;; cus-load.el --- automatically extracted custom dependencies> $@
156 echo ;;>> $@
157 echo ;;; Code:>> $@
158 echo.\f>> $@
159 echo ;; Local Variables:>> $@
160 echo ;; version-control: never>> $@
161 echo ;; no-byte-compile: t>> $@
162 echo ;; no-update-autoloads: t>> $@
163 echo ;; End:>> $@
164
165$(lisp)/cus-load.el:
166 $(MAKE) $(MFLAGS) cus-load.el-$(SHELLTYPE)
167 mv cus-load.el-$(SHELLTYPE) $@
168
169# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
170# this can break with GNU Make 3.81 and later if sh.exe is used.
171custom-deps: $(lisp)/cus-load.el $(lisp)/loaddefs.el $(lisp)/subdirs.el doit
172 @echo Directories: $(WINS_UPDATES)
173 -$(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hook nil)$(ARGQUOTE) \
174 -f custom-make-dependencies $(lisp) $(WINS_UPDATES)
175
176finder-data: $(lisp)/loaddefs.el $(lisp)/subdirs.el doit
177 @echo Directories: $(WINS_UPDATES)
178 $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS_UPDATES)
179
180$(lisp)/loaddefs.el:
181 $(MAKE) $(MFLAGS) loaddefs.el-$(SHELLTYPE)
182 cp loaddefs.el-$(SHELLTYPE) $@
183 rm loaddefs.el-$(SHELLTYPE)
184
185loaddefs.el-SH:
186 echo ";;; loaddefs.el --- automatically extracted autoloads" > $@
187 echo ";;" >> $@; echo ";;; Code:" >> $@
188 echo "\f" >> $@
189 echo ";; Local Variables:" >> $@
190 echo ";; version-control: never" >> $@
191 echo ";; no-byte-compile: t" >> $@
192 echo ";; no-update-autoloads: t" >> $@
193 echo ";; coding: utf-8" >> $@
194 echo ";; End:" >> $@
195 echo ";;; loaddefs.el ends here" >> $@
196
197loaddefs.el-CMD:
198 echo ;;; loaddefs.el --- automatically extracted autoloads> $@
199 echo ;;>> $@
200 echo ;;; Code:>> $@
201 echo.\f>> $@
202 echo ;; Local Variables:>> $@
203 echo ;; version-control: never>> $@
204 echo ;; no-byte-compile: t>> $@
205 echo ;; no-update-autoloads: t>> $@
206 echo ;; coding: utf-8>> $@
207 echo ;; End:>> $@
208 echo ;;; loaddefs.el ends here>> $@
209
210# Use . instead of $(lisp) because $(lisp) is an absolute file name,
211# including a drive letter and any leading directories, so the generated
212# loaddefs.el will mention file names that on other machine reference
213# possibly non-existent directories.
214#
215# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
216# this can break with GNU Make 3.81 and later if sh.exe is used.
217autoloads: $(lisp)/loaddefs.el $(LOADDEFS) doit
218 @echo Directories: . $(WINS_UPDATES)
219 $(emacs) -l autoload \
220 --eval $(ARGQUOTE)(setq find-file-hook nil find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
221 -f w32-batch-update-autoloads "$(lisp)/loaddefs.el" $(MAKE) . $(WINS_UPDATES)
222
223$(lisp)/subdirs.el:
224 $(MAKE) $(MFLAGS) update-subdirs
225
226# Need separate version for sh and native cmd.exe
227update-subdirs: update-subdirs-$(SHELLTYPE)
228
229update-subdirs-CMD: doit
230 echo ;; In load-path, after this directory should come> $(lisp)/subdirs.el
231 echo ;; certain of its subdirectories. Here we specify them.>> $(lisp)/subdirs.el
232 echo (normal-top-level-add-to-load-path $(SQUOTE)(>> $(lisp)/subdirs.el
233 @for %%d in ($(WINS_SUBDIR) cedet) do echo "%%d">> $(lisp)/subdirs.el
234 echo ))>> $(lisp)/subdirs.el
235 echo ;; Local Variables:>> $(lisp)/subdirs.el
236 echo ;; version-control: never>> $(lisp)/subdirs.el
237 echo ;; no-byte-compile: t>> $(lisp)/subdirs.el
238 echo ;; End:>> $(lisp)/subdirs.el
239
240update-subdirs-SH: doit
241 $(srcdir)/build-aux/update-subdirs $(lisp); \
242 for file in $(WINS_SUBDIR); do \
243 $(srcdir)/build-aux/update-subdirs $$file; \
244 done;
245
246updates: $(lisp)/subdirs.el autoloads mh-autoloads finder-data custom-deps
247
248# This is useful after "bzr up".
249bzr-update: recompile autoloads finder-data custom-deps
250
251# For backwards compatibility:
252cvs-update: bzr-update
253
254# Update the AUTHORS file.
255
256update-authors:
257 $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
258
259TAGS: TAGS-$(MAKETYPE)
260
261TAGS-LISP: TAGS-LISP-$(MAKETYPE)
262
263TAGS-nmake:
264 echo This target is not supported with NMake
265 exit -1
266
267TAGS-LISP-nmake:
268 echo This target is not supported with NMake
269 exit -1
270
271TAGS-gmake: TAGS-$(SHELLTYPE)
272
273TAGS-LISP-gmake: TAGS-LISP-$(SHELLTYPE)
274
275TAGS-SH: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4)
276 - $(DEL) TAGS
277 for dir in . $(WINS_UPDATES); do \
278 $(ETAGS) -a $(lisp)/$$dir/*.el; \
279 done
280
281TAGS-LISP-SH: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4)
282 - $(DEL) $(DEST)/TAGS-LISP
283 for dir in . $(WINS_UPDATES); do \
284 $(ETAGS) -a -o $(DEST)/TAGS-LISP $(lisp)/$$dir/*.el; \
285 done
286
287TAGS-CMD: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4)
288 - $(DEL) TAGS
289 for %%d in (. $(WINS_UPDATES)) do $(ETAGS) -a $(lisp)/%%d/*.el
290
291TAGS-LISP-CMD: $(lisptagsfiles1) $(lisptagsfiles2) $(lisptagsfiles3) $(lisptagsfiles4)
292 - $(DEL) $(DEST)/TAGS-LISP
293 for %%d in (. $(WINS_UPDATES)) do \
294 $(ETAGS) -a -o $(DEST)/TAGS-LISP $(lisp)/%%d/*.el
295
296.SUFFIXES: .elc .el
297
298.el.elc:
299 -$(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $<
300
301# Compile all Lisp files, but don't recompile those that are up to
302# date. Some files don't actually get compiled because they set the
303# local variable no-byte-compile.
304
305# All .elc files are made writable before compilation in case we
306# checked out read-only (CVS option -r). Files MUST be compiled one by
307# one. If we compile several files in a row we can't make sure that
308# the compilation environment is clean. We also set the load-path of
309# the Emacs used for compilation to the current directory and its
310# subdirectories, to make sure require's and load's in the files being
311# compiled find the right files.
312
313# Need separate version for sh and native cmd.exe
314compile: $(lisp)/subdirs.el compile-$(SHELLTYPE) doit
315
316compile-CMD: autoloads
317# -for %%f in ($(lisp) $(WINS)) do for %%g in (%%f\*.elc) do @attrib -r %%g
318 for %%f in ($(COMPILE_FIRST)) do \
319 $(emacs) -l loaddefs $(BYTE_COMPILE_FLAGS) -f batch-byte-compile-if-not-done %%f
320 for %%f in (. $(WINS)) do for %%g in (%%f/*.el) do \
321 $(emacs) -l loaddefs $(BYTE_COMPILE_FLAGS) -f batch-byte-compile-if-not-done %%f/%%g
322
323compile-SH: autoloads
324# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
325 for el in $(COMPILE_FIRST); do \
326 echo Compiling $$el; \
327 $(emacs) -l loaddefs $(BYTE_COMPILE_FLAGS) -f batch-byte-compile-if-not-done $$el; \
328 done
329 for dir in $(lisp) $(WINS); do \
330 for el in $$dir/*.el; do \
331 if test -f $$el; \
332 then \
333 echo Compiling $$el; \
334 $(emacs) -l loaddefs $(BYTE_COMPILE_FLAGS) -f batch-byte-compile-if-not-done $$el; \
335 fi \
336 done; \
337 done
338
339# Compile all Lisp files. This is like `compile' but compiles files
340# unconditionally. Some files don't actually get compiled because they
341# set the local variable no-byte-compile.
342
343compile-always: $(lisp)/subdirs.el compile-always-$(SHELLTYPE) doit
344
345compile-always-CMD:
346# -for %%f in ($(lisp) $(WINS)) do for %%g in (%%f\*.elc) do @attrib -r %%g
347 for %%f in ($(COMPILE_FIRST)) do $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile %%f
348 for %%f in (. $(WINS)) do for %%g in (%%f/*.el) do $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile %%f/%%g
349
350compile-always-SH:
351# for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
352 for el in $(COMPILE_FIRST); do \
353 echo Compiling $$el; \
354 $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $$el || exit 1; \
355 done
356 for dir in $(lisp) $(WINS); do \
357 for el in $$dir/*.el; do \
358 echo Compiling $$el; \
359 $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $$el || exit 1; \
360 done; \
361 done
362
363compile-calc: compile-calc-$(SHELLTYPE)
364
365compile-calc-CMD:
366 for %%f in ($(lisp)/calc/*.el) do $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile %%f
367
368compile-calc-SH:
369 for el in $(lisp)/calc/*.el; do \
370 echo Compiling $$el; \
371 $(emacs) $(BYTE_COMPILE_FLAGS) -f batch-byte-compile $$el || exit 1; \
372 done
373
374# Backup compiled Lisp files in elc.tar.gz. If that file already
375# exists, make a backup of it.
376
377backup-compiled-files:
378 -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
379 -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
380
381# Compile Lisp files, but save old compiled files first.
382
383compile-after-backup: backup-compiled-files compile-always
384
385compile-first: $(lisp)/emacs-lisp/bytecomp.elc $(lisp)/emacs-lisp/byte-opt.elc \
386 $(lisp)/emacs-lisp/autoload.elc $(lisp)/subdirs.el
387
388# Recompile all Lisp files which are newer than their .elc files.
389# Note that this doesn't create .elc files. It only recompiles if an
390# .elc is present.
391# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
392# this can break with GNU Make 3.81 and later if sh.exe is used.
393recompile: compile-first autoloads doit $(lisp)/progmodes/cc-mode.elc
394 $(emacs) --eval $(ARGQUOTE)(batch-byte-recompile-directory 0)$(ARGQUOTE) $(lisp)
395
396$(lisp)/calendar/cal-loaddefs.el: $(lisp)/subdirs.el
397 "$(EMACS)" $(EMACSOPT) -l autoload \
398 --eval "(setq generate-autoload-cookie \";;;###cal-autoload\")" \
399 --eval "(setq find-file-suppress-same-file-warnings t)" \
400 --eval "(setq make-backup-files nil)" \
401 -f w32-batch-update-autoloads "$(lisp)/calendar/cal-loaddefs.el" \
402 $(MAKE) ./calendar
403
404$(lisp)/calendar/diary-loaddefs.el: $(lisp)/subdirs.el
405 "$(EMACS)" $(EMACSOPT) -l autoload \
406 --eval "(setq generate-autoload-cookie \";;;###diary-autoload\")" \
407 --eval "(setq find-file-suppress-same-file-warnings t)" \
408 --eval "(setq make-backup-files nil)" \
409 -f w32-batch-update-autoloads $(lisp)/calendar/diary-loaddefs.el \
410 $(MAKE) ./calendar
411
412$(lisp)/calendar/hol-loaddefs.el: $(lisp)/subdirs.el
413 "$(EMACS)" $(EMACSOPT) -l autoload \
414 --eval "(setq generate-autoload-cookie \";;;###holiday-autoload\")" \
415 --eval "(setq find-file-suppress-same-file-warnings t)" \
416 --eval "(setq make-backup-files nil)" \
417 -f w32-batch-update-autoloads $(lisp)/calendar/hol-loaddefs.el \
418 $(MAKE) ./calendar
419
420# Update MH-E internal autoloads. These are not to be confused with
421# the autoloads for the MH-E entry points, which are already in
422# loaddefs.el.
423MH_E_SRC = $(lisp)/mh-e/mh-acros.el $(lisp)/mh-e/mh-alias.el \
424 $(lisp)/mh-e/mh-buffers.el $(lisp)/mh-e/mh-compat.el \
425 $(lisp)/mh-e/mh-comp.el $(lisp)/mh-e/mh-e.el \
426 $(lisp)/mh-e/mh-folder.el $(lisp)/mh-e/mh-funcs.el \
427 $(lisp)/mh-e/mh-gnus.el $(lisp)/mh-e/mh-identity.el \
428 $(lisp)/mh-e/mh-inc.el $(lisp)/mh-e/mh-junk.el \
429 $(lisp)/mh-e/mh-letter.el $(lisp)/mh-e/mh-limit.el \
430 $(lisp)/mh-e/mh-mime.el $(lisp)/mh-e/mh-print.el \
431 $(lisp)/mh-e/mh-scan.el $(lisp)/mh-e/mh-search.el \
432 $(lisp)/mh-e/mh-seq.el $(lisp)/mh-e/mh-show.el \
433 $(lisp)/mh-e/mh-speed.el $(lisp)/mh-e/mh-thread.el \
434 $(lisp)/mh-e/mh-tool-bar.el $(lisp)/mh-e/mh-utils.el \
435 $(lisp)/mh-e/mh-xface.el
436
437# See the commentary for autoloads above for why we use ./mh-e below
438# instead of $(lisp)/mh-e.
439mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el
440$(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) $(lisp)/subdirs.el
441 "$(EMACS)" $(EMACSOPT) \
442 -l autoload \
443 --eval $(ARGQUOTE)(setq generate-autoload-cookie $(DQUOTE);;;###mh-autoload$(DQUOTE))$(ARGQUOTE) \
444 --eval $(ARGQUOTE)(setq find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
445 --eval $(ARGQUOTE)(setq make-backup-files nil)$(ARGQUOTE) \
446 -f w32-batch-update-autoloads \
447 $(ARGQUOTE)$(lisp)/mh-e/mh-loaddefs.el$(ARGQUOTE) $(MAKE) ./mh-e
448
449# Update TRAMP internal autoloads. Maybe we could move tramp*.el into
450# its own subdirectory. OTOH, it does not hurt to keep them in
451# lisp/net.
452TRAMP_SRC = $(lisp)/net/tramp.el $(lisp)/net/tramp-cache.el \
453 $(lisp)/net/tramp-cmds.el $(lisp)/net/tramp-compat.el \
454 $(lisp)/net/tramp-ftp.el $(lisp)/net/tramp-gvfs.el \
455 $(lisp)/net/tramp-gw.el $(lisp)/net/tramp-sh.el \
456 $(lisp)/net/tramp-smb.el $(lisp)/net/tramp-uu.el \
457 $(lisp)/net/trampver.el
458
459$(lisp)/net/tramp-loaddefs.el: $(TRAMP_SRC) $(lisp)/subdirs.el
460 "$(EMACS)" $(EMACSOPT) \
461 -l autoload \
462 --eval $(ARGQUOTE)(setq generate-autoload-cookie $(DQUOTE);;;###tramp-autoload$(DQUOTE))$(ARGQUOTE) \
463 --eval $(ARGQUOTE)(setq find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
464 --eval $(ARGQUOTE)(setq make-backup-files nil)$(ARGQUOTE) \
465 -f w32-batch-update-autoloads \
466 $(ARGQUOTE)$(lisp)/net/tramp-loaddefs.el$(ARGQUOTE) $(MAKE) ./net
467
468# Prepare a bootstrap in the lisp subdirectory.
469#
470# Build loaddefs.el to make sure it's up-to-date. If it's not, that
471# might lead to errors during the bootstrap because something fails to
472# autoload as expected. If there is no emacs binary, then we can't
473# build autoloads yet. In that case we have to use ldefs-boot.el;
474# bootstrap should always work with ldefs-boot.el. (Because
475# loaddefs.el is an automatically generated file, we don't want to
476# store it in the source repository).
477#
478# Remove compiled Lisp files so that bootstrap-emacs will be built from
479# sources only.
480
481# Need separate version for sh and native cmd.exe
482bootstrap-clean:
483 - $(DEL) $(lisp)/loaddefs.el
484 - $(DEL) $(lisp)/subdirs.el
485 $(MAKE) $(MFLAGS) bootstrap-clean-$(SHELLTYPE)
486
487bootstrap-clean-CMD:
488# if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads
489 -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g
490
491bootstrap-clean-SH:
492# if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi
493# -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
494 -for dir in . $(WINS); do rm -f $$dir/*.elc $$dir/*/*.elc $$dir/*/*/*.elc; done
495
496# Generate/update files for the bootstrap process.
497# When done, remove bootstrap-emacs from ../bin, so that
498# it will not be mistaken for an installed binary.
499
500bootstrap: $(lisp)/subdirs.el compile finder-data custom-deps
501 - $(DEL) "$(EMACS)"
502
503#
504# Assuming INSTALL_DIR is defined, copy the elisp files to it
505# Windows 95 makes this harder than it should be.
506#
507install:
508 - mkdir "$(INSTALL_DIR)/lisp"
509 - $(DEL) ../$(DIRNAME)_same-dir.tst
510 - $(DEL) "$(INSTALL_DIR)/$(DIRNAME)_same-dir.tst"
511 echo SameDirTest > "$(INSTALL_DIR)/$(DIRNAME)_same-dir.tst"
512#ifdef COPY_LISP_SOURCE
513 $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) install-lisp-$(SHELLTYPE) $(ENDIF)
514#else
515# $(IFNOTSAMEDIR) $(CP_DIR) *.elc "$(INSTALL_DIR)/lisp" $(ENDIF)
516# $(IFNOTSAMEDIR) $(CP) cus-load.el "$(INSTALL_DIR)/lisp" $(ENDIF)
517# $(IFNOTSAMEDIR) $(CP) forms*.el "$(INSTALL_DIR)/lisp" $(ENDIF)
518# $(IFNOTSAMEDIR) $(CP) patcomp.el "$(INSTALL_DIR)/lisp" $(ENDIF)
519# $(IFNOTSAMEDIR) $(CP) subdirs.el "$(INSTALL_DIR)/lisp" $(ENDIF)
520# $(IFNOTSAMEDIR) $(CP) version.el "$(INSTALL_DIR)/lisp" $(ENDIF)
521# $(IFNOTSAMEDIR) $(CP) mail/blessmail.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
522# $(IFNOTSAMEDIR) $(CP) mail/sc.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
523# $(IFNOTSAMEDIR) $(CP) play/bruce.el "$(INSTALL_DIR)/lisp/play" $(ENDIF)
524# $(IFNOTSAMEDIR) $(CP) international/latin-*.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
525# $(IFNOTSAMEDIR) $(CP) international/mule-conf.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
526#endif
527 - $(DEL) ../$(DIRNAME)_same-dir.tst
528 - $(DEL) "$(INSTALL_DIR)/$(DIRNAME)_same-dir.tst"
529
530# Need to copy *.el files first, to avoid "source file is newer" annoyance
531# since cp does not preserve time stamps
532install-lisp-SH:
533 cp -f *.el "$(INSTALL_DIR)/lisp"
534 for dir in $(WINS); do [ -d "$(INSTALL_DIR)/lisp/$$dir" ] || mkdir "$(INSTALL_DIR)/lisp/$$dir"; done
535 for dir in $(WINS); do cp -f $$dir/*.el "$(INSTALL_DIR)/lisp/$$dir"; done
536 for dir in . $(WINS); do cp $$dir/*.elc "$(INSTALL_DIR)/lisp/$$dir"; done
537
538install-lisp-CMD:
539 cp -f *.el "$(INSTALL_DIR)/lisp"
540 for %%f in ($(WINS)) do if not exist "$(INSTALL_DIR)/lisp/%%f" mkdir "$(INSTALL_DIR)/lisp/%%f"
541 for %%f in ($(WINS)) do cp -f %%f/*.el "$(INSTALL_DIR)/lisp/%%f"
542 for %%f in (. $(WINS)) do cp -f %%f/*.elc "$(INSTALL_DIR)/lisp/%%f"
543
544# WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
545# this can break with GNU Make 3.81 and later if sh.exe is used.
546check-declare:
547 $(emacs) -l $(lisp)/emacs-lisp/check-declare --eval $(ARGQUOTE)(check-declare-directory $(DQUOTE)$(lisp)$(DQUOTE))$(ARGQUOTE)
548
549#
550# Maintenance
551#
552# We used to delete *~ here, but that might inadvertently remove
553# precious files if it happens to match their short 8+3 aliases.
554clean:
555 - $(DEL) *.el~
556 - $(DEL) calc/calc-loaddefs.el~
557 - $(DEL) eshell/esh-groups.el~
558
559distclean: clean
560 - $(DEL) $(lisp)/Makefile
561
562maintainer-clean: bootstrap-clean distclean
563 - $(DEL) $(AUTOGENEL)
564
565# Dependencies
566
567# CC Mode uses a compile time macro system which causes a compile time
568# dependency in cc-*.elc files on the macros in other cc-*.el and the
569# version string in cc-defs.el.
570$(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-awk.elc\
571 $(lisp)/progmodes/cc-cmds.elc $(lisp)/progmodes/cc-compat.elc\
572 $(lisp)/progmodes/cc-engine.elc $(lisp)/progmodes/cc-fonts.elc\
573 $(lisp)/progmodes/cc-langs.elc $(lisp)/progmodes/cc-menus.elc\
574 $(lisp)/progmodes/cc-mode.elc $(lisp)/progmodes/cc-styles.elc\
575 $(lisp)/progmodes/cc-vars.elc: \
576 $(lisp)/progmodes/cc-bytecomp.elc $(lisp)/progmodes/cc-defs.elc
577
578$(lisp)/progmodes/cc-align.elc: \
579 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
580
581$(lisp)/progmodes/cc-cmds.elc: \
582 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
583
584$(lisp)/progmodes/cc-compat.elc: \
585 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-styles.elc \
586 $(lisp)/progmodes/cc-engine.elc
587
588$(lisp)/progmodes/cc-defs.elc: $(lisp)/progmodes/cc-bytecomp.elc \
589 $(lisp)/emacs-lisp/cl.elc $(lisp)/emacs-lisp/regexp-opt.elc
590
591$(lisp)/progmodes/cc-engine.elc: $(lisp)/progmodes/cc-langs.elc \
592 $(lisp)/progmodes/cc-vars.elc
593
594$(lisp)/progmodes/cc-fonts.elc: $(lisp)/progmodes/cc-langs.elc \
595 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc \
596 $(lisp)/font-lock.elc
597
598$(lisp)/progmodes/cc-langs.elc: $(lisp)/progmodes/cc-vars.elc \
599 $(lisp)/emacs-lisp/cl.elc
600
601$(lisp)/progmodes/cc-mode.elc: $(lisp)/progmodes/cc-langs.elc \
602 $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc \
603 $(lisp)/progmodes/cc-styles.elc $(lisp)/progmodes/cc-cmds.elc \
604 $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-menus.elc \
605 $(lisp)/subdirs.el
606
607$(lisp)/progmodes/cc-styles.elc: $(lisp)/progmodes/cc-vars.elc \
608 $(lisp)/progmodes/cc-align.elc
609
610$(lisp)/progmodes/cc-vars.elc: $(lisp)/custom.elc $(lisp)/widget.elc
611
612# MH-E dependencies, mainly to prevent failures with parallel
613# compilation, due to race conditions between writing a given FOO.elc
614# file and another file being compiled that says "(require FOO)",
615# which causes Emacs to try to read FOO.elc.
616MH_E_DIR = ./mh-e
617$(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-comp.elc $(MH_E_DIR)/mh-folder.elc\
618 $(MH_E_DIR)/mh-funcs.elc $(MH_E_DIR)/mh-identity.elc $(MH_E_DIR)/mh-inc.elc\
619 $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-limit.elc\
620 $(MH_E_DIR)/mh-mime.elc $(MH_E_DIR)/mh-print.elc $(MH_E_DIR)/mh-scan.elc\
621 $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc\
622 $(MH_E_DIR)/mh-speed.elc $(MH_E_DIR)/mh-thread.elc $(MH_E_DIR)/mh-tool-bar.elc\
623 $(MH_E_DIR)/mh-utils.elc $(MH_E_DIR)/mh-xface.elc:\
624 $(MH_E_DIR)/mh-e.elc
625
626$(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-e.elc $(MH_E_DIR)/mh-folder.elc\
627 $(MH_E_DIR)/mh-inc.elc $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-limit.elc\
628 $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-speed.elc\
629 $(MH_E_DIR)/mh-utils.elc $(MH_E_DIR)/mh-xface.elc:\
630 $(lisp)/emacs-lisp/cl.elc
631
632$(MH_E_DIR)/mh-comp.elc $(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-funcs.elc\
633 $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-limit.elc $(MH_E_DIR)/mh-print.elc\
634 $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc $(MH_E_DIR)/mh-thread.elc:\
635 $(MH_E_DIR)/mh-scan.elc
636
637$(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-mime.elc\
638 $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-show.elc $(MH_E_DIR)/mh-speed.elc:\
639 $(lisp)/gnus/gnus-util.elc
640
641$(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-search.elc:\
642 $(lisp)/progmodes/which-func.elc
643
644$(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc\
645 $(MH_E_DIR)/mh-utils.elc:\
646 $(lisp)/font-lock.elc
647
648$(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-show.elc: $(lisp)/net/goto-addr.elc
649
650$(MH_E_DIR)/mh-comp.elc: $(lisp)/mail/sendmail.elc
651
652$(MH_E_DIR)/mh-e.elc: $(MH_E_DIR)/mh-buffers.elc $(lisp)/gnus/gnus.elc \
653 $(lisp)/cus-face.elc
654
655$(MH_E_DIR)/mh-letter.elc: $(lisp)/gnus/mailcap.elc $(lisp)/gnus/mm-decode.elc \
656 $(lisp)/gnus/mm-view.elc $(lisp)/gnus/mml.elc $(lisp)/gnus/message.elc
657
658$(MH_E_DIR)/mh-print.elc: $(lisp)/ps-print.elc
659
660$(MH_E_DIR)/mh-search.elc: $(lisp)/imenu.elc
661
662$(MH_E_DIR)/mh-show.elc: $(lisp)/gnus/gnus-cite.elc
663
664$(MH_E_DIR)/mh-speed.elc: $(lisp)/speedbar.elc $(lisp)/emacs-lisp/timer.elc
665
666$(MH_E_DIR)/mh-tool-bar.elc: $(lisp)/tool-bar.elc