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