Mercurial > emacs
annotate src/makefile.nt @ 11751:422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
(OBJ1): Don't compile xfaces.c.
(buffer.obj,indent.obj,search.obj): Add region-cache.h dependency.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 08 May 1995 06:22:36 +0000 |
| parents | c50ee074c31a |
| children | 4636a3916e01 |
| rev | line source |
|---|---|
| 9803 | 1 # Makefile for GNU Emacs on Windows NT |
| 11383 | 2 # Copyright (c) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. |
| 3 # Tim Fleehart (apollo@online.com) 17-Apr-92 | |
| 4 # Geoff Voelker (voelker@cs.washington.edu) 11-20-93 | |
| 9803 | 5 # |
| 6 # This file is part of GNU Emacs. | |
| 7 # | |
| 8 # GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 # it under the terms of the GNU General Public License as published by | |
| 10 # the Free Software Foundation; either version 2, or (at your option) | |
| 11 # any later version. | |
| 12 # | |
| 13 # GNU Emacs is distributed in the hope that it will be useful, | |
| 14 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 # GNU General Public License for more details. | |
| 17 # | |
| 18 # You should have received a copy of the GNU General Public License | |
| 19 # along with GNU Emacs; see the file COPYING. If not, write to | |
| 20 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 21 # | |
| 22 | |
| 23 # | |
| 24 # Sets up the system dependent macros. | |
| 25 # | |
| 26 !include ..\nt\makefile.def | |
| 27 | |
| 28 # | |
| 29 # HAVE_CONFIG_H is required by some generic gnu sources stuck into | |
| 30 # the emacs source tree. | |
| 31 # | |
| 11383 | 32 LOCAL_FLAGS = -Demacs=1 -DWINDOWSNT -DDOS_NT -DHAVE_CONFIG_H -I..\nt\inc |
| 9803 | 33 |
| 34 EMACS = $(BLD)\emacs.exe | |
| 35 TEMACS = $(BLD)\temacs.exe | |
| 11742 | 36 TLIB1 = $(BLD)\temacs1.lib |
| 37 TLIB2 = $(BLD)\temacs2.lib | |
| 9803 | 38 TOBJ = $(BLD)\emacs.obj |
| 11742 | 39 TRES = $(BLD)\emacs.rbj |
| 9803 | 40 |
| 41 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x1000000 -base:0xD00000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:console -entry:_start | |
| 42 | |
| 43 # -debug:PARTIAL -debugtype:COFF | |
| 44 | |
| 45 # | |
| 46 # Split up the objects into two sets so that we don't run out of | |
| 47 # command line space when we link them into a library. | |
| 48 # | |
| 49 OBJ1 = $(BLD)\abbrev.obj \ | |
| 50 $(BLD)\alloc.obj \ | |
| 51 $(BLD)\alloca.obj \ | |
| 52 $(BLD)\buffer.obj \ | |
| 53 $(BLD)\bytecode.obj \ | |
| 54 $(BLD)\callint.obj \ | |
| 55 $(BLD)\callproc.obj \ | |
| 56 $(BLD)\casefiddle.obj \ | |
| 57 $(BLD)\cm.obj \ | |
| 58 $(BLD)\cmds.obj \ | |
| 59 $(BLD)\data.obj \ | |
| 60 $(BLD)\dired.obj \ | |
| 61 $(BLD)\dispnew.obj \ | |
| 62 $(BLD)\doc.obj \ | |
| 63 $(BLD)\doprnt.obj \ | |
| 64 $(BLD)\editfns.obj \ | |
| 65 $(BLD)\eval.obj \ | |
| 66 $(BLD)\fileio.obj \ | |
| 67 $(BLD)\filelock.obj \ | |
| 68 $(BLD)\filemode.obj \ | |
| 69 $(BLD)\fns.obj \ | |
| 70 $(BLD)\indent.obj \ | |
| 71 $(BLD)\insdel.obj \ | |
| 72 $(BLD)\keyboard.obj \ | |
| 73 $(BLD)\keymap.obj \ | |
| 74 $(BLD)\lastfile.obj \ | |
| 75 $(BLD)\lread.obj \ | |
| 76 $(BLD)\macros.obj \ | |
| 77 $(BLD)\marker.obj \ | |
| 78 $(BLD)\minibuf.obj \ | |
| 79 $(BLD)\mocklisp.obj | |
| 80 | |
| 81 OBJ2 = $(BLD)\nt.obj \ | |
| 82 $(BLD)\ntheap.obj \ | |
| 83 $(BLD)\ntinevt.obj \ | |
| 84 $(BLD)\ntproc.obj \ | |
| 85 $(BLD)\ntterm.obj \ | |
| 86 $(BLD)\print.obj \ | |
| 87 $(BLD)\process.obj \ | |
| 88 $(BLD)\regex.obj \ | |
| 89 $(BLD)\scroll.obj \ | |
| 90 $(BLD)\search.obj \ | |
| 91 $(BLD)\syntax.obj \ | |
| 92 $(BLD)\sysdep.obj \ | |
| 93 $(BLD)\term.obj \ | |
| 94 $(BLD)\termcap.obj \ | |
| 95 $(BLD)\tparam.obj \ | |
| 96 $(BLD)\undo.obj \ | |
| 97 $(BLD)\unexnt.obj \ | |
| 98 $(BLD)\window.obj \ | |
| 99 $(BLD)\xdisp.obj \ | |
| 100 $(BLD)\casetab.obj \ | |
| 101 $(BLD)\floatfns.obj \ | |
| 102 $(BLD)\frame.obj \ | |
| 103 $(BLD)\gmalloc.obj \ | |
| 104 $(BLD)\intervals.obj \ | |
| 105 $(BLD)\ralloc.obj \ | |
| 106 $(BLD)\textprop.obj \ | |
| 11383 | 107 $(BLD)\vm-limit.obj \ |
| 108 $(BLD)\region-cache.obj \ | |
| 109 $(BLD)\strftime.obj | |
| 9803 | 110 |
| 11742 | 111 LIBS = $(TLIB1) \ |
| 112 $(TLIB2) \ | |
| 9803 | 113 $(SYS_LIB_DIR)\setargv.obj \ |
| 114 $(SYS_LIB_DIR)\kernel32.lib \ | |
| 115 $(SYS_LIB_DIR)\advapi32.lib \ | |
| 11383 | 116 $(SYS_LIB_DIR)\user32.lib \ |
| 117 $(SYS_LIB_DIR)\libc.lib \ | |
| 118 $(COMPAT_LIB) | |
| 9803 | 119 |
| 120 # | |
| 121 # Build the executable and dump it. | |
| 122 # | |
| 123 all: $(BLD) $(EMACS) | |
| 124 | |
| 125 # | |
| 126 # Headers we would preprocess if we could. | |
| 127 # | |
| 128 PREPARED_HEADERS = config.h paths.h | |
| 11383 | 129 config.h: ..\nt\config.h |
| 130 cp ..\nt\config.h config.h | |
| 131 paths.h: ..\nt\paths.h | |
| 132 cp ..\nt\paths.h paths.h | |
| 133 | |
| 134 # | |
| 135 # Make sure we have the DOC file in the right place. | |
| 136 # | |
| 11742 | 137 DOC = obj\etc\DOC-X |
| 11383 | 138 $(DOC):; cd ..\lib-src |
| 11742 | 139 - del /q DOC-X |
| 11383 | 140 $(MAKE) -f makefile.nt all |
| 141 cd ..\src | |
| 9803 | 142 |
| 143 # | |
| 144 # The dumped executable | |
| 145 # | |
| 146 emacs: $(EMACS) | |
| 11383 | 147 $(EMACS): $(PREPARED_HEADERS) $(DOC) $(TEMACS) |
| 9803 | 148 cd $(BLD) |
| 149 temacs.exe -batch -l loadup dump | |
| 150 cd ..\.. | |
| 151 | |
| 152 # | |
| 153 # The undumped executable | |
| 154 # | |
| 11383 | 155 temacs: $(TEMACS) |
| 11742 | 156 $(TEMACS): $(BLD) $(TLIB1) $(TLIB2) $(TOBJ) $(TRES) |
| 157 $(LINK) -out:$(TEMACS) $(LINK_FLAGS) $(TOBJ) $(TRES) $(LIBS) | |
| 158 | |
| 159 # | |
| 160 # The resource file. | |
| 161 # | |
| 162 $(TRES): ..\nt\emacs.rc | |
| 163 $(RC) -i..\nt -Fo$(BLD)\emacs.res $** | |
| 164 $(CVTRES) -r -$(ARCH) -o $@ $(BLD)\emacs.res | |
| 9803 | 165 |
| 166 # | |
| 167 # Build the library. Split up the build into two phases...otherwise we | |
| 168 # run out of command line space. | |
| 169 # | |
| 11742 | 170 $(TLIB1): $(OBJ1) |
| 171 @- $(AR) -out:$@ $** | |
| 172 $(TLIB2): $(OBJ2) | |
| 173 @- $(AR) -out:$@ $** | |
| 9803 | 174 |
| 175 # | |
| 176 # Object files. | |
| 177 # | |
| 178 .c{$(BLD)}.obj: | |
| 179 $(CC) $(CFLAGS) -Fo$@ $< | |
| 180 | |
| 181 # | |
| 182 # Assuming INSTALL_DIR is defined, build and install emacs in it. | |
| 183 # | |
| 184 install: all | |
| 185 - mkdir $(INSTALL_DIR)\bin | |
| 186 $(CP) $(EMACS) $(INSTALL_DIR)\bin | |
| 187 | |
| 188 # | |
| 189 # Maintenance | |
| 190 # | |
| 191 clean:; - del /q *~ | |
| 11383 | 192 - $(DEL_TREE) deleted |
| 193 - $(DEL_TREE) obj | |
| 9803 | 194 |
| 195 # | |
| 196 # These files are the ones that compile conditionally on CANNOT_DUMP... | |
| 197 # this target is mostly used for debugging. | |
| 198 # | |
| 199 cleandump:; cd $(BLD) && - del callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj | |
| 200 | |
| 201 | |
| 202 ### DEPENDENCIES ### | |
| 203 | |
| 204 EMACS_ROOT = .. | |
| 205 SRC = . | |
| 206 | |
| 207 $(BLD)\abbrev.obj : \ | |
| 208 $(SRC)\abbrev.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
|
209 $(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
|
210 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 211 $(EMACS_ROOT)\src\config.h \ |
| 212 $(SRC)\lisp.h \ | |
| 213 $(SRC)\commands.h \ | |
| 214 $(SRC)\buffer.h \ | |
| 215 $(SRC)\window.h | |
| 216 | |
| 217 $(BLD)\alloc.obj : \ | |
| 218 $(SRC)\alloc.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
|
219 $(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
|
220 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 221 $(EMACS_ROOT)\src\config.h \ |
| 222 $(SRC)\lisp.h \ | |
| 223 $(SRC)\dispextern.h \ | |
| 224 $(SRC)\intervals.h \ | |
| 225 $(SRC)\puresize.h \ | |
| 226 $(SRC)\buffer.h \ | |
| 227 $(SRC)\window.h \ | |
| 228 $(SRC)\frame.h \ | |
| 229 $(SRC)\blockinput.h \ | |
| 230 $(SRC)\syssignal.h | |
| 231 | |
| 232 $(BLD)\alloca.obj : \ | |
| 233 $(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
|
234 $(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
|
235 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 236 $(EMACS_ROOT)\src\config.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
|
237 $(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
|
238 $(SRC)\m\intel386.h \ |
| 9803 | 239 $(SRC)\config.h \ |
| 240 $(SRC)\blockinput.h | |
| 241 | |
| 242 $(BLD)\buffer.obj : \ | |
| 243 $(SRC)\buffer.c \ | |
| 244 $(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
|
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)\src\config.h \ |
| 248 $(SRC)\lisp.h \ | |
| 249 $(SRC)\dispextern.h \ | |
| 250 $(SRC)\intervals.h \ | |
| 251 $(SRC)\window.h \ | |
| 252 $(SRC)\commands.h \ | |
| 253 $(SRC)\buffer.h \ | |
| 254 $(SRC)\indent.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
255 $(SRC)\blockinput.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
256 $(SRC)\region-cache.h |
| 9803 | 257 |
| 258 $(BLD)\bytecode.obj : \ | |
| 259 $(SRC)\bytecode.c \ | |
| 260 $(SRC)\lisp.h \ | |
| 261 $(SRC)\buffer.h \ | |
| 262 $(SRC)\syntax.h | |
| 263 | |
| 264 $(BLD)\callint.obj : \ | |
| 265 $(SRC)\callint.c \ | |
| 266 $(SRC)\lisp.h \ | |
| 267 $(SRC)\buffer.h \ | |
| 268 $(SRC)\commands.h \ | |
| 269 $(SRC)\keyboard.h \ | |
| 270 $(SRC)\window.h \ | |
| 271 $(SRC)\mocklisp.h | |
| 272 | |
| 273 $(BLD)\callproc.obj : \ | |
| 274 $(SRC)\callproc.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
|
275 $(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
|
276 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 277 $(EMACS_ROOT)\src\config.h \ |
| 278 $(SRC)\msdos.h \ | |
| 279 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 280 $(SRC)\lisp.h \ | |
| 281 $(SRC)\commands.h \ | |
| 282 $(SRC)\buffer.h \ | |
| 283 $(SRC)\process.h \ | |
| 284 $(SRC)\syssignal.h \ | |
| 285 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 286 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 287 $(SRC)\systty.h | |
| 288 | |
| 289 $(BLD)\casefiddle.obj : \ | |
| 290 $(SRC)\casefiddle.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)\lisp.h \ | |
| 295 $(SRC)\buffer.h \ | |
| 296 $(SRC)\commands.h \ | |
| 297 $(SRC)\syntax.h | |
| 298 $(CC) $(CFLAGS) -Fo$@ casefiddle.c | |
| 299 | |
| 300 $(BLD)\casetab.obj : \ | |
| 301 $(SRC)\casetab.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
|
302 $(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
|
303 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 304 $(EMACS_ROOT)\src\config.h \ |
| 305 $(SRC)\lisp.h \ | |
| 306 $(SRC)\buffer.h | |
| 307 | |
| 308 $(BLD)\cm.obj : \ | |
| 309 $(SRC)\cm.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
|
310 $(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
|
311 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 312 $(EMACS_ROOT)\src\config.h \ |
| 313 $(SRC)\cm.h \ | |
| 314 $(SRC)\termhooks.h | |
| 315 | |
| 316 $(BLD)\cmds.obj : \ | |
| 317 $(SRC)\cmds.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
|
318 $(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
|
319 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 320 $(EMACS_ROOT)\src\config.h \ |
| 321 $(SRC)\lisp.h \ | |
| 322 $(SRC)\commands.h \ | |
| 323 $(SRC)\buffer.h \ | |
| 324 $(SRC)\syntax.h | |
| 325 | |
| 326 $(BLD)\data.obj : \ | |
| 327 $(SRC)\data.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
|
328 $(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
|
329 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 330 $(EMACS_ROOT)\src\config.h \ |
| 331 $(SRC)\lisp.h \ | |
| 332 $(SRC)\puresize.h \ | |
| 333 $(SRC)\buffer.h \ | |
| 334 $(SRC)\syssignal.h | |
| 335 | |
| 336 $(BLD)\dired.obj : \ | |
| 337 $(SRC)\dired.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
|
338 $(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
|
339 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 340 $(EMACS_ROOT)\src\config.h \ |
| 341 $(SRC)\vmsdir.h \ | |
| 342 $(SRC)\ndir.h \ | |
| 343 $(SRC)\lisp.h \ | |
| 344 $(SRC)\buffer.h \ | |
| 345 $(SRC)\commands.h \ | |
| 346 $(SRC)\regex.h | |
| 347 | |
| 348 $(BLD)\dispnew.obj : \ | |
| 349 $(SRC)\dispnew.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
|
350 $(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
|
351 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 352 $(EMACS_ROOT)\src\config.h \ |
| 353 $(SRC)\lisp.h \ | |
| 354 $(SRC)\termchar.h \ | |
| 355 $(SRC)\termopts.h \ | |
| 356 $(SRC)\termhooks.h \ | |
| 357 $(SRC)\cm.h \ | |
| 358 $(SRC)\buffer.h \ | |
| 359 $(SRC)\frame.h \ | |
| 360 $(SRC)\window.h \ | |
| 361 $(SRC)\commands.h \ | |
| 362 $(SRC)\disptab.h \ | |
| 363 $(SRC)\indent.h \ | |
| 364 $(SRC)\dispextern.h \ | |
| 365 $(SRC)\intervals.h \ | |
| 366 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 367 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 368 $(SRC)\systty.h \ | |
| 369 $(SRC)\xterm.h \ | |
| 370 $(SRC)\vmstime.h \ | |
| 371 $(SRC)\systime.h | |
| 372 | |
| 373 $(BLD)\doc.obj : \ | |
| 374 $(SRC)\doc.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
|
375 $(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
|
376 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 377 $(EMACS_ROOT)\src\config.h \ |
| 378 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 379 $(SRC)\lisp.h \ | |
| 380 $(SRC)\buffer.h \ | |
| 381 $(SRC)\keyboard.h | |
| 382 | |
| 383 $(BLD)\doprnt.obj : \ | |
| 384 $(SRC)\doprnt.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
|
385 $(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
|
386 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 387 $(EMACS_ROOT)\src\config.h |
| 388 | |
| 389 $(BLD)\dosfns.obj : \ | |
| 390 $(SRC)\dosfns.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
|
391 $(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
|
392 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 393 $(EMACS_ROOT)\src\config.h \ |
| 394 $(SRC)\lisp.h \ | |
| 395 $(SRC)\buffer.h \ | |
| 396 $(SRC)\termchar.h \ | |
| 397 $(SRC)\termhooks.h \ | |
| 398 $(SRC)\frame.h \ | |
| 399 $(SRC)\dosfns.h \ | |
| 400 $(SRC)\msdos.h | |
| 401 | |
| 402 $(BLD)\editfns.obj : \ | |
| 403 $(SRC)\editfns.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
|
404 $(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
|
405 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 406 $(EMACS_ROOT)\src\config.h \ |
| 407 $(SRC)\uaf.h \ | |
| 408 $(SRC)\vms-pwd.h \ | |
| 409 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 410 $(SRC)\lisp.h \ | |
| 411 $(SRC)\dispextern.h \ | |
| 412 $(SRC)\intervals.h \ | |
| 413 $(SRC)\buffer.h \ | |
| 414 $(SRC)\window.h \ | |
| 415 $(SRC)\vmstime.h \ | |
| 416 $(SRC)\systime.h | |
| 417 | |
| 418 $(BLD)\emacs.obj : \ | |
| 419 $(SRC)\emacs.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
|
420 $(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
|
421 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 422 $(EMACS_ROOT)\src\config.h \ |
| 423 $(SRC)\lisp.h \ | |
| 424 $(SRC)\commands.h \ | |
| 425 $(SRC)\dispextern.h \ | |
| 426 $(SRC)\intervals.h \ | |
| 427 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 428 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 429 $(SRC)\systty.h \ | |
| 430 $(SRC)\syssignal.h \ | |
| 431 $(SRC)\process.h | |
| 432 | |
| 433 $(BLD)\eval.obj : \ | |
| 434 $(SRC)\eval.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
|
435 $(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
|
436 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 437 $(EMACS_ROOT)\src\config.h \ |
| 438 $(SRC)\lisp.h \ | |
| 439 $(SRC)\blockinput.h \ | |
| 440 $(SRC)\commands.h \ | |
| 441 $(SRC)\keyboard.h | |
| 442 | |
| 443 $(BLD)\fileio.obj : \ | |
| 444 $(SRC)\fileio.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
|
445 $(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
|
446 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 447 $(EMACS_ROOT)\src\config.h \ |
| 448 $(SRC)\uaf.h \ | |
| 449 $(SRC)\vms-pwd.h \ | |
| 450 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 451 $(SRC)\msdos.h \ | |
| 452 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 453 $(SRC)\vmsdir.h \ | |
| 454 $(SRC)\lisp.h \ | |
| 455 $(SRC)\dispextern.h \ | |
| 456 $(SRC)\intervals.h \ | |
| 457 $(SRC)\buffer.h \ | |
| 458 $(SRC)\window.h \ | |
| 459 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 460 $(SRC)\vmstime.h \ | |
| 461 $(SRC)\systime.h | |
| 462 | |
| 463 $(BLD)\filelock.obj : \ | |
| 464 $(SRC)\filelock.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
|
465 $(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
|
466 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 467 $(EMACS_ROOT)\src\config.h \ |
| 468 $(SRC)\uaf.h \ | |
| 469 $(SRC)\vms-pwd.h \ | |
| 470 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 471 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 472 $(SRC)\lisp.h \ | |
| 473 $(EMACS_ROOT)\src\paths.h \ | |
| 474 $(SRC)\buffer.h \ | |
| 475 $(SRC)\vmsdir.h \ | |
| 476 $(SRC)\ndir.h | |
| 477 | |
| 478 $(BLD)\filemode.obj : \ | |
| 479 $(SRC)\filemode.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
|
480 $(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
|
481 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 482 $(EMACS_ROOT)\src\config.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
|
483 $(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
|
484 $(SRC)\m\intel386.h \ |
| 9803 | 485 $(SRC)\config.h |
| 486 | |
| 487 $(BLD)\floatfns.obj : \ | |
| 488 $(SRC)\floatfns.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
|
489 $(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
|
490 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 491 $(EMACS_ROOT)\src\config.h \ |
| 492 $(SRC)\lisp.h \ | |
| 493 $(SRC)\syssignal.h | |
| 494 | |
| 495 $(BLD)\fns.obj : \ | |
| 496 $(SRC)\fns.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
|
497 $(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
|
498 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 499 $(EMACS_ROOT)\src\config.h \ |
| 500 $(SRC)\lisp.h \ | |
| 501 $(SRC)\commands.h \ | |
| 502 $(SRC)\buffer.h \ | |
| 503 $(SRC)\keyboard.h \ | |
| 504 $(SRC)\dispextern.h \ | |
| 505 $(SRC)\intervals.h | |
| 506 | |
| 507 $(BLD)\frame.obj : \ | |
| 508 $(SRC)\frame.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
|
509 $(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
|
510 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 511 $(EMACS_ROOT)\src\config.h \ |
| 512 $(SRC)\lisp.h \ | |
| 513 $(SRC)\frame.h \ | |
| 514 $(SRC)\termhooks.h \ | |
| 515 $(SRC)\window.h \ | |
| 516 $(SRC)\buffer.h \ | |
| 517 $(SRC)\commands.h \ | |
| 518 $(SRC)\keyboard.h | |
| 519 | |
| 520 $(BLD)\getloadavg.obj : \ | |
| 521 $(SRC)\getloadavg.c \ | |
| 522 $(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
|
523 $(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
|
524 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 525 $(EMACS_ROOT)\src\config.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
|
526 $(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
|
527 $(SRC)\m\intel386.h \ |
| 9803 | 528 $(SRC)\config.h \ |
| 529 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 530 | |
| 531 $(BLD)\gmalloc.obj : \ | |
| 532 $(SRC)\gmalloc.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
|
533 $(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
|
534 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 535 $(EMACS_ROOT)\src\config.h \ |
| 536 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 537 $(SRC)\getpagesize.h | |
| 538 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c | |
| 539 | |
| 540 $(BLD)\hftctl.obj : \ | |
| 541 $(SRC)\hftctl.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
|
542 $(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
|
543 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 544 $(EMACS_ROOT)\src\config.h \ |
| 545 $(EMACS_ROOT)\nt\inc\sys\ioctl.h | |
| 546 | |
| 547 $(BLD)\indent.obj : \ | |
| 548 $(SRC)\indent.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
|
549 $(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
|
550 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 551 $(EMACS_ROOT)\src\config.h \ |
| 552 $(SRC)\lisp.h \ | |
| 553 $(SRC)\buffer.h \ | |
| 554 $(SRC)\indent.h \ | |
| 555 $(SRC)\frame.h \ | |
| 556 $(SRC)\window.h \ | |
| 557 $(SRC)\termchar.h \ | |
| 558 $(SRC)\termopts.h \ | |
| 559 $(SRC)\disptab.h \ | |
| 560 $(SRC)\dispextern.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
561 $(SRC)\intervals.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
562 $(SRC)\region-cache.h |
| 9803 | 563 |
| 564 $(BLD)\insdel.obj : \ | |
| 565 $(SRC)\insdel.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
|
566 $(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
|
567 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 568 $(EMACS_ROOT)\src\config.h \ |
| 569 $(SRC)\lisp.h \ | |
| 570 $(SRC)\dispextern.h \ | |
| 571 $(SRC)\intervals.h \ | |
| 572 $(SRC)\buffer.h \ | |
| 573 $(SRC)\window.h \ | |
| 574 $(SRC)\blockinput.h | |
| 575 | |
| 576 $(BLD)\intervals.obj : \ | |
| 577 $(SRC)\intervals.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
|
578 $(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
|
579 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 580 $(EMACS_ROOT)\src\config.h \ |
| 581 $(SRC)\lisp.h \ | |
| 582 $(SRC)\dispextern.h \ | |
| 583 $(SRC)\intervals.h \ | |
| 584 $(SRC)\buffer.h \ | |
| 585 $(SRC)\puresize.h | |
| 586 $(CC) $(CFLAGS) -Fo$@ intervals.c | |
| 587 | |
| 588 $(BLD)\keyboard.obj : \ | |
| 589 $(SRC)\keyboard.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
|
590 $(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
|
591 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 592 $(EMACS_ROOT)\src\config.h \ |
| 593 $(SRC)\termchar.h \ | |
| 594 $(SRC)\termopts.h \ | |
| 595 $(SRC)\lisp.h \ | |
| 596 $(SRC)\termhooks.h \ | |
| 597 $(SRC)\macros.h \ | |
| 598 $(SRC)\frame.h \ | |
| 599 $(SRC)\window.h \ | |
| 600 $(SRC)\commands.h \ | |
| 601 $(SRC)\buffer.h \ | |
| 602 $(SRC)\disptab.h \ | |
| 603 $(SRC)\keyboard.h \ | |
| 604 $(SRC)\dispextern.h \ | |
| 605 $(SRC)\intervals.h \ | |
| 606 $(SRC)\blockinput.h \ | |
| 607 $(SRC)\msdos.h \ | |
| 608 $(SRC)\syssignal.h \ | |
| 609 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 610 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 611 $(SRC)\systty.h \ | |
| 612 $(SRC)\xterm.h \ | |
| 613 $(SRC)\vmstime.h \ | |
| 614 $(SRC)\systime.h | |
| 615 | |
| 616 $(BLD)\keymap.obj : \ | |
| 617 $(SRC)\keymap.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
|
618 $(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
|
619 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 620 $(EMACS_ROOT)\src\config.h \ |
| 621 $(SRC)\lisp.h \ | |
| 622 $(SRC)\commands.h \ | |
| 623 $(SRC)\buffer.h \ | |
| 624 $(SRC)\keyboard.h \ | |
| 625 $(SRC)\termhooks.h \ | |
| 626 $(SRC)\blockinput.h | |
| 627 | |
| 628 $(BLD)\lastfile.obj : \ | |
| 629 $(SRC)\lastfile.c | |
| 630 | |
| 631 $(BLD)\lread.obj : \ | |
| 632 $(SRC)\lread.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
|
633 $(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
|
634 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 635 $(EMACS_ROOT)\src\config.h \ |
| 636 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 637 $(SRC)\lisp.h \ | |
| 638 $(SRC)\buffer.h \ | |
| 639 $(EMACS_ROOT)\src\paths.h \ | |
| 640 $(SRC)\commands.h \ | |
| 641 $(SRC)\keyboard.h \ | |
| 642 $(SRC)\termhooks.h \ | |
| 643 $(SRC)\msdos.h | |
| 644 | |
| 645 $(BLD)\macros.obj : \ | |
| 646 $(SRC)\macros.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
|
647 $(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
|
648 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 649 $(EMACS_ROOT)\src\config.h \ |
| 650 $(SRC)\lisp.h \ | |
| 651 $(SRC)\macros.h \ | |
| 652 $(SRC)\commands.h \ | |
| 653 $(SRC)\buffer.h \ | |
| 654 $(SRC)\window.h | |
| 655 | |
| 656 $(BLD)\marker.obj : \ | |
| 657 $(SRC)\marker.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
|
658 $(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
|
659 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 660 $(EMACS_ROOT)\src\config.h \ |
| 661 $(SRC)\lisp.h \ | |
| 662 $(SRC)\buffer.h | |
| 663 | |
| 664 $(BLD)\minibuf.obj : \ | |
| 665 $(SRC)\minibuf.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
|
666 $(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
|
667 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 668 $(EMACS_ROOT)\src\config.h \ |
| 669 $(SRC)\lisp.h \ | |
| 670 $(SRC)\commands.h \ | |
| 671 $(SRC)\buffer.h \ | |
| 672 $(SRC)\dispextern.h \ | |
| 673 $(SRC)\frame.h \ | |
| 674 $(SRC)\window.h \ | |
| 675 $(SRC)\syntax.h | |
| 676 | |
| 677 $(BLD)\mocklisp.obj : \ | |
| 678 $(SRC)\mocklisp.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
|
679 $(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
|
680 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 681 $(EMACS_ROOT)\src\config.h \ |
| 682 $(SRC)\lisp.h \ | |
| 683 $(SRC)\buffer.h | |
| 684 | |
| 685 $(BLD)\nt.obj : \ | |
| 686 $(SRC)\nt.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
|
687 $(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
|
688 $(SRC)\m\intel386.h \ |
| 9803 | 689 $(SRC)\config.h \ |
| 690 $(SRC)\lisp.h \ | |
| 691 $(EMACS_ROOT)\nt\inc\pwd.h \ | |
| 692 $(SRC)\ntheap.h | |
| 693 | |
| 694 $(BLD)\ntheap.obj : \ | |
| 695 $(SRC)\ntheap.c \ | |
| 696 $(SRC)\ntheap.h | |
| 697 | |
| 698 $(BLD)\ntinevt.obj : \ | |
| 699 $(SRC)\ntinevt.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
|
700 $(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
|
701 $(SRC)\m\intel386.h \ |
| 9803 | 702 $(SRC)\config.h \ |
| 703 $(SRC)\lisp.h \ | |
| 704 $(SRC)\frame.h \ | |
| 705 $(SRC)\blockinput.h \ | |
| 706 $(SRC)\termhooks.h | |
| 707 | |
| 708 $(BLD)\ntproc.obj : \ | |
| 709 $(SRC)\ntproc.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
|
710 $(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
|
711 $(SRC)\m\intel386.h \ |
| 9803 | 712 $(SRC)\config.h \ |
| 713 $(SRC)\lisp.h \ | |
| 714 $(SRC)\nt.h \ | |
| 715 $(SRC)\vmstime.h \ | |
| 716 $(SRC)\systime.h | |
| 717 | |
| 718 $(BLD)\ntterm.obj : \ | |
| 719 $(SRC)\ntterm.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
|
720 $(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
|
721 $(SRC)\m\intel386.h \ |
| 9803 | 722 $(SRC)\config.h \ |
| 723 $(SRC)\lisp.h \ | |
| 724 $(SRC)\frame.h \ | |
| 725 $(SRC)\disptab.h \ | |
| 726 $(SRC)\termhooks.h \ | |
| 727 $(SRC)\ntinevt.h | |
| 728 | |
| 729 $(BLD)\prefix-args.obj : \ | |
| 730 $(SRC)\prefix-args.c | |
| 731 | |
| 732 $(BLD)\print.obj : \ | |
| 733 $(SRC)\print.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
|
734 $(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
|
735 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 736 $(EMACS_ROOT)\src\config.h \ |
| 737 $(SRC)\lisp.h \ | |
| 738 $(SRC)\buffer.h \ | |
| 739 $(SRC)\frame.h \ | |
| 740 $(SRC)\window.h \ | |
| 741 $(SRC)\process.h \ | |
| 742 $(SRC)\termchar.h \ | |
| 743 $(SRC)\dispextern.h \ | |
| 744 $(SRC)\intervals.h | |
| 745 | |
| 746 $(BLD)\process.obj : \ | |
| 747 $(SRC)\process.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
|
748 $(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
|
749 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 750 $(EMACS_ROOT)\src\config.h \ |
| 751 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 752 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 753 $(SRC)\systty.h \ | |
| 754 $(SRC)\window.h \ | |
| 755 $(SRC)\buffer.h \ | |
| 756 $(SRC)\process.h \ | |
| 757 $(SRC)\termhooks.h \ | |
| 758 $(SRC)\commands.h \ | |
| 759 $(SRC)\frame.h \ | |
| 760 $(SRC)\syssignal.h \ | |
| 761 $(SRC)\vmsproc.h \ | |
| 762 $(SRC)\syswait.h \ | |
| 763 $(SRC)\lisp.h \ | |
| 764 $(SRC)\vmstime.h \ | |
| 765 $(SRC)\systime.h \ | |
| 766 $(SRC)\termopts.h | |
| 767 | |
| 768 $(BLD)\ralloc.obj : \ | |
| 769 $(SRC)\ralloc.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
|
770 $(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
|
771 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 772 $(EMACS_ROOT)\src\config.h \ |
| 773 $(SRC)\lisp.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
|
774 $(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
|
775 $(SRC)\m\intel386.h \ |
| 9803 | 776 $(SRC)\config.h \ |
| 777 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 778 $(SRC)\getpagesize.h | |
| 779 | |
| 780 $(BLD)\regex.obj : \ | |
| 781 $(SRC)\regex.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
|
782 $(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
|
783 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 784 $(EMACS_ROOT)\src\config.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
|
785 $(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
|
786 $(SRC)\m\intel386.h \ |
| 9803 | 787 $(SRC)\config.h \ |
| 788 $(SRC)\lisp.h \ | |
| 789 $(SRC)\buffer.h \ | |
| 790 $(SRC)\syntax.h \ | |
| 791 $(SRC)\regex.h | |
| 792 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
793 $(BLD)\region-cache.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
794 $(SRC)\region-cache.c \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
795 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
796 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
797 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
798 $(SRC)\lisp.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
799 $(SRC)\buffer.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
800 $(SRC)\region-cache.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
801 |
| 9803 | 802 $(BLD)\scroll.obj : \ |
| 803 $(SRC)\scroll.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
|
804 $(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
|
805 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 806 $(EMACS_ROOT)\src\config.h \ |
| 807 $(SRC)\termchar.h \ | |
| 808 $(SRC)\lisp.h \ | |
| 809 $(SRC)\dispextern.h \ | |
| 810 $(SRC)\frame.h | |
| 811 | |
| 812 $(BLD)\search.obj : \ | |
| 813 $(SRC)\search.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
|
814 $(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
|
815 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 816 $(EMACS_ROOT)\src\config.h \ |
| 817 $(SRC)\lisp.h \ | |
| 818 $(SRC)\syntax.h \ | |
| 819 $(SRC)\buffer.h \ | |
| 820 $(SRC)\commands.h \ | |
| 821 $(SRC)\blockinput.h \ | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
822 $(SRC)\regex.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
823 $(SRC)\region-cache.h |
| 9803 | 824 |
| 11742 | 825 $(BLD)\strftime.obj : \ |
| 826 $(SRC)\strftime.c \ | |
| 827 $(EMACS_ROOT)\src\s\windowsnt.h \ | |
| 828 $(EMACS_ROOT)\src\m\intel386.h \ | |
| 829 $(EMACS_ROOT)\src\config.h | |
| 830 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c | |
| 831 | |
| 9803 | 832 $(BLD)\sunfns.obj : \ |
| 833 $(SRC)\sunfns.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
|
834 $(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
|
835 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 836 $(EMACS_ROOT)\src\config.h \ |
| 837 $(SRC)\lisp.h \ | |
| 838 $(SRC)\window.h \ | |
| 839 $(SRC)\buffer.h \ | |
| 840 $(SRC)\termhooks.h | |
| 841 | |
| 842 $(BLD)\syntax.obj : \ | |
| 843 $(SRC)\syntax.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
|
844 $(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
|
845 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 846 $(EMACS_ROOT)\src\config.h \ |
| 847 $(SRC)\lisp.h \ | |
| 848 $(SRC)\commands.h \ | |
| 849 $(SRC)\buffer.h \ | |
| 850 $(SRC)\syntax.h | |
| 851 | |
| 852 $(BLD)\sysdep.obj : \ | |
| 853 $(SRC)\sysdep.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
|
854 $(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
|
855 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 856 $(EMACS_ROOT)\src\config.h \ |
| 857 $(SRC)\lisp.h \ | |
| 858 $(SRC)\blockinput.h \ | |
| 859 $(SRC)\dosfns.h \ | |
| 860 $(SRC)\msdos.h \ | |
| 861 $(EMACS_ROOT)\nt\inc\sys\param.h \ | |
| 862 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 863 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ | |
| 864 $(EMACS_ROOT)\nt\inc\sys\file.h \ | |
| 865 $(SRC)\systty.h \ | |
| 866 $(SRC)\vmsproc.h \ | |
| 867 $(SRC)\syswait.h \ | |
| 868 $(SRC)\frame.h \ | |
| 869 $(SRC)\window.h \ | |
| 870 $(SRC)\termhooks.h \ | |
| 871 $(SRC)\termchar.h \ | |
| 872 $(SRC)\termopts.h \ | |
| 873 $(SRC)\dispextern.h \ | |
| 874 $(SRC)\process.h \ | |
| 875 $(SRC)\vmsdir.h \ | |
| 876 $(SRC)\ndir.h \ | |
| 877 $(SRC)\syssignal.h \ | |
| 878 $(SRC)\vmstime.h \ | |
| 879 $(SRC)\systime.h \ | |
| 880 $(SRC)\uaf.h \ | |
| 881 $(SRC)\vms-pwd.h \ | |
| 882 $(EMACS_ROOT)\src\acldef.h \ | |
| 883 $(EMACS_ROOT)\src\chpdef.h | |
| 884 | |
| 885 $(BLD)\term.obj : \ | |
| 886 $(SRC)\term.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
|
887 $(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
|
888 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 889 $(EMACS_ROOT)\src\config.h \ |
| 890 $(SRC)\termchar.h \ | |
| 891 $(SRC)\termopts.h \ | |
| 892 $(SRC)\cm.h \ | |
| 893 $(SRC)\lisp.h \ | |
| 894 $(SRC)\frame.h \ | |
| 895 $(SRC)\disptab.h \ | |
| 896 $(SRC)\termhooks.h \ | |
| 897 $(SRC)\keyboard.h | |
| 898 | |
| 899 $(BLD)\termcap.obj : \ | |
| 900 $(SRC)\termcap.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
|
901 $(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
|
902 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 903 $(EMACS_ROOT)\src\config.h \ |
| 904 $(EMACS_ROOT)\nt\inc\sys\file.h | |
| 905 | |
| 906 $(BLD)\terminfo.obj : \ | |
| 907 $(SRC)\terminfo.c | |
| 908 | |
| 909 $(BLD)\textprop.obj : \ | |
| 910 $(SRC)\textprop.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
|
911 $(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
|
912 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 913 $(EMACS_ROOT)\src\config.h \ |
| 914 $(SRC)\lisp.h \ | |
| 915 $(SRC)\dispextern.h \ | |
| 916 $(SRC)\intervals.h \ | |
| 917 $(SRC)\buffer.h \ | |
| 918 $(SRC)\window.h | |
| 919 | |
| 920 $(BLD)\tparam.obj : \ | |
| 921 $(SRC)\tparam.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
|
922 $(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
|
923 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 924 $(EMACS_ROOT)\src\config.h |
| 925 | |
| 926 $(BLD)\undo.obj : \ | |
| 927 $(SRC)\undo.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
|
928 $(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
|
929 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 930 $(EMACS_ROOT)\src\config.h \ |
| 931 $(SRC)\lisp.h \ | |
| 932 $(SRC)\buffer.h \ | |
| 933 $(SRC)\commands.h | |
| 934 | |
| 935 $(BLD)\unexnt.obj : \ | |
| 936 $(SRC)\unexnt.c \ | |
| 937 $(SRC)\ntheap.h | |
| 938 | |
|
11751
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
939 $(BLD)\vm-limit.obj : \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
940 $(SRC)\vm-limit.c \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
941 $(EMACS_ROOT)\src\s\windowsnt.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
942 $(EMACS_ROOT)\src\m\intel386.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
943 $(EMACS_ROOT)\src\config.h \ |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
944 $(SRC)\mem-limits.h |
|
422c7ecfe205
(region-cache.obj,vm-limit.obj): Dependencies defined.
Richard M. Stallman <rms@gnu.org>
parents:
11742
diff
changeset
|
945 |
| 9803 | 946 $(BLD)\widget.obj : \ |
| 947 $(SRC)\widget.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
|
948 $(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
|
949 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 950 $(EMACS_ROOT)\src\config.h \ |
| 951 $(SRC)\lisp.h \ | |
| 952 $(SRC)\xterm.h \ | |
| 953 $(SRC)\frame.h \ | |
| 954 $(SRC)\dispextern.h \ | |
| 955 $(SRC)\widget.h \ | |
| 956 $(SRC)\widgetprv.h | |
| 957 | |
| 958 $(BLD)\window.obj : \ | |
| 959 $(SRC)\window.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
|
960 $(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
|
961 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 962 $(EMACS_ROOT)\src\config.h \ |
| 963 $(SRC)\lisp.h \ | |
| 964 $(SRC)\buffer.h \ | |
| 965 $(SRC)\frame.h \ | |
| 966 $(SRC)\window.h \ | |
| 967 $(SRC)\commands.h \ | |
| 968 $(SRC)\indent.h \ | |
| 969 $(SRC)\termchar.h \ | |
| 970 $(SRC)\disptab.h \ | |
| 971 $(SRC)\keyboard.h | |
| 972 | |
| 973 $(BLD)\xdisp.obj : \ | |
| 974 $(SRC)\xdisp.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
|
975 $(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
|
976 $(EMACS_ROOT)\src\m\intel386.h \ |
| 9803 | 977 $(EMACS_ROOT)\src\config.h \ |
| 978 $(SRC)\lisp.h \ | |
| 979 $(SRC)\frame.h \ | |
| 980 $(SRC)\window.h \ | |
| 981 $(SRC)\termchar.h \ | |
| 982 $(SRC)\buffer.h \ | |
| 983 $(SRC)\indent.h \ | |
| 984 $(SRC)\commands.h \ | |
| 985 $(SRC)\macros.h \ | |
| 986 $(SRC)\disptab.h \ | |
| 987 $(SRC)\termhooks.h \ | |
| 988 $(SRC)\dispextern.h \ | |
| 989 $(SRC)\intervals.h |
