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