Merge from emacs-23
[emacs.git] / lisp / makefile.w32-in
blobaebb8b352e71fe61a4e5f6416fa175320002d75c
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.
5 # This file is part of GNU Emacs.
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.
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.
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/>.
20 ALL =
22 all: $(ALL)
24 SQUOTE='
25 # '
27 lisp = $(CURDIR)
28 srcdir = $(CURDIR)/..
30 # You can specify a different executable on the make command line,
31 # e.g. "make EMACS=../src/emacs ...".
33 EMACS = $(THISDIR)/../bin/emacs.exe
35 # Command line flags for Emacs.  This must include --multibyte,
36 # otherwise some files will not compile.
38 EMACSOPT = -batch --no-init-file --no-site-file --multibyte
40 # Extra flags to pass to the byte compiler
41 BYTE_COMPILE_EXTRA_FLAGS =
42 # For example to not display the undefined function warnings you can use this:
43 # BYTE_COMPILE_EXTRA_FLAGS = --eval '(setq byte-compile-warnings (quote (not unresolved)))'
44 # The example above is just for developers, it should not be used by default.
46 # Set EMACSLOADPATH correctly (already defined in environment).
47 EMACSLOADPATH=$(lisp)
49 # Use C locale
50 LC_ALL = C
52 lisptagsfiles1 = $(lisp)/*.el
53 lisptagsfiles2 = $(lisp)/*/*.el
54 ETAGS = "../lib-src/$(BLD)/etags"
56 # Automatically generated autoload files, apart from lisp/loaddefs.el.
57 LOADDEFS = $(lisp)/calendar/cal-loaddefs.el \
58         $(lisp)/calendar/diary-loaddefs.el $(lisp)/calendar/hol-loaddefs.el \
59         $(lisp)/mh-e/mh-loaddefs.el
61 AUTOGENEL = $(lisp)/loaddefs.el $(LOADDEFS) $(lisp)/cus-load.el \
62         $(lisp)/finder-inf.el $(lisp)/subdirs.el $(lisp)/eshell/esh-groups.el \
63         $(lisp)/calc/calc-loaddefs.el $(lisp)/nxml/subdirs.el \
64         $(lisp)/cedet/semantic/loaddefs.el $(lisp)/cedet/ede/loaddefs.el \
65         $(lisp)/cedet/srecode/loaddefs.el
67 # Files to compile before others during a bootstrap.  This is done to
68 # speed up the bootstrap process.  The CC files are compiled first
69 # because CC mode tweaks the compilation process, and requiring
70 # cc-mode when it is not compiled doesn't work during the
71 # bootstrapping.
73 COMPILE_FIRST = \
74         $(lisp)/emacs-lisp/byte-opt.el \
75         $(lisp)/emacs-lisp/bytecomp.el \
76         $(lisp)/subr.el \
77         $(lisp)/progmodes/cc-mode.el \
78         $(lisp)/progmodes/cc-vars.el
80 # The actual Emacs command run in the targets below.
81 # The quotes around $(EMACS) are here because the user could type
82 # it with forward slashes and without quotes, which will fail if
83 # the shell is cmd.exe.
85 emacs = "$(EMACS)" $(EMACSOPT)
87 # Have to define the list of subdirs manually when not using sh.
88 WINS_CEDET=\
89         cedet \
90         cedet/ede \
91         cedet/semantic \
92         cedet/srecode \
93         cedet/semantic/analyze \
94         cedet/semantic/bovine \
95         cedet/semantic/decorate \
96         cedet/semantic/symref \
97         cedet/semantic/wisent
99 WINS_BASIC=\
100         calc \
101         calendar \
102         emacs-lisp \
103         emulation \
104         erc \
105         eshell \
106         gnus \
107         international \
108         language \
109         mail \
110         mh-e \
111         net \
112         nxml \
113         org \
114         play \
115         progmodes \
116         textmodes \
117         url
119 # Directories with lisp files to compile, and to extract data from
120 # (customs, autoloads, etc.)
121 WINS_UPDATES=$(WINS_BASIC) \
122         $(WINS_CEDET)
124 # Directories to add to subdirs.el
125 WINS_SUBDIR=$(WINS_BASIC) \
126         obsolete
128 # All directories
129 WINS= $(WINS_UPDATES) \
130         term \
131         obsolete
133 doit:
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:" >> $@
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:>> $@
156 $(lisp)/cus-load.el:
157         $(MAKE) $(MFLAGS) cus-load.el-$(SHELLTYPE)
158         mv cus-load.el-$(SHELLTYPE) $@
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)
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)
171 $(lisp)/loaddefs.el:
172         $(MAKE) $(MFLAGS) loaddefs.el-$(SHELLTYPE)
173         cp loaddefs.el-$(SHELLTYPE) $@
174         rm loaddefs.el-$(SHELLTYPE)
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" >> $@
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>> $@
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.
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)
214 $(lisp)/subdirs.el:
215         $(MAKE) $(MFLAGS) update-subdirs
217 # Need separate version for sh and native cmd.exe
218 update-subdirs: update-subdirs-$(SHELLTYPE)
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
228 update-subdirs-SH: doit
229         $(srcdir)/update-subdirs $(lisp); \
230         for file in $(WINS_SUBDIR); do \
231            $(srcdir)/update-subdirs $$file; \
232         done;
234 updates: update-subdirs autoloads mh-autoloads finder-data custom-deps
236 # This is useful after "bzr up".
237 bzr-update: recompile autoloads finder-data custom-deps
239 # For backwards compatibility:
240 cvs-update: bzr-update
242 # Update the AUTHORS file.
244 update-authors:
245         $(emacs) -l authors -f batch-update-authors $(srcdir)/etc/AUTHORS $(srcdir)
247 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
248         $(ETAGS) $(lisptagsfiles1) $(lisptagsfiles2)
250 TAGS-LISP: $(lisptagsfiles1) $(lisptagsfiles2)
251         $(ETAGS) -o TAGS-LISP $(lisptagsfiles1) $(lisptagsfiles2)
253 .SUFFIXES: .elc .el
255 .el.elc:
256         -$(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile $<
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.
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.
270 # Need separate version for sh and native cmd.exe
271 compile: $(lisp)/subdirs.el mh-autoloads compile-$(SHELLTYPE) doit
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
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
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.
300 compile-always: $(lisp)/subdirs.el compile-always-$(SHELLTYPE) doit
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
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
320 compile-calc: compile-calc-$(SHELLTYPE)
322 compile-calc-CMD:
323         for %%f in ($(lisp)/calc/*.el) do $(emacs) $(BYTE_COMPILE_EXTRA_FLAGS) -f batch-byte-compile %%f
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
331 # Backup compiled Lisp files in elc.tar.gz.  If that file already
332 # exists, make a backup of it.
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
338 # Compile Lisp files, but save old compiled files first.
340 compile-after-backup: backup-compiled-files compile-always
342 compile-first:  $(lisp)/emacs-lisp/bytecomp.elc $(lisp)/emacs-lisp/byte-opt.elc \
343         $(lisp)/emacs-lisp/autoload.elc
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)
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
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
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
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
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
406 # Prepare a bootstrap in the lisp subdirectory.
408 # Build loaddefs.el to make sure it's up-to-date.  If it's not, that
409 # might lead to errors during the bootstrap because something fails to
410 # autoload as expected.  If there is no emacs binary, then we can't
411 # build autoloads yet.  In that case we have to use ldefs-boot.el;
412 # bootstrap should always work with ldefs-boot.el.  (Because
413 # loaddefs.el is an automatically generated file, we don't want to
414 # store it in the source repository).
416 # Remove compiled Lisp files so that bootstrap-emacs will be built from
417 # sources only.
419 # Need separate version for sh and native cmd.exe
420 bootstrap-clean:
421         - $(DEL) $(lisp)/loaddefs.el
422         $(MAKE) $(MFLAGS) bootstrap-clean-$(SHELLTYPE)
424 bootstrap-clean-CMD:
425 #       if exist "$(EMACS)" $(MAKE) $(MFLAGS) autoloads
426         -for %%f in (. $(WINS)) do for %%g in (%%f\*.elc) do @$(DEL) %%g
428 bootstrap-clean-SH:
429 #       if test -f "$(EMACS)"; then $(MAKE) $(MFLAGS) autoloads; fi
430 #       -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
431         -for dir in . $(WINS); do rm -f $$dir/*.elc $$dir/*/*.elc $$dir/*/*/*.elc; done
433 # Generate/update files for the bootstrap process.
434 # When done, remove bootstrap-emacs from ../bin, so that
435 # it will not be mistaken for an installed binary.
437 bootstrap: update-subdirs autoloads mh-autoloads compile finder-data custom-deps
438         - $(DEL) "$(EMACS)"
441 # Assuming INSTALL_DIR is defined, copy the elisp files to it
442 # Windows 95 makes this harder than it should be.
444 install:
445                 - mkdir "$(INSTALL_DIR)/lisp"
446                 - $(DEL) ../same-dir.tst
447                 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
448                 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
449 #ifdef COPY_LISP_SOURCE
450                 $(IFNOTSAMEDIR) $(MAKE) $(MFLAGS) install-lisp-$(SHELLTYPE) $(ENDIF)
451 #else
452 #               $(IFNOTSAMEDIR) $(CP_DIR) *.elc "$(INSTALL_DIR)/lisp" $(ENDIF)
453 #               $(IFNOTSAMEDIR) $(CP) cus-load.el "$(INSTALL_DIR)/lisp" $(ENDIF)
454 #               $(IFNOTSAMEDIR) $(CP) forms*.el "$(INSTALL_DIR)/lisp" $(ENDIF)
455 #               $(IFNOTSAMEDIR) $(CP) patcomp.el "$(INSTALL_DIR)/lisp" $(ENDIF)
456 #               $(IFNOTSAMEDIR) $(CP) subdirs.el "$(INSTALL_DIR)/lisp" $(ENDIF)
457 #               $(IFNOTSAMEDIR) $(CP) version.el "$(INSTALL_DIR)/lisp" $(ENDIF)
458 #               $(IFNOTSAMEDIR) $(CP) mail/blessmail.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
459 #               $(IFNOTSAMEDIR) $(CP) mail/sc.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
460 #               $(IFNOTSAMEDIR) $(CP) play/bruce.el "$(INSTALL_DIR)/lisp/play" $(ENDIF)
461 #               $(IFNOTSAMEDIR) $(CP) international/latin-*.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
462 #               $(IFNOTSAMEDIR) $(CP) international/mule-conf.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
463 #endif
464                 - $(DEL) ../same-dir.tst
465                 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
467 # Need to copy *.el files first, to avoid "source file is newer" annoyance
468 # since cp does not preserve time stamps
469 install-lisp-SH:
470         cp -f *.el "$(INSTALL_DIR)/lisp"
471         for dir in $(WINS); do [ -d "$(INSTALL_DIR)/lisp/$$dir" ] || mkdir "$(INSTALL_DIR)/lisp/$$dir"; done
472         for dir in $(WINS); do cp -f $$dir/*.el "$(INSTALL_DIR)/lisp/$$dir"; done
473         for dir in . $(WINS); do cp $$dir/*.elc "$(INSTALL_DIR)/lisp/$$dir"; done
475 install-lisp-CMD:
476         cp -f *.el "$(INSTALL_DIR)/lisp"
477         for %%f in ($(WINS)) do if not exist "$(INSTALL_DIR)/lisp/%%f" mkdir "$(INSTALL_DIR)/lisp/%%f"
478         for %%f in ($(WINS)) do cp -f %%f/*.el "$(INSTALL_DIR)/lisp/%%f"
479         for %%f in (. $(WINS)) do cp -f %%f/*.elc "$(INSTALL_DIR)/lisp/%%f"
481 # WARNING: Do NOT split the part inside $(ARGQUOTE)s into multiple lines as
482 #          this can break with GNU Make 3.81 and later if sh.exe is used.
483 check-declare:
484         $(emacs) -l $(lisp)/emacs-lisp/check-declare --eval $(ARGQUOTE)(check-declare-directory $(DQUOTE)$(lisp)$(DQUOTE))$(ARGQUOTE)
487 # Maintenance
489 # We used to delete *~ here, but that might inadvertently remove
490 # precious files if it happens to match their short 8+3 aliases.
491 clean:
492         - $(DEL) *.el~
493         - $(DEL) calc/calc-loaddefs.el~
494         - $(DEL) eshell/esh-groups.el~
496 distclean: clean
497         - $(DEL) $(lisp)/Makefile
499 maintainer-clean: bootstrap-clean distclean
500         - $(DEL) $(AUTOGENEL)
502 # Dependencies
504 # CC Mode uses a compile time macro system which causes a compile time
505 # dependency in cc-*.elc files on the macros in other cc-*.el and the
506 # version string in cc-defs.el.
507 $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-awk.elc\
508  $(lisp)/progmodes/cc-cmds.elc $(lisp)/progmodes/cc-compat.elc\
509  $(lisp)/progmodes/cc-engine.elc $(lisp)/progmodes/cc-fonts.elc\
510  $(lisp)/progmodes/cc-langs.elc $(lisp)/progmodes/cc-menus.elc\
511  $(lisp)/progmodes/cc-mode.elc $(lisp)/progmodes/cc-styles.elc\
512  $(lisp)/progmodes/cc-vars.elc: \
513    $(lisp)/progmodes/cc-bytecomp.elc $(lisp)/progmodes/cc-defs.elc
515 $(lisp)/progmodes/cc-align.elc: \
516    $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
518 $(lisp)/progmodes/cc-cmds.elc: \
519    $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc
521 $(lisp)/progmodes/cc-compat.elc: \
522    $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-styles.elc \
523    $(lisp)/progmodes/cc-engine.elc
525 $(lisp)/progmodes/cc-defs.elc: $(lisp)/progmodes/cc-bytecomp.elc \
526    $(lisp)/emacs-lisp/cl.elc $(lisp)/emacs-lisp/regexp-opt.elc
528 $(lisp)/progmodes/cc-engine.elc: $(lisp)/progmodes/cc-langs.elc \
529    $(lisp)/progmodes/cc-vars.elc
531 $(lisp)/progmodes/cc-fonts.elc: $(lisp)/progmodes/cc-langs.elc \
532    $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc \
533    $(lisp)/font-lock.elc
535 $(lisp)/progmodes/cc-langs.elc: $(lisp)/progmodes/cc-vars.elc \
536    $(lisp)/emacs-lisp/cl.elc
538 $(lisp)/progmodes/cc-mode.elc: $(lisp)/progmodes/cc-langs.elc \
539    $(lisp)/progmodes/cc-vars.elc $(lisp)/progmodes/cc-engine.elc \
540    $(lisp)/progmodes/cc-styles.elc $(lisp)/progmodes/cc-cmds.elc \
541    $(lisp)/progmodes/cc-align.elc $(lisp)/progmodes/cc-menus.elc
543 $(lisp)/progmodes/cc-styles.elc: $(lisp)/progmodes/cc-vars.elc \
544    $(lisp)/progmodes/cc-align.elc
546 $(lisp)/progmodes/cc-vars.elc: $(lisp)/custom.elc $(lisp)/widget.elc
548 # MH-E dependencies, mainly to prevent failures with parallel
549 # compilation, due to race conditions between writing a given FOO.elc
550 # file and another file being compiled that says "(require FOO)",
551 # which causes Emacs to try to read FOO.elc.
552 MH_E_DIR = ./mh-e
553 $(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-comp.elc $(MH_E_DIR)/mh-folder.elc\
554  $(MH_E_DIR)/mh-funcs.elc $(MH_E_DIR)/mh-identity.elc $(MH_E_DIR)/mh-inc.elc\
555  $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-limit.elc\
556  $(MH_E_DIR)/mh-mime.elc $(MH_E_DIR)/mh-print.elc $(MH_E_DIR)/mh-scan.elc\
557  $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc\
558  $(MH_E_DIR)/mh-speed.elc $(MH_E_DIR)/mh-thread.elc $(MH_E_DIR)/mh-tool-bar.elc\
559  $(MH_E_DIR)/mh-utils.elc $(MH_E_DIR)/mh-xface.elc:\
560    $(MH_E_DIR)/mh-e.elc
562 $(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-e.elc $(MH_E_DIR)/mh-folder.elc\
563  $(MH_E_DIR)/mh-inc.elc $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-limit.elc\
564  $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-speed.elc\
565  $(MH_E_DIR)/mh-utils.elc $(MH_E_DIR)/mh-xface.elc:\
566    $(lisp)/emacs-lisp/cl.elc
568 $(MH_E_DIR)/mh-comp.elc $(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-funcs.elc\
569  $(MH_E_DIR)/mh-junk.elc $(MH_E_DIR)/mh-limit.elc $(MH_E_DIR)/mh-print.elc\
570  $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc $(MH_E_DIR)/mh-thread.elc:\
571    $(MH_E_DIR)/mh-scan.elc
573 $(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-mime.elc\
574  $(MH_E_DIR)/mh-search.elc $(MH_E_DIR)/mh-show.elc $(MH_E_DIR)/mh-speed.elc:\
575    $(lisp)/gnus/gnus-util.elc
577 $(MH_E_DIR)/mh-folder.elc $(MH_E_DIR)/mh-search.elc:\
578    $(lisp)/progmodes/which-func.elc
580 $(MH_E_DIR)/mh-letter.elc $(MH_E_DIR)/mh-seq.elc $(MH_E_DIR)/mh-show.elc\
581  $(MH_E_DIR)/mh-utils.elc:\
582    $(lisp)/font-lock.elc
584 $(MH_E_DIR)/mh-alias.elc $(MH_E_DIR)/mh-show.elc: $(lisp)/net/goto-addr.elc
586 $(MH_E_DIR)/mh-comp.elc: $(lisp)/mail/sendmail.elc
588 $(MH_E_DIR)/mh-e.elc: $(MH_E_DIR)/mh-buffers.elc $(lisp)/gnus/gnus.elc \
589    $(lisp)/cus-face.elc
591 $(MH_E_DIR)/mh-letter.elc: $(lisp)/gnus/mailcap.elc $(lisp)/gnus/mm-decode.elc \
592    $(lisp)/gnus/mm-view.elc  $(lisp)/gnus/mml.elc $(lisp)/gnus/message.elc
594 $(MH_E_DIR)/mh-print.elc:  $(lisp)/ps-print.elc
596 $(MH_E_DIR)/mh-search.elc: $(lisp)/imenu.elc
598 $(MH_E_DIR)/mh-show.elc: $(lisp)/gnus/gnus-cite.elc
600 $(MH_E_DIR)/mh-speed.elc: $(lisp)/speedbar.elc $(lisp)/emacs-lisp/timer.elc
602 $(MH_E_DIR)/mh-tool-bar.elc: $(lisp)/tool-bar.elc