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