root/trunk/lib-src/makefile.mw32-in

Revision 4237, 15.3 kB (checked in by miyoshi, 5 months ago)

* w32.c (term_ntproc): Call term_w32select(). Thanks to Kazuhiro
Ito <kzhr@d1.dion.ne.jp>.

* makefile.mw32-in (obj): Add w32select.o instead of mw32clpbd.o.
Thanks to Kazuhiro Ito <kzhr@d1.dion.ne.jp>.

  • Property svn:eol-style set to native
Line 
1 #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2 #  Copyright (C) 2000, 2001, 2002, 2003, 2004,
3 #                2005, 2006 Free Software Foundation, Inc.
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 2, or (at your option)
10 #  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; see the file COPYING.  If not, write to the
19 #  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 #  Boston, MA 02110-1301, USA.
21 #
22
23 ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc emacsclient
24
25 .PHONY: $(ALL)
26
27 VERSION         = 22.2
28
29 LOCAL_FLAGS     = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
30                   -DNO_ARCHIVES=1 -DHAVE_CONFIG_H=1 -I../nt/inc \
31                   -I../src
32
33 LIBS            = $(BASE_LIBS) $(ADVAPI32)
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)
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)
47
48 make-docfile:   stamp_BLD $(BLD)/make-docfile.exe
49 ctags:          stamp_BLD $(BLD)/ctags.exe
50 etags:          stamp_BLD $(BLD)/etags.exe
51 ebrowse:        stamp_BLD $(BLD)/ebrowse.exe
52 hexl:           stamp_BLD $(BLD)/hexl.exe
53 movemail:       stamp_BLD $(BLD)/movemail.exe
54 fakemail:       stamp_BLD $(BLD)/fakemail.exe
55 sorted-doc:     stamp_BLD $(BLD)/sorted-doc.exe
56 digest-doc:     stamp_BLD $(BLD)/digest-doc.exe
57 emacsclient:    stamp_BLD $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe
58
59 test-distrib:   stamp_BLD $(BLD)/test-distrib.exe
60         "$(BLD)/test-distrib.exe" "$(SRC)/testfile"
61
62 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
63 GETOPTDEPS = $(GETOPTOBJS) getopt.h
64 MOVEMAILOBJS =  $(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
73 ECLIENT_CFLAGS = -DHAVE_GETCWD -DHAVE_STRERROR -DVERSION="\"$(VERSION)\""
74 ECLIENTOBJS =   $(BLD)/emacsclient.$(O) \
75                 $(BLD)/getopt.$(O) \
76                 $(BLD)/getopt1.$(O) \
77                 $(BLD)/ntlib.$(O)
78 TRES =          ../nt/$(BLD)/meadow.res
79
80 $(TRES):        ../nt/meadow.rc
81                 $(RC) $(RC_OUT)../nt/$(BLD)/meadow.res $(ALL_DEPS)
82
83 $(BLD)/emacsclient.exe:         $(ECLIENTOBJS)
84 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
85                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
86
87 $(BLD)/emacsclientw.exe:        $(ECLIENTOBJS) $(TRES)
88 # put wsock32.lib before $(LIBS) to ensure we don't link to ws2_32.lib
89                 $(LINK) $(LINK_OUT)$@ $(TRES) -mwindows $(LINK_FLAGS) $(ECLIENTOBJS) $(WSOCK32) $(USER32) $(COMCTL32) $(LIBS)
90
91 # emacsclient.$(O) depends on makefile.mw32-in because makefile.mw32-in
92 # can be edited to define VERSION string, which is part of ECLIENT_CFLAGS.
93 $(BLD)/emacsclient.$(O):        emacsclient.c makefile.mw32-in
94                 $(CC) $(CFLAGS) $(ECLIENT_CFLAGS) $(CC_OUT)$@ emacsclient.c
95
96 ETAGSOBJ      = $(BLD)/etags.$(O) \
97                 $(BLD)/getopt.$(O) \
98                 $(BLD)/getopt1.$(O) \
99                 $(BLD)/ntlib.$(O) \
100                 $(BLD)/regex.$(O)
101
102 $(BLD)/etags.exe:       $(ETAGSOBJ)
103                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS)
104
105
106 EBROWSEOBJ    = $(BLD)/ebrowse.$(O) \
107                 $(BLD)/getopt.$(O) \
108                 $(BLD)/getopt1.$(O) \
109                 $(BLD)/ntlib.$(O)
110
111 $(BLD)/ebrowse.exe:     $(EBROWSEOBJ)
112                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(EBROWSEOBJ) $(LIBS)
113
114 $(BLD)/regex.$(O): ../src/regex.c ../src/regex.h ../src/config.h
115                 $(CC)  $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \
116                 ../src/regex.c $(CC_OUT)$@
117
118 ETAGS_CFLAGS  = -DHAVE_GETCWD
119 $(BLD)/etags.$(O): etags.c
120                 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) $(CC_OUT)$@ etags.c
121
122 CTAGSOBJ      = $(BLD)/ctags.$(O) \
123                 $(BLD)/getopt.$(O) \
124                 $(BLD)/getopt1.$(O) \
125                 $(BLD)/ntlib.$(O) \
126                 $(BLD)/regex.$(O)
127
128 $(BLD)/ctags.exe:  $(CTAGSOBJ)
129                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS)
130
131 ctags.c:        etags.c
132                 - $(DEL) ctags.c
133                 $(CP) etags.c ctags.c
134
135 CTAGS_CFLAGS  = -DCTAGS $(ETAGS_CFLAGS)
136 $(BLD)/ctags.$(O): ctags.c
137                 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
138
139 #
140 # From ..\src\Makefile.in
141 # It doesn't matter if the real name is *.obj for the files in this list,
142 # make-docfile blindly replaces .o with .c anyway.  Keep .o in this list
143 # as it is required by code in doc.c.
144 #
145 obj=    sunfns.o dosfns.o msdos.o \
146         xterm.o xfns.o xmenu.o xselect.o xrdb.o  fringe.o image.o \
147         mac.o macterm.o macfns.o macmenu.o fontset.o \
148         w32.o w32console.o w32inevt.o w32proc.o \
149         mw32atimer.o mw32bdf.o w32select.o mw32dl.o mw32fns.o mw32font.o \
150         mw32ime.o mw32mci.o mw32mem.o mw32menu.o mw32reg.o mw32term.o \
151         dispnew.o frame.o scroll.o xdisp.o window.o \
152         charset.o coding.o category.o ccl.o \
153         cm.o term.o xfaces.o \
154         emacs.o keyboard.o macros.o keymap.o sysdep.o \
155         buffer.o filelock.o insdel.o marker.o \
156         minibuf.o fileio.o dired.o filemode.o \
157         cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \
158         alloc.o data.o doc.o editfns.o callint.o \
159         eval.o floatfns.o fns.o print.o lread.o \
160         abbrev.o syntax.o bytecode.o \
161         process.o callproc.o \
162         region-cache.o sound.o atimer.o \
163         doprnt.o strftime.o intervals.o textprop.o composite.o md5.o
164
165 #
166 # These are the lisp files that are loaded up in loadup.el
167 #
168 lispsource = ../lisp/
169
170 MOUSE_SUPPORT = $(lispsource)select.elc $(lispsource)scroll-bar.elc $(lispsource)mouse.elc $(lispsource)tooltip.elc
171 WINNT_SUPPORT = $(lispsource)ls-lisp.elc $(lispsource)w32-fns.elc \
172                 $(lispsource)dos-w32.elc $(lispsource)disp-table.elc \
173                 $(lispsource)mw32scroll.elc \
174                 $(lispsource)international/mw32misc.elc \
175                 $(lispsource)international/mw32mci.elc \
176                 $(lispsource)international/meadow.elc
177
178 # lisp files that are loaded up on other platforms
179 MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc
180 VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc
181
182 lisp1= \
183         $(lispsource)abbrev.elc \
184         $(lispsource)buff-menu.elc \
185         $(lispsource)button.elc \
186         $(lispsource)emacs-lisp/byte-run.elc \
187         $(lispsource)cus-face.elc \
188         $(lispsource)cus-start.elc \
189         $(lispsource)custom.elc \
190         $(lispsource)emacs-lisp/backquote.elc \
191         $(lispsource)emacs-lisp/lisp-mode.elc \
192         $(lispsource)emacs-lisp/lisp.elc \
193         $(lispsource)facemenu.elc \
194         $(MOUSE_SUPPORT) \
195         $(lispsource)faces.elc \
196         $(lispsource)files.elc \
197         $(lispsource)emacs-lisp/float-sup.elc \
198         $(lispsource)format.elc \
199         $(lispsource)frame.elc \
200         $(lispsource)help.elc \
201         $(lispsource)indent.elc \
202         $(lispsource)isearch.elc \
203         $(lispsource)rfn-eshadow.elc \
204         $(lispsource)loadup.el \
205         $(lispsource)loaddefs.el \
206         $(lispsource)bindings.elc \
207         $(lispsource)emacs-lisp/map-ynp.elc \
208         $(lispsource)env.elc \
209         $(lispsource)international/mule.elc \
210         $(lispsource)international/mule-conf.el \
211         $(lispsource)international/mule-cmds.elc \
212         $(lispsource)international/characters.elc \
213         $(lispsource)international/ucs-tables.elc \
214         $(lispsource)international/utf-8.elc \
215         $(lispsource)international/utf-16.elc \
216         $(lispsource)international/latin-1.el \
217         $(lispsource)international/latin-2.el \
218         $(lispsource)international/latin-3.el \
219         $(lispsource)international/latin-4.el \
220         $(lispsource)international/latin-5.el \
221         $(lispsource)international/latin-8.el \
222         $(lispsource)international/latin-9.el \
223         $(lispsource)fringe.elc \
224         $(lispsource)image.elc \
225         $(lispsource)international/fontset.elc \
226         $(lispsource)dnd.elc \
227         $(lispsource)mwheel.elc \
228         $(lispsource)tool-bar.elc \
229         $(lispsource)case-table.elc
230
231 lisp2 = \
232         $(lispsource)language/chinese.elc \
233         $(lispsource)language/cyrillic.elc \
234         $(lispsource)language/indian.elc \
235         $(lispsource)language/devanagari.el \
236         $(lispsource)language/kannada.el \
237         $(lispsource)language/malayalam.el \
238         $(lispsource)language/tamil.el \
239         $(lispsource)language/english.el \
240         $(lispsource)language/ethiopic.elc \
241         $(lispsource)language/european.elc \
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 \
247         $(lispsource)language/japanese.el \
248         $(lispsource)language/korean.el \
249         $(lispsource)language/lao.el \
250         $(lispsource)language/thai.el \
251         $(lispsource)language/tibetan.elc \
252         $(lispsource)language/vietnamese.elc \
253         $(lispsource)language/misc-lang.el \
254         $(lispsource)language/utf-8-lang.el \
255         $(lispsource)language/georgian.el \
256         $(lispsource)menu-bar.elc \
257         $(lispsource)paths.el \
258         $(lispsource)register.elc \
259         $(lispsource)replace.elc \
260         $(lispsource)simple.elc \
261         $(lispsource)startup.elc \
262         $(lispsource)subr.elc \
263         $(lispsource)term/tty-colors.elc \
264         $(lispsource)font-core.elc \
265         $(lispsource)emacs-lisp/syntax.elc \
266         $(lispsource)font-lock.elc \
267         $(lispsource)jit-lock.elc \
268         $(lispsource)textmodes/fill.elc \
269         $(lispsource)textmodes/page.elc \
270         $(lispsource)textmodes/paragraphs.elc \
271         $(lispsource)textmodes/text-mode.elc \
272         $(lispsource)emacs-lisp/timer.elc \
273         $(lispsource)vc-hooks.elc \
274         $(lispsource)jka-cmpr-hook.elc \
275         $(lispsource)ediff-hook.elc \
276         $(VMS_SUPPORT) \
277         $(MSDOS_SUPPORT) \
278         $(WINNT_SUPPORT) \
279         $(lispsource)widget.elc \
280         $(lispsource)window.elc \
281         $(lispsource)version.el
282
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
292
293 DOC           = DOC
294 $(DOC):         stamp_BLD $(BLD)/make-docfile.exe ../src/$(BLD)/temacs.exe $(lisp1) $(lisp2)
295                 - $(DEL) $(DOC)
296                 "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
297                 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
298                 "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
299                 $(CP) $(DOC) ../etc/DOC-X
300                 - mkdir "../src/$(OBJDIR)"
301                 - mkdir "../src/$(OBJDIR)/etc"
302                 $(CP) $(DOC) ../src/$(OBJDIR)/etc/DOC-X
303
304 {$(BLD)}.$(O){$(BLD)}.exe:
305                 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $*.$(O) $(LIBS)
306
307 #
308 # Build the executables
309 #
310 all:            stamp_BLD $(ALL) $(DOC)
311
312 #
313 # Assuming INSTALL_DIR is defined, build and install emacs in it.
314 #
315 INSTALL_FILES = $(ALL)
316 install:        $(INSTALL_FILES)
317                 - mkdir "$(INSTALL_DIR)/bin"
318                 $(CP) $(BLD)/etags.exe $(INSTALL_DIR)/bin
319                 $(CP) $(BLD)/ebrowse.exe $(INSTALL_DIR)/bin
320                 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
321                 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
322                 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
323                 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin
324                 $(CP) $(BLD)/digest-doc.exe $(INSTALL_DIR)/bin
325                 $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin
326                 $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin
327                 - mkdir "$(INSTALL_DIR)/etc"
328                 $(CP) $(DOC) $(INSTALL_DIR)/etc
329
330 #
331 # Maintenance
332 #
333 # We used to delete *~ here, but that might inadvertently remove
334 # precious files if it happens to match their short 8+3 aliases.
335 clean:
336                 - $(DEL) DOC* $(COMPILER_TEMP_FILES)
337                 - $(DEL) ctags.c
338                 - $(DEL) getopt.h
339                 - $(DEL_TREE) $(OBJDIR)
340                 - $(DEL) stamp_BLD
341
342 cleanall:       clean
343                 - $(DEL_TREE) obj
344                 - $(DEL_TREE) obj-spd
345                 - $(DEL_TREE) oo
346                 - $(DEL_TREE) oo-spd
347
348 #
349 # Headers we would preprocess if we could.
350 #
351 ../src/config.h:        ../nt/$(CONFIG_H)
352                         echo $(CONFIG_H) has changed.  Re-run configure.bat.
353                         exit -1
354
355 getopt.h:               getopt_.h
356                         $(CP) $(ALL_DEPS) $@
357
358 ### DEPENDENCIES ###
359
360 EMACS_ROOT      = ..
361 SRC             = .
362
363 $(BLD)/alloca.$(O) : \
364         $(SRC)/alloca.c \
365         $(EMACS_ROOT)/src/s/ms-w32.h \
366         $(EMACS_ROOT)/src/m/intel386.h \
367         $(EMACS_ROOT)/src/config.h \
368         $(EMACS_ROOT)/src/blockinput.h
369
370 $(BLD)/b2m.$(O) : \
371         $(SRC)/b2m.c \
372         $(EMACS_ROOT)/src/s/ms-w32.h \
373         $(EMACS_ROOT)/src/m/intel386.h \
374         $(EMACS_ROOT)/lib-src/../src/config.h
375
376 $(BLD)/ctags.$(O) : \
377         $(SRC)/ctags.c \
378         $(EMACS_ROOT)/nt/inc/sys/param.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         $(SRC)/ntlib.h \
383         $(SRC)/getopt.h
384
385 $(BLD)/digest-doc.$(O) : \
386         $(SRC)/digest-doc.c
387
388 $(BLD)/emacsclient.$(O) : \
389         $(SRC)/emacsclient.c \
390         $(EMACS_ROOT)/src/s/ms-w32.h \
391         $(EMACS_ROOT)/src/m/intel386.h \
392         $(EMACS_ROOT)/lib-src/../src/config.h
393
394 $(BLD)/etags.$(O) : \
395         $(SRC)/etags.c \
396         $(EMACS_ROOT)/nt/inc/sys/param.h \
397         $(EMACS_ROOT)/src/s/ms-w32.h \
398         $(EMACS_ROOT)/src/m/intel386.h \
399         $(EMACS_ROOT)/lib-src/../src/config.h \
400         $(SRC)/ntlib.h \
401         $(SRC)/getopt.h
402
403 $(BLD)/fakemail.$(O) : \
404         $(SRC)/fakemail.c \
405         $(SRC)/ntlib.h \
406         $(EMACS_ROOT)/src/s/ms-w32.h \
407         $(EMACS_ROOT)/src/m/intel386.h \
408         $(EMACS_ROOT)/lib-src/../src/config.h \
409         $(EMACS_ROOT)/nt/inc/pwd.h
410
411 $(BLD)/getdate.$(O) : \
412         $(SRC)/getdate.c \
413         $(EMACS_ROOT)/src/s/ms-w32.h \
414         $(EMACS_ROOT)/src/m/intel386.h \
415         $(EMACS_ROOT)/src/config.h \
416         $(MSTOOLS_SYS)/types.h
417
418 $(BLD)/getopt.$(O) : \
419         $(SRC)/getopt.c \
420         $(EMACS_ROOT)/src/s/ms-w32.h \
421         $(EMACS_ROOT)/src/m/intel386.h \
422         $(EMACS_ROOT)/src/config.h \
423         $(SRC)/ntlib.h \
424         $(SRC)/getopt.h
425
426 $(BLD)/getopt1.$(O) : \
427         $(SRC)/getopt1.c \
428         $(EMACS_ROOT)/src/s/ms-w32.h \
429         $(EMACS_ROOT)/src/m/intel386.h \
430         $(EMACS_ROOT)/src/config.h \
431         $(SRC)/getopt.h
432
433 $(BLD)/hexl.$(O) : \
434         $(SRC)/hexl.c
435
436 $(BLD)/leditcfns.$(O) : \
437         $(SRC)/leditcfns.c
438
439 $(BLD)/make-docfile.$(O) : \
440         $(SRC)/make-docfile.c \
441         $(EMACS_ROOT)/src/config.h
442
443 $(BLD)/make-path.$(O) : \
444         $(SRC)/make-path.c
445
446 $(BLD)/movemail.$(O) : \
447         $(SRC)/movemail.c \
448         $(EMACS_ROOT)/src/s/ms-w32.h \
449         $(EMACS_ROOT)/src/m/intel386.h \
450         $(EMACS_ROOT)/lib-src/../src/config.h \
451         $(EMACS_ROOT)/nt/inc/sys/file.h \
452         $(EMACS_ROOT)/lib-src/../src/syswait.h \
453         $(EMACS_ROOT)/nt/inc/pwd.h \
454         $(SRC)/ntlib.h
455         $(CC) $(CFLAGS) -DUSG $(CC_OUT)$@ movemail.c
456
457 $(BLD)/ntlib.$(O) : \
458         $(SRC)/ntlib.c \
459         $(SRC)/ntlib.h \
460         $(EMACS_ROOT)/nt/inc/pwd.h
461
462 $(BLD)/pop.$(O) : \
463         $(SRC)/pop.c \
464         $(SRC)/pop.h \
465         $(SRC)/ntlib.h
466
467 $(BLD)/profile.$(O) : \
468         $(SRC)/profile.c \
469         $(EMACS_ROOT)/src/s/ms-w32.h \
470         $(EMACS_ROOT)/src/m/intel386.h \
471         $(EMACS_ROOT)/lib-src/../src/config.h \
472         $(EMACS_ROOT)/lib-src/../src/systime.h
473
474 $(BLD)/qsort.$(O) : \
475         $(SRC)/qsort.c
476
477 $(BLD)/sorted-doc.$(O) : \
478         $(SRC)/sorted-doc.c \
479         $(EMACS_ROOT)/src/s/ms-w32.h \
480         $(EMACS_ROOT)/src/m/intel386.h \
481         $(EMACS_ROOT)/src/config.h \
482
483 $(BLD)/tcp.$(O) : \
484         $(SRC)/tcp.c
485
486 $(BLD)/test-distrib.$(O) : \
487         $(SRC)/test-distrib.c
488
489 $(BLD)/timer.$(O) : \
490         $(SRC)/timer.c \
491         $(EMACS_ROOT)/src/s/ms-w32.h \
492         $(EMACS_ROOT)/src/m/intel386.h \
493         $(EMACS_ROOT)/lib-src/../src/config.h
494
495 # The following dependencies are for supporting parallel builds, where
496 # we must make sure $(BLD) exists before any compilation starts.
497 #
498 $(BLD)/make-docfile.$(O) $(BLD)/hexl.$(O) $(BLD)/fakemail.$(O): stamp_BLD
499
500 $(BLD)/sorted-doc.$(O) $(BLD)/digest-doc.$(O): stamp_BLD
501
502 $(BLD)/test-distrib.$(O) $(GETOPTOBJS) $(MOVEMAILOBJS): stamp_BLD
503
504 $(BLD)/emacsclient.$(O) $(BLD)/etags.$(O) $(BLD)/regex.$(O): stamp_BLD
505
506 $(BLD)/ebrowse.$(O) $(BLD)/ctags.$(O): stamp_BLD
Note: See TracBrowser for help on using the browser.