Mercurial > emacs
annotate lib-src/makefile.nt @ 15101:f86169152e74
(access, unlink) [WINDOWSNT]: Macros undefined.
(fork, syswait, DISABLE_DIRECT_ACCESS) [WINDOWSNT]: Macros defined.
[WINDOWSNT]: Include locking.h.
(main): Update usage message. Use IS_DIRECTORY_SEP.
(main) [DISABLE_DIRECT_ACCESS]: Don't check access if defined.
(main) [WINDOWSNT]: Invoke locking instead of flock.
(main) [MAIL_USE_SYSTEM_LOCK && WINDOWSNT]: Emulate ftruncate.
(main) [MAIL_USE_POP]: Pass password to popmail if used.
Include winsock.h; don't include unix inet headers.
(popmail): Add password argument and pass it to pop_open.
Open output file in binary mode.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Apr 1996 19:07:35 +0000 |
parents | 780fe9c87106 |
children | 74c840c2f577 |
rev | line source |
---|---|
9803 | 1 # Makefile for GNU Emacs lib-src directory. |
2 # Geoff Voelker (voelker@cs.washington.edu) | |
3 # Copyright (C) 1994 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 | |
19 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 # | |
21 | |
22 # | |
23 # Sets up the system dependent macros. | |
24 # | |
25 !include ..\nt\makefile.def | |
26 | |
27 LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 -DNO_ARCHIVES=1 -I..\src | |
28 OBJDIR = obj | |
29 BLD = $(OBJDIR)\$(ARCH) | |
30 | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
31 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup setargv.obj |
9803 | 32 |
33 ALL = $(BLD)\make-docfile.exe \ | |
34 $(BLD)\hexl.exe \ | |
35 $(BLD)\wakeup.exe \ | |
36 $(BLD)\ctags.exe \ | |
37 $(BLD)\etags.exe | |
38 | |
39 | |
40 # don't know what (if) to do with these yet... | |
41 # | |
42 # $(BLD)\sorted-doc.exe \ | |
43 # $(BLD)\env.exe \ | |
44 # $(BLD)\server.exe \ | |
45 # $(BLD)\emacstool.exe \ | |
46 # $(BLD)\fakemail.exe \ | |
47 # $(BLD)\leditcfns.exe \ | |
48 # $(BLD)\movemail.exe \ | |
49 # $(BLD)\emacsclient.exe \ | |
50 # $(BLD)\cvtmail.exe \ | |
51 # $(BLD)\digest-doc.exe \ | |
52 # $(BLD)\test-distrib.exe \ | |
53 | |
54 | |
11939 | 55 LIBS = $(BASE_LIBS) |
9803 | 56 |
11939 | 57 $(BLD)\make-docfile.exe: $(BLD)\make-docfile.obj |
58 $(BLD)\hexl.exe: $(BLD)\hexl.obj | |
59 $(BLD)\wakeup.exe: $(BLD)\wakeup.obj $(BLD)\ntlib.obj | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
60 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\wakeup.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
61 $(BLD)\ntlib.obj $(LIBS) |
9803 | 62 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
63 make-docfile: $(BLD) $(BLD)\make-docfile.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
64 wakeup: $(BLD) $(BLD)\wakeup.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
65 etags: $(BLD) $(BLD)\etags.exe |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
66 hexl: $(BLD) $(BLD)\hexl.exe |
9803 | 67 |
68 ETAGSOBJ = $(BLD)\etags.obj \ | |
69 $(BLD)\getopt.obj \ | |
70 $(BLD)\getopt1.obj \ | |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
71 $(BLD)\ntlib.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
72 $(BLD)\regex.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
73 $(BLD)\alloca.obj |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
74 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
75 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
76 $(BLD)\etags.exe: $(ETAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
77 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
78 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
79 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
80 $(BLD)\regex.obj: ../src/regex.c ../src/regex.h ../src/config.h |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
81 $(CC) $(CFLAGS) -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
82 ../src/regex.c -Fo$@ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
83 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
84 ETAGS_CFLAGS = -DETAGS_REGEXPS |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
85 $(BLD)\etags.obj: etags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
86 $(CC) $(CFLAGS) $(ETAGS_CFLAGS) -Fo$@ etags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
87 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
88 CTAGSOBJ = $(BLD)\ctags.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
89 $(BLD)\getopt.obj \ |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
90 $(BLD)\getopt1.obj \ |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
91 $(BLD)\ntlib.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
92 $(BLD)\regex.obj \ |
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
93 $(BLD)\alloca.obj |
9803 | 94 |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
95 $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
96 $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
97 |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
98 ctags.c: etags.c |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
99 - $(DEL) ctags.c |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
100 copy etags.c ctags.c |
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
101 |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
102 CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) |
13930
badba571804f
(etags, ctags): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
13631
diff
changeset
|
103 $(BLD)\ctags.obj: ctags.c |
14981
780fe9c87106
(CTAGSOBJ): Compile with regexp support.
Geoff Voelker <voelker@cs.washington.edu>
parents:
14899
diff
changeset
|
104 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c |
9803 | 105 |
106 # | |
107 # don't know what to do with these yet... | |
108 # | |
109 # $(BLD)\sorted-doc.exe: $(LIBS) $(BLD)\sorted-doc.obj | |
110 # $(BLD)\yow.exe: $(LIBS) $(BLD)\yow.obj | |
111 # $(BLD)\emacstool.exe: $(LIBS) $(BLD)\emacstool.obj | |
112 # $(BLD)\env.exe: $(LIBS) $(BLD)\env.obj | |
113 # $(BLD)\fakemail.exe: $(LIBS) $(BLD)\fakemail.obj | |
114 # $(BLD)\leditcfns.exe: $(LIBS) $(BLD)\leditcfns.obj | |
115 # $(BLD)\server.exe: $(LIBS) $(BLD)\server.obj | |
116 # $(BLD)\wakeup.exe: $(LIBS) $(BLD)\wakeup.obj | |
117 # $(BLD)\movemail.exe: $(LIBS) $(BLD)\movemail.obj | |
118 # $(BLD)\cvtmail.exe: $(LIBS) $(BLD)\cvtmail.obj | |
119 # $(BLD)\digest-doc.exe: $(LIBS) $(BLD)\digest-doc.obj | |
120 # $(BLD)\emacsclient.exe: $(LIBS) $(BLD)\emacsclient.obj | |
121 # $(BLD)\qsort.exe: $(LIBS) $(BLD)\qsort.obj | |
122 # $(BLD)\test-distrib.exe: $(LIBS) $(BLD)\test-distrib.obj | |
123 | |
124 # | |
11939 | 125 # From ..\src\makefile.nt. |
9803 | 126 # |
13429
a90a9820c5f6
(DOC): Include strings from w32term.c, w32xfns.c,
Geoff Voelker <voelker@cs.washington.edu>
parents:
12241
diff
changeset
|
127 obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c cm.c cmds.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c eval.c fileio.c filelock.c filemode.c fns.c indent.c insdel.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c xfaces.c mocklisp.c nt.c ntheap.c ntinevt.c ntproc.c ntterm.c print.c process.c regex.c scroll.c search.c syntax.c sysdep.c term.c termcap.c tparam.c undo.c unexnt.c window.c xdisp.c casetab.c floatfns.c frame.c gmalloc.c intervals.c ralloc.c textprop.c vm-limit.c region-cache.c strftime.c w32term.c w32xfns.c w32fns.c w32faces.c w32select.c w32menu.c w32reg.c |
9803 | 128 |
129 lispdir = ..\lisp | |
130 | |
131 # | |
132 # These are the lisp files that are loaded up in loadup.el | |
133 # | |
134 lisp= \ | |
135 $(lispdir)\subr.elc \ | |
136 $(lispdir)\byte-run.elc \ | |
137 $(lispdir)\map-ynp.elc \ | |
138 $(lispdir)\loaddefs.el \ | |
139 $(lispdir)\simple.elc \ | |
140 $(lispdir)\help.elc \ | |
141 $(lispdir)\files.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
142 $(lispdir)\format.elc \ |
9803 | 143 $(lispdir)\indent.elc \ |
144 $(lispdir)\window.elc \ | |
145 $(lispdir)\frame.elc \ | |
146 $(lispdir)\mouse.elc \ | |
147 $(lispdir)\menu-bar.elc \ | |
148 $(lispdir)\scroll-bar.elc \ | |
149 $(lispdir)\select.elc \ | |
150 $(lispdir)\paths.el \ | |
151 $(lispdir)\startup.elc \ | |
152 $(lispdir)\lisp.elc \ | |
153 $(lispdir)\page.elc \ | |
154 $(lispdir)\register.elc \ | |
155 $(lispdir)\paragraphs.elc \ | |
156 $(lispdir)\lisp-mode.elc \ | |
157 $(lispdir)\text-mode.elc \ | |
158 $(lispdir)\fill.elc \ | |
159 $(lispdir)\c-mode.elc \ | |
160 $(lispdir)\isearch.elc \ | |
161 $(lispdir)\replace.elc \ | |
162 $(lispdir)\abbrev.elc \ | |
163 $(lispdir)\buff-menu.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
164 $(lispdir)\ls-lisp.elc \ |
9803 | 165 $(lispdir)\winnt.elc \ |
166 $(lispdir)\float-sup.elc \ | |
167 $(lispdir)\vc-hooks.elc \ | |
168 $(lispdir)\version.el | |
169 | |
170 DOC = DOC | |
171 $(DOC): $(BLD)\make-docfile.exe | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
172 - $(DEL) $(DOC) |
9803 | 173 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) |
174 $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
175 $(CP) $(DOC) ..\etc\DOC-X |
9803 | 176 - mkdir ..\src\$(OBJDIR) |
177 - mkdir ..\src\$(OBJDIR)\etc | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
178 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
9803 | 179 |
180 {$(BLD)}.obj{$(BLD)}.exe: | |
181 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
182 | |
183 .c{$(BLD)}.obj: | |
184 $(CC) $(CFLAGS) -Fo$@ $< | |
185 | |
186 # | |
187 # Build the executables | |
188 # | |
189 all: $(BLD) $(ALL) $(DOC) | |
190 | |
191 # | |
192 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
193 # | |
194 INSTALL_FILES = $(ALL) | |
195 install: $(INSTALL_FILES) | |
196 - mkdir $(INSTALL_DIR)\bin | |
197 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
198 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
199 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin | |
12241
f92938c6b7c9
(install): Copy wakeup.exe properly.
Richard M. Stallman <rms@gnu.org>
parents:
11939
diff
changeset
|
200 $(CP) $(BLD)\wakeup.exe $(INSTALL_DIR)\bin |
9803 | 201 - mkdir $(INSTALL_DIR)\etc |
202 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
203 | |
204 # | |
205 # Maintenance | |
206 # | |
14899
4b7b8a937a5d
Change uses of del to $(DEL).
Geoff Voelker <voelker@cs.washington.edu>
parents:
13930
diff
changeset
|
207 clean:; - $(DEL) *~ *.pdb DOC* |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
208 - $(DEL_TREE) deleted |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
209 - $(DEL_TREE) obj |
9803 | 210 |
211 # | |
212 # Headers we would preprocess if we could. | |
213 # | |
11939 | 214 ..\src\config.h: ..\nt\$(CONFIG_H) |
215 $(CP) $** $@ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
216 ..\src\paths.h: ..\nt\paths.h |
11939 | 217 $(CP) $** $@ |
9803 | 218 |
219 ### DEPENDENCIES ### | |
220 | |
221 EMACS_ROOT = .. | |
222 SRC = . | |
223 | |
224 $(BLD)\alloca.obj : \ | |
225 $(SRC)\alloca.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
226 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
227 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 228 $(EMACS_ROOT)\src\config.h \ |
229 $(EMACS_ROOT)\src\blockinput.h | |
230 | |
231 $(BLD)\b2m.obj : \ | |
232 $(SRC)\b2m.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
233 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
234 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 235 $(EMACS_ROOT)\lib-src\..\src\config.h |
236 | |
237 $(BLD)\cvtmail.obj : \ | |
238 $(SRC)\cvtmail.c | |
239 | |
240 $(BLD)\digest-doc.obj : \ | |
241 $(SRC)\digest-doc.c | |
242 | |
243 $(BLD)\emacsclient.obj : \ | |
244 $(SRC)\emacsclient.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
245 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
246 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 247 $(EMACS_ROOT)\lib-src\..\src\config.h |
248 | |
249 $(BLD)\emacsserver.obj : \ | |
250 $(SRC)\emacsserver.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
251 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
252 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 253 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
254 $(EMACS_ROOT)\nt\inc\sys\file.h | |
255 | |
256 $(BLD)\emacstool.obj : \ | |
257 $(SRC)\emacstool.c \ | |
258 $(EMACS_ROOT)\nt\inc\sys\file.h | |
259 | |
260 $(BLD)\etags.obj : \ | |
261 $(SRC)\etags.c \ | |
262 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
263 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
264 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 265 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
266 $(SRC)\getopt.h | |
267 | |
268 $(BLD)\fakemail.obj : \ | |
269 $(SRC)\fakemail.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
270 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
271 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 272 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
273 $(EMACS_ROOT)\nt\inc\pwd.h | |
274 | |
275 $(BLD)\getdate.obj : \ | |
276 $(SRC)\getdate.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
277 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
278 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 279 $(EMACS_ROOT)\src\config.h \ |
280 $(MSTOOLS_SYS)\types.h | |
281 | |
282 $(BLD)\getopt.obj : \ | |
283 $(SRC)\getopt.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
284 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
285 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 286 $(EMACS_ROOT)\src\config.h \ |
287 $(SRC)\getopt.h | |
288 | |
289 $(BLD)\getopt1.obj : \ | |
290 $(SRC)\getopt1.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
291 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
292 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 293 $(EMACS_ROOT)\src\config.h \ |
294 $(SRC)\getopt.h | |
295 | |
296 $(BLD)\hexl.obj : \ | |
297 $(SRC)\hexl.c | |
298 | |
299 $(BLD)\leditcfns.obj : \ | |
300 $(SRC)\leditcfns.c | |
301 | |
302 $(BLD)\make-docfile.obj : \ | |
11939 | 303 $(SRC)\make-docfile.c \ |
304 $(EMACS_ROOT)\src\config.h | |
9803 | 305 |
306 $(BLD)\make-path.obj : \ | |
307 $(SRC)\make-path.c | |
308 | |
309 $(BLD)\movemail.obj : \ | |
310 $(SRC)\movemail.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
311 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
312 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 313 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
314 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
315 $(EMACS_ROOT)\src\vmsproc.h \ | |
316 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
317 $(EMACS_ROOT)\nt\inc\pwd.h | |
318 | |
319 $(BLD)\profile.obj : \ | |
320 $(SRC)\profile.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
321 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
322 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 323 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
324 $(EMACS_ROOT)\src\vmstime.h \ | |
325 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
326 | |
327 $(BLD)\qsort.obj : \ | |
328 $(SRC)\qsort.c | |
329 | |
330 $(BLD)\sorted-doc.obj : \ | |
331 $(SRC)\sorted-doc.c | |
332 | |
333 $(BLD)\tcp.obj : \ | |
334 $(SRC)\tcp.c | |
335 | |
336 $(BLD)\test-distrib.obj : \ | |
337 $(SRC)\test-distrib.c | |
338 | |
339 $(BLD)\timer.obj : \ | |
340 $(SRC)\timer.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
341 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
342 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 343 $(EMACS_ROOT)\lib-src\..\src\config.h |
344 | |
345 $(BLD)\wakeup.obj : \ | |
346 $(SRC)\wakeup.c \ | |
9821
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
347 $(EMACS_ROOT)\src\s\windowsnt.h \ |
f1cb7ef9e9bc
Changed references of m\m-windowsnt.h to m\intel386.h and of s\s-windowsnt.h
Karl Heuer <kwzh@gnu.org>
parents:
9803
diff
changeset
|
348 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 349 $(EMACS_ROOT)\src\config.h |
350 | |
351 $(BLD)\yow.obj : \ | |
352 $(SRC)\yow.c \ | |
353 $(EMACS_ROOT)\lib-src\..\src\paths.h |