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