Fix typo.
[emacs.git] / lisp / makefile.w32-in
blob95a5bcab8c7f48cdc35ff5ce2eaabbc28f7c3979
1 #  Makefile for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (c) 2000-2001 Free Software Foundation, Inc.
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 2, or (at your option)
9 #  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; see the file COPYING.  If not, write to the
18 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 #  Boston, MA 02111-1307, USA.
22 ALL =
24 all: $(ALL)
26 SQUOTE='
27 # '
29 lisp = $(CURDIR)
31 # You can specify a different executable on the make command line,
32 # e.g. "make EMACS=../src/emacs ...".
34 EMACS = "$(THISDIR)/../bin/emacs.exe"
36 # Command line flags for Emacs.  This must include --multibyte,
37 # otherwise some files will not compile.
39 EMACSOPT = -batch --no-init-file --no-site-file --multibyte
41 lisptagsfiles1 = $(lisp)/*.el
42 lisptagsfiles2 = $(lisp)/*/*.el
43 ETAGS = "../lib-src/$(BLD)/etags"
45 # Files which should not be compiled.
46 # - emacs-lisp/cl-specs.el:  only contains `def-edebug-spec's so there's
47 #   no point compiling it, although it doesn't hurt.
49 DONTCOMPILE = \
50         $(lisp)/bindings.el \
51         $(lisp)/cus-load.el \
52         $(lisp)/cus-start.el \
53         $(lisp)/emacs-lisp/cl-specs.el \
54         $(lisp)/eshell/esh-maint.el \
55         $(lisp)/eshell/esh-groups.el \
56         $(lisp)/finder-inf.el \
57         $(lisp)/forms-d2.el \
58         $(lisp)/forms-pass.el \
59         $(lisp)/generic-x.el \
60         $(lisp)/international/latin-1.el \
61         $(lisp)/international/latin-2.el \
62         $(lisp)/international/latin-3.el \
63         $(lisp)/international/latin-4.el \
64         $(lisp)/international/latin-5.el \
65         $(lisp)/international/latin-8.el \
66         $(lisp)/international/latin-9.el \
67         $(lisp)/international/mule-conf.el \
68         $(lisp)/loaddefs.el \
69         $(lisp)/loadup.el \
70         $(lisp)/mail/blessmail.el \
71         $(lisp)/mail/sc.el \
72         $(lisp)/patcomp.el \
73         $(lisp)/paths.el \
74         $(lisp)/play/bruce.el \
75         $(lisp)/subdirs.el \
76         $(lisp)/term/internal.el \
77         $(lisp)/term/AT386.el  \
78         $(lisp)/term/apollo.el \
79         $(lisp)/term/bobcat.el \
80         $(lisp)/term/iris-ansi.el \
81         $(lisp)/term/keyswap.el \
82         $(lisp)/term/linux.el \
83         $(lisp)/term/lk201.el \
84         $(lisp)/term/news.el \
85         $(lisp)/term/vt102.el \
86         $(lisp)/term/vt125.el \
87         $(lisp)/term/vt200.el \
88         $(lisp)/term/vt201.el \
89         $(lisp)/term/vt220.el \
90         $(lisp)/term/vt240.el \
91         $(lisp)/term/vt300.el \
92         $(lisp)/term/vt320.el \
93         $(lisp)/term/vt400.el \
94         $(lisp)/term/vt420.el \
95         $(lisp)/term/wyse50.el \
96         $(lisp)/term/xterm.el \
97         $(lisp)/version.el
99 # Files to compile before others during a bootstrap.  This is done to
100 # speed up the bootstrap process.  The CC files are compiled first
101 # because CC mode tweaks the compilation process, and requiring
102 # cc-mode when it is not compiled doesn't work during the
103 # bootstrapping.
105 COMPILE_FIRST = \
106         $(lisp)/emacs-lisp/byte-opt.el \
107         $(lisp)/emacs-lisp/bytecomp.el \
108         $(lisp)/subr.el \
109         $(lisp)/progmodes/cc-mode.el \
110         $(lisp)/progmodes/cc-vars.el
112 # The actual Emacs command run in the targets below.
114 emacs = $(EMACS) $(EMACSOPT)
116 # Common command to find subdirectories
118 setwins=subdirs=`find $$wd -type d -print`; \
119         for file in $$subdirs; do \
120            case $$file in */Old | */RCS | */CVS | */CVS/* | */=* ) ;; \
121                 *) wins="$$wins $$file" ;; \
122            esac; \
123         done
125 # Have to define the list of subdirs manually when not using sh.
126 WINS=\
127         calendar \
128         emacs-lisp \
129         emulation \
130         eshell \
131         gnus \
132         international \
133         language \
134         mail \
135         net \
136         play \
137         progmodes \
138         term \
139         textmodes
141 doit:
143 cus-load.el:
144         touch $@
145 custom-deps: cus-load.el doit
146         @echo Directories: $(WINS)
147         set EMACSLOADPATH=$(lisp)
148         -$(SETLOADPATH) $(emacs) -l cus-dep --eval $(ARGQUOTE)(setq find-file-hooks nil)$(ARGQUOTE) -f custom-make-dependencies $(lisp) $(WINS)
150 finder-inf.el:
151         echo (provide $(SQUOTE)finder-inf)>> $@
153 finder-data: finder-inf.el doit
154         @echo Directories: $(WINS)
155         $(emacs) -l finder -f finder-compile-keywords-make-dist $(lisp) $(WINS)
157 loaddefs.el:
158         echo ;;; loaddefs.el --- automatically extracted autoloads> $@
159         echo ;;; Code:>> $@
160         echo \f>> $@
161         echo ;;; Local Variables:>> $@
162         echo ;;; version-control: never>> $@
163         echo ;;; no-byte-compile: t>> $@
164         echo ;;; no-update-autoloads: t>> $@
165         echo ;;; End:>> $@
166         echo ;;; loaddefs.el ends here>> $@
168 autoloads: loaddefs.el doit
169         @echo Directories: $(WINS)
170         set EMACSLOADPATH=$(lisp)
171         $(SETLOADPATH) $(emacs) -l autoload --eval $(ARGQUOTE)(setq find-file-hooks nil generated-autoload-file $(DQUOTE)$(lisp)/loaddefs.el$(DQUOTE))$(ARGQUOTE) -f batch-update-autoloads $(lisp) $(WINS)
173 subdirs.el:
174         $(MAKE) $(MFLAGS) update-subdirs
176 # Need separate version for sh and native cmd.exe
177 update-subdirs: update-subdirs-$(SHELLTYPE)
179 update-subdirs-CMD: doit
180         @set QWINS=
181         @for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d"
182         echo ;; In load-path, after this directory should come> subdirs.el
183         echo ;; certain of its subdirectories.  Here we specify them.>> subdirs.el
184         echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el
186 update-subdirs-SH: doit
187         wd=$(lisp); $(setwins); \
188         for file in $$wins; do \
189            $(srcdir)/update-subdirs $$file; \
190         done;
192 updates: update-subdirs autoloads finder-data custom-deps
194 TAGS: $(lisptagsfiles1) $(lisptagsfiles2)
195         $(ETAGS) $(lisptagsfiles1) $(lisptagsfiles2)
197 TAGS-LISP: $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2)
198         $(ETAGS) -o TAGS-LISP $(lispsource)$(lisptagsfiles1) $(lispsource)$(lisptagsfiles2)
200 .SUFFIXES: .elc .el
202 .el.elc:
203         set EMACSLOADPATH=$(lisp)
204         -$(SETLOADPATH) $(emacs) -f batch-byte-compile $<
206 $(DONTCOMPILE:.el=.elc):
207         -$(DEL) $@
209 # Compile all Lisp files, except those from DONTCOMPILE.  This
210 # compiles files unconditionally.  All .elc files are made writable
211 # before compilation in case we checked out read-only (CVS option -r).
212 # Files MUST be compiled one by one.  If we compile several files in a
213 # row we can't make sure that the compilation environment is clean.
214 # We also set the load-path of the Emacs used for compilation to the
215 # current directory and its subdirectories, to make sure require's and
216 # load's in the files being compiled find the right files.
218 # Need separate version for sh and native cmd.exe
219 compile-files: subdirs.el compile-files-$(SHELLTYPE) doit
221 compile-files-CMD:
222         set EMACSLOADPATH=$(lisp)
223 #       -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @attrib -r %g
224         for %f in ($(COMPILE_FIRST)) do $(emacs) -f batch-byte-compile %f
225         for %f in ($(lisp) $(WINS)) do for %g in (%f/*.el) do $(emacs) -f batch-byte-compile %f/%g
227 compile-files-SH:
228 #       for elc in $(lisp)/*.elc $(lisp)/*/*.elc; do attrib -r $$elc; done
229         for el in $(COMPILE_FIRST); do \
230           echo Compiling $$el; \
231           EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \
232         done
233         for dir in $(lisp) $(WINS); do \
234           for el in $$dir/*.el; do \
235             echo Compiling $$el; \
236             EMACSLOADPATH=$(lisp) $(emacs) -f batch-byte-compile $$el; \
237           done; \
238         done
240 # Backup compiled Lisp files in elc.tar.gz.  If that file already
241 # exists, make a backup of it.
243 backup-compiled-files:
244         -mv $(lisp)/elc.tar.gz $(lisp)/elc.tar.gz~
245         -tar czf $(lisp)/elc.tar.gz $(lisp)/*.elc $(lisp)/*/*.elc
247 # Compile Lisp files, but save old compiled files first.
249 compile: backup-compiled-files compile-files
251 # Recompile all Lisp files which are newer than their .elc files.
252 # Note that this doesn't create .elc files.  It only recompiles if an
253 # .elc is present.
255 recompile: doit
256         set EMACSLOADPATH=$(lisp)
257         $(SETLOADPATH) $(emacs) -f batch-byte-recompile-directory .
259 # Prepare a bootstrap in the lisp subdirectory.  Build loaddefs.el,
260 # because it's not sure it's up-to-date, and if it's not, that might
261 # lead to errors during the bootstrap because something fails to
262 # autoload as expected.  Remove compiled Lisp files so that
263 # bootstrap-emacs will be built from sources only.
265 # Need separate version for sh and native cmd.exe
266 bootstrap-clean: bootstrap-clean-$(SHELLTYPE)
268 bootstrap-clean-CMD:
269         if exist $(EMACS) $(MAKE) $(MFLAGS) autoloads
270         -for %f in ($(lisp) $(WINS)) do for %g in (%f\*.elc) do @$(DEL) %g
272 bootstrap-clean-SH:
273         if test -f $(EMACS); then $(MAKE) $(MFLAGS) autoloads; fi
274         -rm -f $(lisp)/*.elc $(lisp)/*/*.elc
276 # Generate/update files for the bootstrap process.
278 bootstrap: autoloads compile-files custom-deps
281 # Assuming INSTALL_DIR is defined, copy the elisp files to it
282 # Windows 95 makes this harder than it should be.
284 install:
285                 - mkdir "$(INSTALL_DIR)/lisp"
286                 - $(DEL) ../same-dir.tst
287                 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
288                 echo SameDirTest > "$(INSTALL_DIR)/same-dir.tst"
289 #ifdef COPY_LISP_SOURCE
290                 $(IFNOTSAMEDIR) $(CP_DIR) . "$(INSTALL_DIR)/lisp" $(ENDIF)
291 #else
292 #               $(IFNOTSAMEDIR) $(CP_DIR) *.elc "$(INSTALL_DIR)/lisp" $(ENDIF)
293 #               $(IFNOTSAMEDIR) $(CP) cus-load.el "$(INSTALL_DIR)/lisp" $(ENDIF)
294 #               $(IFNOTSAMEDIR) $(CP) forms*.el "$(INSTALL_DIR)/lisp" $(ENDIF)
295 #               $(IFNOTSAMEDIR) $(CP) patcomp.el "$(INSTALL_DIR)/lisp" $(ENDIF)
296 #               $(IFNOTSAMEDIR) $(CP) subdirs.el "$(INSTALL_DIR)/lisp" $(ENDIF)
297 #               $(IFNOTSAMEDIR) $(CP) version.el "$(INSTALL_DIR)/lisp" $(ENDIF)
298 #               $(IFNOTSAMEDIR) $(CP) mail/blessmail.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
299 #               $(IFNOTSAMEDIR) $(CP) mail/sc.el "$(INSTALL_DIR)/lisp/mail" $(ENDIF)
300 #               $(IFNOTSAMEDIR) $(CP) play/bruce.el "$(INSTALL_DIR)/lisp/play" $(ENDIF)
301 #               $(IFNOTSAMEDIR) $(CP) international/latin-*.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
302 #               $(IFNOTSAMEDIR) $(CP) international/mule-conf.el "$(INSTALL_DIR)/lisp/international" $(ENDIF)
303 #endif
304                 - $(DEL) ../same-dir.tst
305                 - $(DEL) "$(INSTALL_DIR)/same-dir.tst"
308 # Maintenance
310 clean:
311                 - $(DEL) *~