(make_lispy_event): Remember last wheel direction.
[bpt/emacs.git] / lib-src / makefile.w32-in
CommitLineData
bd6766d3 1# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
294981c7 2# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
f5d0ac07 3# 2008, 2009 Free Software Foundation, Inc.
294981c7
GM
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
7bbaaedd 20
d20f2a6a 21ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacsclient
7bbaaedd
AI
22
23.PHONY: $(ALL)
24
d7ae78c0 25VERSION = 23.1.50
ad456bcb 26
7bbaaedd 27LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
d19249e7 28 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
ba2d3968 29 -I../src
7bbaaedd 30
ad456bcb 31LIBS = $(BASE_LIBS) $(ADVAPI32)
7bbaaedd
AI
32
33$(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
34 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
35$(BLD)/hexl.exe: $(BLD)/hexl.$(O)
36 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
37$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
38 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
9781fb53
EZ
39$(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O)
40 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/sorted-doc.$(O) $(LIBS)
41$(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)
42 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/digest-doc.$(O) $(LIBS)
43$(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
44 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS)
7bbaaedd 45
1a8a626d
EZ
46make-docfile: stamp_BLD $(BLD)/make-docfile.exe
47ctags: stamp_BLD $(BLD)/ctags.exe
48etags: stamp_BLD $(BLD)/etags.exe
49ebrowse: stamp_BLD $(BLD)/ebrowse.exe
50hexl: stamp_BLD $(BLD)/hexl.exe
51movemail: stamp_BLD $(BLD)/movemail.exe
52fakemail: stamp_BLD $(BLD)/fakemail.exe
53sorted-doc: stamp_BLD $(BLD)/sorted-doc.exe
54digest-doc: stamp_BLD $(BLD)/digest-doc.exe
55emacsclient: stamp_BLD $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe
56
57test-distrib: stamp_BLD $(BLD)/test-distrib.exe
9781fb53 58 "$(BLD)/test-distrib.exe" "$(SRC)/testfile"
7bbaaedd
AI
59
60GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
61GETOPTDEPS = $(GETOPTOBJS) getopt.h
62MOVEMAILOBJS = $(BLD)/movemail.$(O) \
63 $(BLD)/pop.$(O) \
64 $(BLD)/ntlib.$(O) \
65 $(GETOPTOBJS)
66
67$(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h
68# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
69 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
70
ad456bcb 71ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR -DVERSION="\"$(VERSION)\""
d20f2a6a
JB
72ECLIENTOBJS = $(BLD)/emacsclient.$(O) \
73 $(BLD)/getopt.$(O) \
74 $(BLD)/getopt1.$(O) \
75 $(BLD)/ntlib.$(O)
4429f88c 76CLIENTRES = ../nt/$(BLD)/emacsclient.res
4d91c8f9 77
4429f88c
JR
78$(CLIENTRES): ../nt/emacsclient.rc
79 @echo Emacsclient resource file must be built from nt directory
80 @exit -1
d20f2a6a
JB
81
82$(BLD)/emacsclient.exe: $(ECLIENTOBJS)
83# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
2e2d2377 84 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
d20f2a6a 85
4429f88c 86$(BLD)/emacsclientw.exe: $(ECLIENTOBJS) $(CLIENTRES)
ba2d3968 87# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
4429f88c 88 $(LINK) $(LINK_OUT)$@ $(CLIENTRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
ba2d3968 89
4041a5e6
EZ
90# emacsclient.$(O) depends on makefile.w32-in because makefile.w32-in
91# can be edited to define VERSION string, which is part of ECLIENT_CFLAGS.
92$(BLD)/emacsclient.$(O): emacsclient.c makefile.w32-in
8357b759 93 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c
d20f2a6a 94
7bbaaedd
AI
95ETAGSOBJ = $(BLD)/etags.$(O) \
96 $(BLD)/getopt.$(O) \
97 $(BLD)/getopt1.$(O) \
98 $(BLD)/ntlib.$(O) \
99 $(BLD)/regex.$(O)
100
101$(BLD)/etags.exe: $(ETAGSOBJ)
102 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
103
104
d19249e7 105EBROWSEOBJ = $(BLD)/ebrowse.$(O) \
ba2d3968
JB
106 $(BLD)/getopt.$(O) \
107 $(BLD)/getopt1.$(O) \
108 $(BLD)/ntlib.$(O)
d19249e7
JR
109
110$(BLD)/ebrowse.exe: $(EBROWSEOBJ)
88257bc8 111 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
d19249e7 112
7bbaaedd
AI
113$(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
114 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
115 ../src/regex.c $(CC_OUT)$@
116
117ETAGS_CFLAGS = -DHAVE_GETCWD
118$(BLD)/etags.$(O): etags.c
119 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
120
121CTAGSOBJ = $(BLD)/ctags.$(O) \
122 $(BLD)/getopt.$(O) \
123 $(BLD)/getopt1.$(O) \
124 $(BLD)/ntlib.$(O) \
125 $(BLD)/regex.$(O)
126
127$(BLD)/ctags.exe: $(CTAGSOBJ)
128 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
129
130ctags.c: etags.c
131 - $(DEL) ctags.c
132 $(CP) etags.c ctags.c
133
134CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
135$(BLD)/ctags.$(O): ctags.c
136 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
137
7bbaaedd 138#
3cf5c994
JD
139# From ..\src\Makefile.in
140# It doesn't matter if the real name is *.obj for the files in this list,
141# make-docfile blindly replaces .o with .c anyway. Keep .o in this list
142# as it is required by code in doc.c.
7bbaaedd 143#
f23d76bd 144obj = dosfns.o msdos.o \
eccfc782 145 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
9e2a2647 146 fontset.o \
c9fc02c7 147 w32.o w32console.o w32fns.o w32heap.o w32inevt.o \
3cf5c994 148 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
eccfc782 149 font.o w32font.o \
3cf5c994 150 dispnew.o frame.o scroll.o xdisp.o window.o \
eccfc782
JR
151 charset.o coding.o category.o ccl.o character.o chartab.o \
152 cm.o term.o terminal.o xfaces.o \
3cf5c994
JD
153 emacs.o keyboard.o macros.o keymap.o sysdep.o \
154 buffer.o filelock.o insdel.o marker.o \
155 minibuf.o fileio.o dired.o filemode.o \
156 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
157 alloc.o data.o doc.o editfns.o callint.o \
158 eval.o floatfns.o fns.o print.o lread.o \
a2666217 159 syntax.o bytecode.o \
3cf5c994
JD
160 process.o callproc.o \
161 region-cache.o sound.o atimer.o \
162 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o
163
7bbaaedd
AI
164#
165# These are the lisp files that are loaded up in loadup.el
166#
167lispsource = ../lisp/
168
a40c6a08
JR
169MOUSE_SUPPORT = \
170 $(lispsource)select.elc \
171 $(lispsource)scroll-bar.elc \
79d48c1a 172 $(lispsource)mouse.elc
a40c6a08
JR
173WINNT_SUPPORT = \
174 $(lispsource)ls-lisp.elc \
175 $(lispsource)disp-table.elc \
176 $(lispsource)w32-fns.elc \
177 $(lispsource)dos-w32.elc \
178 $(lispsource)w32-vars.elc \
f2d6b714 179 $(lispsource)term/common-win.elc \
a40c6a08 180 $(lispsource)term/w32-win.elc
a40c6a08
JR
181TOOLTIP_SUPPORT = $(lispsource)tooltip.elc
182WINDOW_SUPPORT = \
183 $(lispsource)fringe.elc \
184 $(lispsource)image.elc \
185 $(lispsource)international/fontset.elc \
186 $(lispsource)dnd.elc \
187 $(lispsource)tool-bar.elc \
188 $(lispsource)mwheel.elc
7bbaaedd 189
79d48c1a
JR
190# lisp files that are loaded up on other platforms
191OTHER_PLATFORM_SUPPORT = \
192 $(lispsource)dos-fns.elc \
193 $(lispsource)dos-vars.elc \
79d48c1a
JR
194 $(lispsource)x-dnd.elc \
195 $(lispsource)term/x-win.elc
196
197
83a9c0b2 198lisp1= \
7f379e5b
JR
199 $(lispsource)abbrev.elc \
200 $(lispsource)buff-menu.elc \
e63e8d3e 201 $(lispsource)button.elc \
8dc48ef0 202 $(lispsource)emacs-lisp/byte-run.elc \
0c55bf82 203 $(lispsource)composite.elc \
98d926f2 204 $(lispsource)cus-face.elc \
7f379e5b
JR
205 $(lispsource)cus-start.elc \
206 $(lispsource)custom.elc \
dd87b4cc 207 $(lispsource)emacs-lisp/backquote.elc \
7f379e5b
JR
208 $(lispsource)emacs-lisp/lisp-mode.elc \
209 $(lispsource)emacs-lisp/lisp.elc \
a40c6a08 210 $(lispsource)env.elc \
98d926f2
EZ
211 $(lispsource)faces.elc \
212 $(lispsource)files.elc \
98d926f2 213 $(lispsource)format.elc \
a40c6a08
JR
214 $(lispsource)facemenu.elc \
215 $(MOUSE_SUPPORT) \
216 $(lispsource)emacs-lisp/float-sup.elc \
8dc48ef0 217 $(lispsource)frame.elc \
7f379e5b
JR
218 $(lispsource)help.elc \
219 $(lispsource)indent.elc \
220 $(lispsource)isearch.elc \
98d926f2 221 $(lispsource)rfn-eshadow.elc \
7bbaaedd
AI
222 $(lispsource)loadup.el \
223 $(lispsource)loaddefs.el \
7f379e5b 224 $(lispsource)bindings.elc \
8dc48ef0 225 $(lispsource)emacs-lisp/map-ynp.elc \
a40c6a08 226 $(lispsource)menu-bar.elc \
7f379e5b 227 $(lispsource)international/mule.elc \
7bbaaedd 228 $(lispsource)international/mule-conf.el \
7f379e5b
JR
229 $(lispsource)international/mule-cmds.elc \
230 $(lispsource)international/characters.elc \
a40c6a08 231 $(lispsource)international/charprop.el \
83a9c0b2
JR
232 $(lispsource)case-table.elc
233
234lisp2 = \
a40c6a08
JR
235 $(lispsource)language/chinese.el \
236 $(lispsource)language/cyrillic.el \
237 $(lispsource)language/indian.el \
9c61c734 238 $(lispsource)language/sinhala.el \
76054cc8 239 $(lispsource)language/english.el \
7f379e5b
JR
240 $(lispsource)language/ethiopic.elc \
241 $(lispsource)language/european.elc \
76054cc8
AI
242 $(lispsource)language/czech.el \
243 $(lispsource)language/slovak.el \
244 $(lispsource)language/romanian.el \
245 $(lispsource)language/greek.el \
246 $(lispsource)language/hebrew.el \
76054cc8
AI
247 $(lispsource)language/japanese.el \
248 $(lispsource)language/korean.el \
249 $(lispsource)language/lao.el \
79d48c1a 250 $(lispsource)language/cham.el \
a40c6a08 251 $(lispsource)language/tai-viet.el \
76054cc8 252 $(lispsource)language/thai.el \
7f379e5b 253 $(lispsource)language/tibetan.elc \
a40c6a08 254 $(lispsource)language/vietnamese.el \
76054cc8 255 $(lispsource)language/misc-lang.el \
7f379e5b
JR
256 $(lispsource)language/utf-8-lang.el \
257 $(lispsource)language/georgian.el \
79d48c1a
JR
258 $(lispsource)language/khmer.el \
259 $(lispsource)language/burmese.el \
7bbaaedd 260 $(lispsource)paths.el \
7f379e5b
JR
261 $(lispsource)register.elc \
262 $(lispsource)replace.elc \
263 $(lispsource)simple.elc \
01b996ad 264 $(lispsource)minibuffer.elc \
7f379e5b
JR
265 $(lispsource)startup.elc \
266 $(lispsource)subr.elc \
267 $(lispsource)term/tty-colors.elc \
7a8940da 268 $(lispsource)font-core.elc \
98d926f2
EZ
269 $(lispsource)emacs-lisp/syntax.elc \
270 $(lispsource)font-lock.elc \
271 $(lispsource)jit-lock.elc \
7f379e5b
JR
272 $(lispsource)textmodes/fill.elc \
273 $(lispsource)textmodes/page.elc \
274 $(lispsource)textmodes/paragraphs.elc \
275 $(lispsource)textmodes/text-mode.elc \
98d926f2 276 $(lispsource)emacs-lisp/timer.elc \
98d926f2 277 $(lispsource)jka-cmpr-hook.elc \
a40c6a08 278 $(lispsource)vc-hooks.elc \
7f379e5b 279 $(lispsource)ediff-hook.elc \
86914123 280 $(lispsource)epa-hook.elc \
a40c6a08 281 $(TOOLTIP_SUPPORT) \
7bbaaedd 282 $(WINNT_SUPPORT) \
a40c6a08 283 $(WINDOW_SUPPORT) \
7f379e5b
JR
284 $(lispsource)widget.elc \
285 $(lispsource)window.elc \
7bbaaedd
AI
286 $(lispsource)version.el
287
3b57ab8f
EZ
288# This is needed the first time we build the tree, since temacs.exe
289# does not exist yet, and the DOC rule needs it to rebuild DOC whenever
290# Emacs is rebuilt.
291../src/$(BLD)/temacs.exe:
292 - mkdir "../src/$(OBJDIR)"
293 - mkdir "../src/$(BLD)"
294 @echo temacs > temacs.exe
295 $(CP) temacs.exe ../src/$(BLD)
296 - $(DEL) temacs.exe
7bbaaedd 297
52402e4f 298DOC = DOC
79d48c1a 299$(DOC): stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2) $(OTHER_PLATFORM_SUPPORT)
7bbaaedd 300 - $(DEL) $(DOC)
cf6d30d7 301 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
83a9c0b2
JR
302 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
303 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
79d48c1a 304 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(OTHER_PLATFORM_SUPPORT)
7bbaaedd
AI
305 $(CP) $(DOC) ../etc/DOC-X
306 - mkdir "../src/$(OBJDIR)"
307 - mkdir "../src/$(OBJDIR)/etc"
308 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
309
310{$(BLD)}.$(O){$(BLD)}.exe:
311 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
312
313#
314# Build the executables
315#
1a8a626d 316all: stamp_BLD $(ALL) $(DOC)
7bbaaedd
AI
317
318#
319# Assuming INSTALL_DIR is defined, build and install emacs in it.
320#
321INSTALL_FILES = $(ALL)
322install: $(INSTALL_FILES)
323 - mkdir "$(INSTALL_DIR)/bin"
324 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
88257bc8 325 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
7bbaaedd
AI
326 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
327 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
328 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
9781fb53
EZ
329 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin
330 $(CP) $(BLD)/digest-doc.exe $(INSTALL_DIR)/bin
d20f2a6a 331 $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin
ba2d3968 332 $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin
7bbaaedd
AI
333 - mkdir "$(INSTALL_DIR)/etc"
334 $(CP) $(DOC) $(INSTALL_DIR)/etc
335
336#
337# Maintenance
52402e4f 338#
9724908a
EZ
339# We used to delete *~ here, but that might inadvertently remove
340# precious files if it happens to match their short 8+3 aliases.
7bbaaedd 341clean:
9724908a 342 - $(DEL) DOC* $(COMPILER_TEMP_FILES)
7bbaaedd 343 - $(DEL) ctags.c
d238808a 344 - $(DEL) getopt.h
7bbaaedd 345 - $(DEL_TREE) $(OBJDIR)
e313b518 346 - $(DEL) stamp_BLD
7bbaaedd 347
6948400c
JR
348distclean: cleanall
349 - $(DEL) TAGS
350 - $(DEL) Makefile
351
352maintainer-clean: distclean
353
7bbaaedd
AI
354cleanall: clean
355 - $(DEL_TREE) obj
356 - $(DEL_TREE) obj-spd
357 - $(DEL_TREE) oo
358 - $(DEL_TREE) oo-spd
359
360#
361# Headers we would preprocess if we could.
362#
363../src/config.h: ../nt/$(CONFIG_H)
70846e2a 364 echo $(CONFIG_H) has changed. Re-run configure.bat.
df1b2142
JR
365 exit -1
366
d238808a
JB
367getopt.h: getopt_.h
368 $(CP) $(ALL_DEPS) $@
7bbaaedd
AI
369
370### DEPENDENCIES ###
371
372EMACS_ROOT = ..
373SRC = .
374
375$(BLD)/alloca.$(O) : \
376 $(SRC)/alloca.c \
377 $(EMACS_ROOT)/src/s/ms-w32.h \
378 $(EMACS_ROOT)/src/m/intel386.h \
379 $(EMACS_ROOT)/src/config.h \
380 $(EMACS_ROOT)/src/blockinput.h
381
382$(BLD)/b2m.$(O) : \
383 $(SRC)/b2m.c \
384 $(EMACS_ROOT)/src/s/ms-w32.h \
385 $(EMACS_ROOT)/src/m/intel386.h \
386 $(EMACS_ROOT)/lib-src/../src/config.h
387
388$(BLD)/ctags.$(O) : \
389 $(SRC)/ctags.c \
390 $(EMACS_ROOT)/nt/inc/sys/param.h \
391 $(EMACS_ROOT)/src/s/ms-w32.h \
392 $(EMACS_ROOT)/src/m/intel386.h \
393 $(EMACS_ROOT)/lib-src/../src/config.h \
394 $(SRC)/ntlib.h \
395 $(SRC)/getopt.h
396
7bbaaedd
AI
397$(BLD)/digest-doc.$(O) : \
398 $(SRC)/digest-doc.c
399
400$(BLD)/emacsclient.$(O) : \
401 $(SRC)/emacsclient.c \
402 $(EMACS_ROOT)/src/s/ms-w32.h \
403 $(EMACS_ROOT)/src/m/intel386.h \
404 $(EMACS_ROOT)/lib-src/../src/config.h
405
7bbaaedd
AI
406$(BLD)/etags.$(O) : \
407 $(SRC)/etags.c \
408 $(EMACS_ROOT)/nt/inc/sys/param.h \
409 $(EMACS_ROOT)/src/s/ms-w32.h \
410 $(EMACS_ROOT)/src/m/intel386.h \
411 $(EMACS_ROOT)/lib-src/../src/config.h \
412 $(SRC)/ntlib.h \
413 $(SRC)/getopt.h
414
415$(BLD)/fakemail.$(O) : \
416 $(SRC)/fakemail.c \
417 $(SRC)/ntlib.h \
418 $(EMACS_ROOT)/src/s/ms-w32.h \
419 $(EMACS_ROOT)/src/m/intel386.h \
420 $(EMACS_ROOT)/lib-src/../src/config.h \
421 $(EMACS_ROOT)/nt/inc/pwd.h
422
423$(BLD)/getdate.$(O) : \
424 $(SRC)/getdate.c \
425 $(EMACS_ROOT)/src/s/ms-w32.h \
426 $(EMACS_ROOT)/src/m/intel386.h \
427 $(EMACS_ROOT)/src/config.h \
428 $(MSTOOLS_SYS)/types.h
429
430$(BLD)/getopt.$(O) : \
431 $(SRC)/getopt.c \
432 $(EMACS_ROOT)/src/s/ms-w32.h \
433 $(EMACS_ROOT)/src/m/intel386.h \
434 $(EMACS_ROOT)/src/config.h \
435 $(SRC)/ntlib.h \
436 $(SRC)/getopt.h
437
438$(BLD)/getopt1.$(O) : \
439 $(SRC)/getopt1.c \
440 $(EMACS_ROOT)/src/s/ms-w32.h \
441 $(EMACS_ROOT)/src/m/intel386.h \
442 $(EMACS_ROOT)/src/config.h \
443 $(SRC)/getopt.h
444
445$(BLD)/hexl.$(O) : \
446 $(SRC)/hexl.c
447
448$(BLD)/leditcfns.$(O) : \
449 $(SRC)/leditcfns.c
450
451$(BLD)/make-docfile.$(O) : \
452 $(SRC)/make-docfile.c \
453 $(EMACS_ROOT)/src/config.h
454
455$(BLD)/make-path.$(O) : \
456 $(SRC)/make-path.c
457
458$(BLD)/movemail.$(O) : \
459 $(SRC)/movemail.c \
460 $(EMACS_ROOT)/src/s/ms-w32.h \
461 $(EMACS_ROOT)/src/m/intel386.h \
462 $(EMACS_ROOT)/lib-src/../src/config.h \
463 $(EMACS_ROOT)/nt/inc/sys/file.h \
7bbaaedd
AI
464 $(EMACS_ROOT)/lib-src/../src/syswait.h \
465 $(EMACS_ROOT)/nt/inc/pwd.h \
466 $(SRC)/ntlib.h
ba2d3968 467 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
7bbaaedd
AI
468
469$(BLD)/ntlib.$(O) : \
470 $(SRC)/ntlib.c \
471 $(SRC)/ntlib.h \
472 $(EMACS_ROOT)/nt/inc/pwd.h
473
474$(BLD)/pop.$(O) : \
475 $(SRC)/pop.c \
476 $(SRC)/pop.h \
477 $(SRC)/ntlib.h
478
479$(BLD)/profile.$(O) : \
480 $(SRC)/profile.c \
481 $(EMACS_ROOT)/src/s/ms-w32.h \
482 $(EMACS_ROOT)/src/m/intel386.h \
483 $(EMACS_ROOT)/lib-src/../src/config.h \
7bbaaedd
AI
484 $(EMACS_ROOT)/lib-src/../src/systime.h
485
486$(BLD)/qsort.$(O) : \
487 $(SRC)/qsort.c
488
489$(BLD)/sorted-doc.$(O) : \
9781fb53
EZ
490 $(SRC)/sorted-doc.c \
491 $(EMACS_ROOT)/src/s/ms-w32.h \
492 $(EMACS_ROOT)/src/m/intel386.h \
f8baa639 493 $(EMACS_ROOT)/src/config.h
7bbaaedd
AI
494
495$(BLD)/tcp.$(O) : \
496 $(SRC)/tcp.c
497
498$(BLD)/test-distrib.$(O) : \
499 $(SRC)/test-distrib.c
500
501$(BLD)/timer.$(O) : \
502 $(SRC)/timer.c \
503 $(EMACS_ROOT)/src/s/ms-w32.h \
504 $(EMACS_ROOT)/src/m/intel386.h \
505 $(EMACS_ROOT)/lib-src/../src/config.h
1a8a626d
EZ
506
507# The following dependencies are for supporting parallel builds, where
508# we must make sure $(BLD) exists before any compilation starts.
509#
510$(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O): stamp_BLD
511
512$(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O): stamp_BLD
513
514$(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS): stamp_BLD
515
516$(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O): stamp_BLD
517
518$(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O): stamp_BLD