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