(Watch Expressions): Mention SPC for expanding/contracting watch expressions.
[bpt/emacs.git] / lib-src / makefile.w32-in
CommitLineData
bd6766d3 1# -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
92b47a4a 2# Copyright (C) 2000, 2001, 2002, 2003, 2004,
273dc16a 3# 2005, 2006 Free Software Foundation, Inc.
7bbaaedd
AI
4#
5# This file is part of GNU Emacs.
52402e4f 6#
7bbaaedd
AI
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.
52402e4f 11#
7bbaaedd
AI
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.
52402e4f 16#
7bbaaedd
AI
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
364c38d3
LK
19# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20# Boston, MA 02110-1301, USA.
7bbaaedd
AI
21#
22
d20f2a6a 23ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacsclient
7bbaaedd
AI
24
25.PHONY: $(ALL)
26
ad456bcb
JB
27VERSION = 22.0.91
28
7bbaaedd 29LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
d19249e7 30 -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
ba2d3968 31 -I../src
7bbaaedd 32
ad456bcb 33LIBS = $(BASE_LIBS) $(ADVAPI32)
7bbaaedd
AI
34
35$(BLD)/make-docfile.exe: $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O)
36 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/make-docfile.$(O) $(BLD)/ntlib.$(O) $(LIBS)
37$(BLD)/hexl.exe: $(BLD)/hexl.$(O)
38 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
39$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
40 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
9781fb53
EZ
41$(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O)
42 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/sorted-doc.$(O) $(LIBS)
43$(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)
44 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/digest-doc.$(O) $(LIBS)
45$(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
46 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS)
7bbaaedd
AI
47
48make-docfile: $(BLD) $(BLD)/make-docfile.exe
49ctags: $(BLD) $(BLD)/ctags.exe
50etags: $(BLD) $(BLD)/etags.exe
d19249e7 51ebrowse: $(BLD) $(BLD)/ebrowse.exe
7bbaaedd
AI
52hexl: $(BLD) $(BLD)/hexl.exe
53movemail: $(BLD) $(BLD)/movemail.exe
54fakemail: $(BLD) $(BLD)/fakemail.exe
9781fb53
EZ
55sorted-doc: $(BLD) $(BLD)/sorted-doc.exe
56digest-doc: $(BLD) $(BLD)/digest-doc.exe
ba2d3968 57emacsclient: $(BLD) $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe
9781fb53
EZ
58
59test-distrib: $(BLD) $(BLD)/test-distrib.exe
60 "$(BLD)/test-distrib.exe" "$(SRC)/testfile"
7bbaaedd
AI
61
62GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
63GETOPTDEPS = $(GETOPTOBJS) getopt.h
64MOVEMAILOBJS = $(BLD)/movemail.$(O) \
65 $(BLD)/pop.$(O) \
66 $(BLD)/ntlib.$(O) \
67 $(GETOPTOBJS)
68
69$(BLD)/movemail.exe: $(MOVEMAILOBJS) getopt.h
70# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
71 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(MOVEMAILOBJS) $(WSOCK32) $(LIBS)
72
ad456bcb 73ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR -DVERSION="\"$(VERSION)\""
d20f2a6a
JB
74ECLIENTOBJS = $(BLD)/emacsclient.$(O) \
75 $(BLD)/getopt.$(O) \
76 $(BLD)/getopt1.$(O) \
77 $(BLD)/ntlib.$(O)
78
79$(BLD)/emacsclient.exe: $(ECLIENTOBJS)
80# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
81 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(LIBS)
82
ba2d3968
JB
83$(BLD)/emacsclientw.exe: $(ECLIENTOBJS)
84# put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
85 $(LINK) $(LINK_OUT)$@ -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(LIBS)
86
d20f2a6a 87$(BLD)/emacsclient.$(O): emacsclient.c
8357b759 88 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c
d20f2a6a 89
7bbaaedd
AI
90ETAGSOBJ = $(BLD)/etags.$(O) \
91 $(BLD)/getopt.$(O) \
92 $(BLD)/getopt1.$(O) \
93 $(BLD)/ntlib.$(O) \
94 $(BLD)/regex.$(O)
95
96$(BLD)/etags.exe: $(ETAGSOBJ)
97 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
98
99
d19249e7 100EBROWSEOBJ = $(BLD)/ebrowse.$(O) \
ba2d3968
JB
101 $(BLD)/getopt.$(O) \
102 $(BLD)/getopt1.$(O) \
103 $(BLD)/ntlib.$(O)
d19249e7
JR
104
105$(BLD)/ebrowse.exe: $(EBROWSEOBJ)
88257bc8 106 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
d19249e7 107
7bbaaedd
AI
108$(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
109 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
110 ../src/regex.c $(CC_OUT)$@
111
112ETAGS_CFLAGS = -DHAVE_GETCWD
113$(BLD)/etags.$(O): etags.c
114 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
115
116CTAGSOBJ = $(BLD)/ctags.$(O) \
117 $(BLD)/getopt.$(O) \
118 $(BLD)/getopt1.$(O) \
119 $(BLD)/ntlib.$(O) \
120 $(BLD)/regex.$(O)
121
122$(BLD)/ctags.exe: $(CTAGSOBJ)
123 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
124
125ctags.c: etags.c
126 - $(DEL) ctags.c
127 $(CP) etags.c ctags.c
128
129CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
130$(BLD)/ctags.$(O): ctags.c
131 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
132
7bbaaedd 133#
3cf5c994
JD
134# From ..\src\Makefile.in
135# It doesn't matter if the real name is *.obj for the files in this list,
136# make-docfile blindly replaces .o with .c anyway. Keep .o in this list
137# as it is required by code in doc.c.
7bbaaedd 138#
3cf5c994
JD
139obj= sunfns.o dosfns.o msdos.o \
140 xterm.o xfns.o xmenu.o xselect.o xrdb.o fringe.o image.o \
141 mac.o macterm.o macfns.o macmenu.o fontset.o \
142 w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \
143 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o \
144 dispnew.o frame.o scroll.o xdisp.o window.o \
145 charset.o coding.o category.o ccl.o \
146 cm.o term.o xfaces.o \
147 emacs.o keyboard.o macros.o keymap.o sysdep.o \
148 buffer.o filelock.o insdel.o marker.o \
149 minibuf.o fileio.o dired.o filemode.o \
150 cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
151 alloc.o data.o doc.o editfns.o callint.o \
152 eval.o floatfns.o fns.o print.o lread.o \
153 abbrev.o syntax.o bytecode.o \
154 process.o callproc.o \
155 region-cache.o sound.o atimer.o \
156 doprnt.o strftime.o intervals.o textprop.o composite.o md5.o
157
7bbaaedd
AI
158#
159# These are the lisp files that are loaded up in loadup.el
160#
161lispsource = ../lisp/
162
98d926f2 163MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc $(lispsource)tooltip.elc
7f379e5b
JR
164WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)disp-table.elc $(lispsource)w32-fns.elc $(lispsource)dos-w32.elc $(lispsource)w32-vars.elc
165
166# lisp files that are loaded up on other platforms
167MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc
168VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc
7bbaaedd 169
83a9c0b2 170lisp1= \
7f379e5b
JR
171 $(lispsource)abbrev.elc \
172 $(lispsource)buff-menu.elc \
e63e8d3e 173 $(lispsource)button.elc \
8dc48ef0 174 $(lispsource)emacs-lisp/byte-run.elc \
98d926f2 175 $(lispsource)cus-face.elc \
7f379e5b
JR
176 $(lispsource)cus-start.elc \
177 $(lispsource)custom.elc \
dd87b4cc 178 $(lispsource)emacs-lisp/backquote.elc \
7f379e5b
JR
179 $(lispsource)emacs-lisp/lisp-mode.elc \
180 $(lispsource)emacs-lisp/lisp.elc \
7f379e5b 181 $(lispsource)facemenu.elc \
7bbaaedd 182 $(MOUSE_SUPPORT) \
98d926f2
EZ
183 $(lispsource)faces.elc \
184 $(lispsource)files.elc \
8dc48ef0 185 $(lispsource)emacs-lisp/float-sup.elc \
98d926f2 186 $(lispsource)format.elc \
8dc48ef0 187 $(lispsource)frame.elc \
7f379e5b
JR
188 $(lispsource)help.elc \
189 $(lispsource)indent.elc \
190 $(lispsource)isearch.elc \
98d926f2 191 $(lispsource)rfn-eshadow.elc \
7bbaaedd
AI
192 $(lispsource)loadup.el \
193 $(lispsource)loaddefs.el \
7f379e5b 194 $(lispsource)bindings.elc \
8dc48ef0 195 $(lispsource)emacs-lisp/map-ynp.elc \
98d926f2 196 $(lispsource)env.elc \
7f379e5b 197 $(lispsource)international/mule.elc \
7bbaaedd 198 $(lispsource)international/mule-conf.el \
7f379e5b
JR
199 $(lispsource)international/mule-cmds.elc \
200 $(lispsource)international/characters.elc \
7a8940da 201 $(lispsource)international/ucs-tables.elc \
7f379e5b 202 $(lispsource)international/utf-8.elc \
98d926f2 203 $(lispsource)international/utf-16.elc \
7f379e5b
JR
204 $(lispsource)international/latin-1.el \
205 $(lispsource)international/latin-2.el \
206 $(lispsource)international/latin-3.el \
207 $(lispsource)international/latin-4.el \
208 $(lispsource)international/latin-5.el \
209 $(lispsource)international/latin-8.el \
210 $(lispsource)international/latin-9.el \
d9d2ac69 211 $(lispsource)fringe.elc \
4c27dbc4
EZ
212 $(lispsource)image.elc \
213 $(lispsource)international/fontset.elc \
214 $(lispsource)dnd.elc \
215 $(lispsource)mwheel.elc \
216 $(lispsource)tool-bar.elc \
83a9c0b2
JR
217 $(lispsource)case-table.elc
218
219lisp2 = \
7f379e5b
JR
220 $(lispsource)language/chinese.elc \
221 $(lispsource)language/cyrillic.elc \
222 $(lispsource)language/indian.elc \
52402e4f 223 $(lispsource)language/devanagari.el \
98d926f2 224 $(lispsource)language/kannada.el \
0a0dc511
JB
225 $(lispsource)language/malayalam.el \
226 $(lispsource)language/tamil.el \
76054cc8 227 $(lispsource)language/english.el \
7f379e5b
JR
228 $(lispsource)language/ethiopic.elc \
229 $(lispsource)language/european.elc \
76054cc8
AI
230 $(lispsource)language/czech.el \
231 $(lispsource)language/slovak.el \
232 $(lispsource)language/romanian.el \
233 $(lispsource)language/greek.el \
234 $(lispsource)language/hebrew.el \
76054cc8
AI
235 $(lispsource)language/japanese.el \
236 $(lispsource)language/korean.el \
237 $(lispsource)language/lao.el \
238 $(lispsource)language/thai.el \
7f379e5b
JR
239 $(lispsource)language/tibetan.elc \
240 $(lispsource)language/vietnamese.elc \
76054cc8 241 $(lispsource)language/misc-lang.el \
7f379e5b
JR
242 $(lispsource)language/utf-8-lang.el \
243 $(lispsource)language/georgian.el \
98d926f2 244 $(lispsource)menu-bar.elc \
7bbaaedd 245 $(lispsource)paths.el \
7f379e5b
JR
246 $(lispsource)register.elc \
247 $(lispsource)replace.elc \
248 $(lispsource)simple.elc \
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 \
7f379e5b 261 $(lispsource)vc-hooks.elc \
98d926f2 262 $(lispsource)jka-cmpr-hook.elc \
7f379e5b 263 $(lispsource)ediff-hook.elc \
7bbaaedd
AI
264 $(VMS_SUPPORT) \
265 $(MSDOS_SUPPORT) \
266 $(WINNT_SUPPORT) \
7f379e5b
JR
267 $(lispsource)widget.elc \
268 $(lispsource)window.elc \
7bbaaedd
AI
269 $(lispsource)version.el
270
3b57ab8f
EZ
271# This is needed the first time we build the tree, since temacs.exe
272# does not exist yet, and the DOC rule needs it to rebuild DOC whenever
273# Emacs is rebuilt.
274../src/$(BLD)/temacs.exe:
275 - mkdir "../src/$(OBJDIR)"
276 - mkdir "../src/$(BLD)"
277 @echo temacs > temacs.exe
278 $(CP) temacs.exe ../src/$(BLD)
279 - $(DEL) temacs.exe
7bbaaedd 280
52402e4f 281DOC = DOC
cb6ccbc9 282$(DOC): $(BLD) $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2)
7bbaaedd 283 - $(DEL) $(DOC)
cf6d30d7 284 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
83a9c0b2
JR
285 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
286 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
7bbaaedd
AI
287 $(CP) $(DOC) ../etc/DOC-X
288 - mkdir "../src/$(OBJDIR)"
289 - mkdir "../src/$(OBJDIR)/etc"
290 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
291
292{$(BLD)}.$(O){$(BLD)}.exe:
293 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
294
295#
296# Build the executables
297#
298all: $(BLD) $(ALL) $(DOC)
299
300#
301# Assuming INSTALL_DIR is defined, build and install emacs in it.
302#
303INSTALL_FILES = $(ALL)
304install: $(INSTALL_FILES)
305 - mkdir "$(INSTALL_DIR)/bin"
306 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
88257bc8 307 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
7bbaaedd
AI
308 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
309 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
310 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
9781fb53
EZ
311 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin
312 $(CP) $(BLD)/digest-doc.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#
7bbaaedd 321clean:
5cdd7eef 322 - $(DEL) *~ DOC* $(COMPILER_TEMP_FILES)
7bbaaedd 323 - $(DEL) ctags.c
d238808a 324 - $(DEL) getopt.h
7bbaaedd
AI
325 - $(DEL_TREE) $(OBJDIR)
326
327cleanall: clean
328 - $(DEL_TREE) obj
329 - $(DEL_TREE) obj-spd
330 - $(DEL_TREE) oo
331 - $(DEL_TREE) oo-spd
332
333#
334# Headers we would preprocess if we could.
335#
336../src/config.h: ../nt/$(CONFIG_H)
70846e2a 337 echo $(CONFIG_H) has changed. Re-run configure.bat.
df1b2142
JR
338 exit -1
339
d238808a
JB
340getopt.h: getopt_.h
341 $(CP) $(ALL_DEPS) $@
7bbaaedd
AI
342
343### DEPENDENCIES ###
344
345EMACS_ROOT = ..
346SRC = .
347
348$(BLD)/alloca.$(O) : \
349 $(SRC)/alloca.c \
350 $(EMACS_ROOT)/src/s/ms-w32.h \
351 $(EMACS_ROOT)/src/m/intel386.h \
352 $(EMACS_ROOT)/src/config.h \
353 $(EMACS_ROOT)/src/blockinput.h
354
355$(BLD)/b2m.$(O) : \
356 $(SRC)/b2m.c \
357 $(EMACS_ROOT)/src/s/ms-w32.h \
358 $(EMACS_ROOT)/src/m/intel386.h \
359 $(EMACS_ROOT)/lib-src/../src/config.h
360
361$(BLD)/ctags.$(O) : \
362 $(SRC)/ctags.c \
363 $(EMACS_ROOT)/nt/inc/sys/param.h \
364 $(EMACS_ROOT)/src/s/ms-w32.h \
365 $(EMACS_ROOT)/src/m/intel386.h \
366 $(EMACS_ROOT)/lib-src/../src/config.h \
367 $(SRC)/ntlib.h \
368 $(SRC)/getopt.h
369
7bbaaedd
AI
370$(BLD)/digest-doc.$(O) : \
371 $(SRC)/digest-doc.c
372
373$(BLD)/emacsclient.$(O) : \
374 $(SRC)/emacsclient.c \
375 $(EMACS_ROOT)/src/s/ms-w32.h \
376 $(EMACS_ROOT)/src/m/intel386.h \
377 $(EMACS_ROOT)/lib-src/../src/config.h
378
7bbaaedd
AI
379$(BLD)/etags.$(O) : \
380 $(SRC)/etags.c \
381 $(EMACS_ROOT)/nt/inc/sys/param.h \
382 $(EMACS_ROOT)/src/s/ms-w32.h \
383 $(EMACS_ROOT)/src/m/intel386.h \
384 $(EMACS_ROOT)/lib-src/../src/config.h \
385 $(SRC)/ntlib.h \
386 $(SRC)/getopt.h
387
388$(BLD)/fakemail.$(O) : \
389 $(SRC)/fakemail.c \
390 $(SRC)/ntlib.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 $(EMACS_ROOT)/nt/inc/pwd.h
395
396$(BLD)/getdate.$(O) : \
397 $(SRC)/getdate.c \
398 $(EMACS_ROOT)/src/s/ms-w32.h \
399 $(EMACS_ROOT)/src/m/intel386.h \
400 $(EMACS_ROOT)/src/config.h \
401 $(MSTOOLS_SYS)/types.h
402
403$(BLD)/getopt.$(O) : \
404 $(SRC)/getopt.c \
405 $(EMACS_ROOT)/src/s/ms-w32.h \
406 $(EMACS_ROOT)/src/m/intel386.h \
407 $(EMACS_ROOT)/src/config.h \
408 $(SRC)/ntlib.h \
409 $(SRC)/getopt.h
410
411$(BLD)/getopt1.$(O) : \
412 $(SRC)/getopt1.c \
413 $(EMACS_ROOT)/src/s/ms-w32.h \
414 $(EMACS_ROOT)/src/m/intel386.h \
415 $(EMACS_ROOT)/src/config.h \
416 $(SRC)/getopt.h
417
418$(BLD)/hexl.$(O) : \
419 $(SRC)/hexl.c
420
421$(BLD)/leditcfns.$(O) : \
422 $(SRC)/leditcfns.c
423
424$(BLD)/make-docfile.$(O) : \
425 $(SRC)/make-docfile.c \
426 $(EMACS_ROOT)/src/config.h
427
428$(BLD)/make-path.$(O) : \
429 $(SRC)/make-path.c
430
431$(BLD)/movemail.$(O) : \
432 $(SRC)/movemail.c \
433 $(EMACS_ROOT)/src/s/ms-w32.h \
434 $(EMACS_ROOT)/src/m/intel386.h \
435 $(EMACS_ROOT)/lib-src/../src/config.h \
436 $(EMACS_ROOT)/nt/inc/sys/file.h \
7bbaaedd
AI
437 $(EMACS_ROOT)/lib-src/../src/syswait.h \
438 $(EMACS_ROOT)/nt/inc/pwd.h \
439 $(SRC)/ntlib.h
ba2d3968 440 $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
7bbaaedd
AI
441
442$(BLD)/ntlib.$(O) : \
443 $(SRC)/ntlib.c \
444 $(SRC)/ntlib.h \
445 $(EMACS_ROOT)/nt/inc/pwd.h
446
447$(BLD)/pop.$(O) : \
448 $(SRC)/pop.c \
449 $(SRC)/pop.h \
450 $(SRC)/ntlib.h
451
452$(BLD)/profile.$(O) : \
453 $(SRC)/profile.c \
454 $(EMACS_ROOT)/src/s/ms-w32.h \
455 $(EMACS_ROOT)/src/m/intel386.h \
456 $(EMACS_ROOT)/lib-src/../src/config.h \
7bbaaedd
AI
457 $(EMACS_ROOT)/lib-src/../src/systime.h
458
459$(BLD)/qsort.$(O) : \
460 $(SRC)/qsort.c
461
462$(BLD)/sorted-doc.$(O) : \
9781fb53
EZ
463 $(SRC)/sorted-doc.c \
464 $(EMACS_ROOT)/src/s/ms-w32.h \
465 $(EMACS_ROOT)/src/m/intel386.h \
466 $(EMACS_ROOT)/src/config.h \
7bbaaedd
AI
467
468$(BLD)/tcp.$(O) : \
469 $(SRC)/tcp.c
470
471$(BLD)/test-distrib.$(O) : \
472 $(SRC)/test-distrib.c
473
474$(BLD)/timer.$(O) : \
475 $(SRC)/timer.c \
476 $(EMACS_ROOT)/src/s/ms-w32.h \
477 $(EMACS_ROOT)/src/m/intel386.h \
478 $(EMACS_ROOT)/lib-src/../src/config.h