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