Mercurial > emacs
annotate lib-src/makefile.nt @ 11818:f470809e6a60
(mouse-save-then-kill): When making a new region
and not adjusting an old one, always make new kill-ring entry
and don't call mouse-show-mark.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 15 May 1995 23:00:16 +0000 |
parents | 4ee0f89a6a63 |
children | d6d31afbe64a |
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 | |
31 LINK_FLAGS = $(ARCH_LDFLAGS) -debug:PARTIAL -machine:$(ARCH) -subsystem:console -entry:mainCRTStartup | |
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 | |
55 LIBS = $(SYS_LIB_DIR)\setargv.obj \ | |
56 $(SYS_LIB_DIR)\kernel32.lib \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
57 $(SYS_LIB_DIR)\libc.lib \ |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
58 $(COMPAT_LIB) |
9803 | 59 |
60 $(BLD)\make-docfile.exe: $(LIBS) $(BLD)\make-docfile.obj | |
61 $(BLD)\hexl.exe: $(LIBS) $(BLD)\hexl.obj | |
62 $(BLD)\ctags.exe: $(BLD)\etags.exe | |
63 copy $(BLD)\etags.exe $(BLD)\ctags.exe | |
64 $(BLD)\wakeup.exe: $(LIBS) $(BLD)\wakeup.obj $(BLD)\ntlib.obj | |
65 $(LINK) -out:$@ $(LINK_FLAGS) $(BLD)\wakeup.obj $(BLD)\ntlib.obj $(LIBS) | |
66 | |
67 make-docfile: $(BLD)\make-docfile.exe | |
68 wakeup: $(BLD)\wakeup.exe | |
69 etags: $(BLD)\etags.exe | |
70 hexl: $(BLD)\hexl.exe | |
71 | |
72 ETAGSOBJ = $(BLD)\etags.obj \ | |
73 $(BLD)\getopt.obj \ | |
74 $(BLD)\getopt1.obj \ | |
75 $(BLD)\ntlib.obj | |
76 | |
77 $(BLD)\etags.exe: $(LIBS) $(ETAGSOBJ) | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
78 $(LINK) -out:$@ $(LINK_FLAGS) $(ETAGSOBJ) $(LIBS) |
9803 | 79 |
80 # | |
81 # don't know what to do with these yet... | |
82 # | |
83 # $(BLD)\sorted-doc.exe: $(LIBS) $(BLD)\sorted-doc.obj | |
84 # $(BLD)\yow.exe: $(LIBS) $(BLD)\yow.obj | |
85 # $(BLD)\emacstool.exe: $(LIBS) $(BLD)\emacstool.obj | |
86 # $(BLD)\env.exe: $(LIBS) $(BLD)\env.obj | |
87 # $(BLD)\fakemail.exe: $(LIBS) $(BLD)\fakemail.obj | |
88 # $(BLD)\leditcfns.exe: $(LIBS) $(BLD)\leditcfns.obj | |
89 # $(BLD)\server.exe: $(LIBS) $(BLD)\server.obj | |
90 # $(BLD)\wakeup.exe: $(LIBS) $(BLD)\wakeup.obj | |
91 # $(BLD)\movemail.exe: $(LIBS) $(BLD)\movemail.obj | |
92 # $(BLD)\cvtmail.exe: $(LIBS) $(BLD)\cvtmail.obj | |
93 # $(BLD)\digest-doc.exe: $(LIBS) $(BLD)\digest-doc.obj | |
94 # $(BLD)\emacsclient.exe: $(LIBS) $(BLD)\emacsclient.obj | |
95 # $(BLD)\qsort.exe: $(LIBS) $(BLD)\qsort.obj | |
96 # $(BLD)\test-distrib.exe: $(LIBS) $(BLD)\test-distrib.obj | |
97 | |
98 # | |
99 # From ..\makefile.nt, with .obj changed to .o | |
100 # | |
11741 | 101 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 |
9803 | 102 |
103 lispdir = ..\lisp | |
104 | |
105 # | |
106 # These are the lisp files that are loaded up in loadup.el | |
107 # | |
108 lisp= \ | |
109 $(lispdir)\subr.elc \ | |
110 $(lispdir)\byte-run.elc \ | |
111 $(lispdir)\map-ynp.elc \ | |
112 $(lispdir)\loaddefs.el \ | |
113 $(lispdir)\simple.elc \ | |
114 $(lispdir)\help.elc \ | |
115 $(lispdir)\files.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
116 $(lispdir)\format.elc \ |
9803 | 117 $(lispdir)\indent.elc \ |
118 $(lispdir)\window.elc \ | |
119 $(lispdir)\frame.elc \ | |
120 $(lispdir)\mouse.elc \ | |
121 $(lispdir)\menu-bar.elc \ | |
122 $(lispdir)\scroll-bar.elc \ | |
123 $(lispdir)\select.elc \ | |
124 $(lispdir)\paths.el \ | |
125 $(lispdir)\startup.elc \ | |
126 $(lispdir)\lisp.elc \ | |
127 $(lispdir)\page.elc \ | |
128 $(lispdir)\register.elc \ | |
129 $(lispdir)\paragraphs.elc \ | |
130 $(lispdir)\lisp-mode.elc \ | |
131 $(lispdir)\text-mode.elc \ | |
132 $(lispdir)\fill.elc \ | |
133 $(lispdir)\c-mode.elc \ | |
134 $(lispdir)\isearch.elc \ | |
135 $(lispdir)\replace.elc \ | |
136 $(lispdir)\abbrev.elc \ | |
137 $(lispdir)\buff-menu.elc \ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
138 $(lispdir)\ls-lisp.elc \ |
9803 | 139 $(lispdir)\winnt.elc \ |
140 $(lispdir)\float-sup.elc \ | |
141 $(lispdir)\vc-hooks.elc \ | |
142 $(lispdir)\version.el | |
143 | |
144 DOC = DOC | |
145 $(DOC): $(BLD)\make-docfile.exe | |
146 - rm -f $(DOC) | |
147 $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) | |
148 $(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
|
149 $(CP) $(DOC) ..\etc\DOC-X |
9803 | 150 - mkdir ..\src\$(OBJDIR) |
151 - mkdir ..\src\$(OBJDIR)\etc | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
152 $(CP) $(DOC) ..\src\$(OBJDIR)\etc\DOC-X |
9803 | 153 |
154 {$(BLD)}.obj{$(BLD)}.exe: | |
155 $(LINK) -out:$@ $(LINK_FLAGS) $*.obj $(LIBS) | |
156 | |
157 .c{$(BLD)}.obj: | |
158 $(CC) $(CFLAGS) -Fo$@ $< | |
159 | |
160 # | |
161 # Build the executables | |
162 # | |
163 all: $(BLD) $(ALL) $(DOC) | |
164 | |
165 # | |
166 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
167 # | |
168 INSTALL_FILES = $(ALL) | |
169 install: $(INSTALL_FILES) | |
170 - mkdir $(INSTALL_DIR)\bin | |
171 $(CP) $(BLD)\etags.exe $(INSTALL_DIR)\bin | |
172 $(CP) $(BLD)\ctags.exe $(INSTALL_DIR)\bin | |
173 $(CP) $(BLD)\hexl.exe $(INSTALL_DIR)\bin | |
174 $(CP) $(BLD)\wakeup.exe $(INSTALL_DIR)\bin\wakeup | |
175 - mkdir $(INSTALL_DIR)\etc | |
176 $(CP) $(DOC) $(INSTALL_DIR)\etc | |
177 | |
178 # | |
179 # Maintenance | |
180 # | |
181 clean:; - del /q *~ | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
182 - $(DEL_TREE) deleted |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
183 - $(DEL_TREE) obj |
9803 | 184 - del /q DOC |
185 | |
186 # | |
187 # Headers we would preprocess if we could. | |
188 # | |
11394
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
189 ..\src\config.h: ..\nt\config.h |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
190 cp ..\nt\config.h ..\src\config.h |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
191 ..\src\paths.h: ..\nt\paths.h |
77d5d2219f05
(obj, lisp): Update to expanded list of source files.
Karl Heuer <kwzh@gnu.org>
parents:
9821
diff
changeset
|
192 cp ..\nt\paths.h ..\src\paths.h |
9803 | 193 |
194 ### DEPENDENCIES ### | |
195 | |
196 EMACS_ROOT = .. | |
197 SRC = . | |
198 | |
199 $(BLD)\alloca.obj : \ | |
200 $(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
|
201 $(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
|
202 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 203 $(EMACS_ROOT)\src\config.h \ |
204 $(EMACS_ROOT)\src\blockinput.h | |
205 | |
206 $(BLD)\b2m.obj : \ | |
207 $(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
|
208 $(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
|
209 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 210 $(EMACS_ROOT)\lib-src\..\src\config.h |
211 | |
212 $(BLD)\cvtmail.obj : \ | |
213 $(SRC)\cvtmail.c | |
214 | |
215 $(BLD)\digest-doc.obj : \ | |
216 $(SRC)\digest-doc.c | |
217 | |
218 $(BLD)\emacsclient.obj : \ | |
219 $(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
|
220 $(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
|
221 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 222 $(EMACS_ROOT)\lib-src\..\src\config.h |
223 | |
224 $(BLD)\emacsserver.obj : \ | |
225 $(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
|
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)\lib-src\..\src\config.h \ |
229 $(EMACS_ROOT)\nt\inc\sys\file.h | |
230 | |
231 $(BLD)\emacstool.obj : \ | |
232 $(SRC)\emacstool.c \ | |
233 $(EMACS_ROOT)\nt\inc\sys\file.h | |
234 | |
235 $(BLD)\etags.obj : \ | |
236 $(SRC)\etags.c \ | |
237 $(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
|
238 $(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
|
239 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 240 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
241 $(SRC)\getopt.h | |
242 | |
243 $(BLD)\fakemail.obj : \ | |
244 $(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
|
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 $(EMACS_ROOT)\nt\inc\pwd.h | |
249 | |
250 $(BLD)\getdate.obj : \ | |
251 $(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
|
252 $(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
|
253 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 254 $(EMACS_ROOT)\src\config.h \ |
255 $(MSTOOLS_SYS)\types.h | |
256 | |
257 $(BLD)\getopt.obj : \ | |
258 $(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
|
259 $(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
|
260 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 261 $(EMACS_ROOT)\src\config.h \ |
262 $(SRC)\getopt.h | |
263 | |
264 $(BLD)\getopt1.obj : \ | |
265 $(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
|
266 $(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
|
267 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 268 $(EMACS_ROOT)\src\config.h \ |
269 $(SRC)\getopt.h | |
270 | |
271 $(BLD)\hexl.obj : \ | |
272 $(SRC)\hexl.c | |
273 | |
274 $(BLD)\leditcfns.obj : \ | |
275 $(SRC)\leditcfns.c | |
276 | |
277 $(BLD)\make-docfile.obj : \ | |
278 $(SRC)\make-docfile.c | |
279 | |
280 $(BLD)\make-path.obj : \ | |
281 $(SRC)\make-path.c | |
282 | |
283 $(BLD)\movemail.obj : \ | |
284 $(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
|
285 $(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
|
286 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 287 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
288 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
289 $(EMACS_ROOT)\src\vmsproc.h \ | |
290 $(EMACS_ROOT)\lib-src\..\src\syswait.h \ | |
291 $(EMACS_ROOT)\nt\inc\pwd.h | |
292 | |
293 $(BLD)\profile.obj : \ | |
294 $(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
|
295 $(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
|
296 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 297 $(EMACS_ROOT)\lib-src\..\src\config.h \ |
298 $(EMACS_ROOT)\src\vmstime.h \ | |
299 $(EMACS_ROOT)\lib-src\..\src\systime.h | |
300 | |
301 $(BLD)\qsort.obj : \ | |
302 $(SRC)\qsort.c | |
303 | |
304 $(BLD)\sorted-doc.obj : \ | |
305 $(SRC)\sorted-doc.c | |
306 | |
307 $(BLD)\tcp.obj : \ | |
308 $(SRC)\tcp.c | |
309 | |
310 $(BLD)\test-distrib.obj : \ | |
311 $(SRC)\test-distrib.c | |
312 | |
313 $(BLD)\timer.obj : \ | |
314 $(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
|
315 $(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
|
316 $(EMACS_ROOT)\src\m\intel386.h \ |
9803 | 317 $(EMACS_ROOT)\lib-src\..\src\config.h |
318 | |
319 $(BLD)\wakeup.obj : \ | |
320 $(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
|
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)\src\config.h |
324 | |
325 $(BLD)\yow.obj : \ | |
326 $(SRC)\yow.c \ | |
327 $(EMACS_ROOT)\lib-src\..\src\paths.h |