comparison src/makefile.nt @ 16593:4ed80eda6fac

Use new names for w32 files
author Geoff Voelker <voelker@cs.washington.edu>
date Tue, 19 Nov 1996 07:04:49 +0000
parents 80562f089595
children 380c7e461c14
comparison
equal deleted inserted replaced
16592:a5e9fa379097 16593:4ed80eda6fac
49 !else 49 !else
50 TRES = $(BLD)\emacs.rbj 50 TRES = $(BLD)\emacs.rbj
51 !endif 51 !endif
52 TLASTLIB = $(BLD)\lastfile.lib 52 TLASTLIB = $(BLD)\lastfile.lib
53 53
54 # see comments in allocate_heap in ntheap.c before changing any of the 54 # see comments in allocate_heap in w32heap.c before changing any of the
55 # -stack, -heap, or -base settings. 55 # -stack, -heap, or -base settings.
56 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map 56 LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -debugtype:cv -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map
57 57
58 # 58 #
59 # Split up the objects into two sets so that we don't run out of 59 # Split up the objects into two sets so that we don't run out of
88 $(BLD)\macros.obj \ 88 $(BLD)\macros.obj \
89 $(BLD)\marker.obj \ 89 $(BLD)\marker.obj \
90 $(BLD)\minibuf.obj \ 90 $(BLD)\minibuf.obj \
91 $(BLD)\mocklisp.obj 91 $(BLD)\mocklisp.obj
92 92
93 OBJ2 = $(BLD)\nt.obj \ 93 OBJ2 = $(BLD)\w32.obj \
94 $(BLD)\ntheap.obj \ 94 $(BLD)\w32heap.obj \
95 $(BLD)\ntinevt.obj \ 95 $(BLD)\w32inevt.obj \
96 $(BLD)\ntproc.obj \ 96 $(BLD)\w32proc.obj \
97 $(BLD)\ntterm.obj \ 97 $(BLD)\w32console.obj \
98 $(BLD)\print.obj \ 98 $(BLD)\print.obj \
99 $(BLD)\process.obj \ 99 $(BLD)\process.obj \
100 $(BLD)\regex.obj \ 100 $(BLD)\regex.obj \
101 $(BLD)\scroll.obj \ 101 $(BLD)\scroll.obj \
102 $(BLD)\search.obj \ 102 $(BLD)\search.obj \
104 $(BLD)\sysdep.obj \ 104 $(BLD)\sysdep.obj \
105 $(BLD)\term.obj \ 105 $(BLD)\term.obj \
106 $(BLD)\termcap.obj \ 106 $(BLD)\termcap.obj \
107 $(BLD)\tparam.obj \ 107 $(BLD)\tparam.obj \
108 $(BLD)\undo.obj \ 108 $(BLD)\undo.obj \
109 $(BLD)\unexnt.obj \ 109 $(BLD)\unexw32.obj \
110 $(BLD)\window.obj \ 110 $(BLD)\window.obj \
111 $(BLD)\xdisp.obj \ 111 $(BLD)\xdisp.obj \
112 $(BLD)\casetab.obj \ 112 $(BLD)\casetab.obj \
113 $(BLD)\floatfns.obj \ 113 $(BLD)\floatfns.obj \
114 $(BLD)\frame.obj \ 114 $(BLD)\frame.obj \
237 # 237 #
238 # These files are the ones that compile conditionally on CANNOT_DUMP... 238 # These files are the ones that compile conditionally on CANNOT_DUMP...
239 # this target is mostly used for debugging. 239 # this target is mostly used for debugging.
240 # 240 #
241 cleandump:; cd $(BLD) 241 cleandump:; cd $(BLD)
242 - $(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 242 - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj w32heap.obj unexw32.obj
243 cd ..\.. 243 cd ..\..
244 244
245 245
246 ### DEPENDENCIES ### 246 ### DEPENDENCIES ###
247 247
248 EMACS_ROOT = .. 248 EMACS_ROOT = ..
249 SRC = . 249 SRC = .
250 250
251 $(BLD)\abbrev.obj : \ 251 $(BLD)\abbrev.obj : \
252 $(SRC)\abbrev.c \ 252 $(SRC)\abbrev.c \
253 $(EMACS_ROOT)\src\s\windowsnt.h \ 253 $(EMACS_ROOT)\src\s\ms-w32.h \
254 $(EMACS_ROOT)\src\m\intel386.h \ 254 $(EMACS_ROOT)\src\m\intel386.h \
255 $(EMACS_ROOT)\src\config.h \ 255 $(EMACS_ROOT)\src\config.h \
256 $(SRC)\lisp.h \ 256 $(SRC)\lisp.h \
257 $(SRC)\commands.h \ 257 $(SRC)\commands.h \
258 $(SRC)\buffer.h \ 258 $(SRC)\buffer.h \
259 $(SRC)\window.h 259 $(SRC)\window.h
260 260
261 $(BLD)\alloc.obj : \ 261 $(BLD)\alloc.obj : \
262 $(SRC)\alloc.c \ 262 $(SRC)\alloc.c \
263 $(EMACS_ROOT)\src\s\windowsnt.h \ 263 $(EMACS_ROOT)\src\s\ms-w32.h \
264 $(EMACS_ROOT)\src\m\intel386.h \ 264 $(EMACS_ROOT)\src\m\intel386.h \
265 $(EMACS_ROOT)\src\config.h \ 265 $(EMACS_ROOT)\src\config.h \
266 $(SRC)\lisp.h \ 266 $(SRC)\lisp.h \
267 $(SRC)\dispextern.h \ 267 $(SRC)\dispextern.h \
268 $(SRC)\intervals.h \ 268 $(SRC)\intervals.h \
273 $(SRC)\blockinput.h \ 273 $(SRC)\blockinput.h \
274 $(SRC)\syssignal.h 274 $(SRC)\syssignal.h
275 275
276 $(BLD)\alloca.obj : \ 276 $(BLD)\alloca.obj : \
277 $(SRC)\alloca.c \ 277 $(SRC)\alloca.c \
278 $(EMACS_ROOT)\src\s\windowsnt.h \ 278 $(EMACS_ROOT)\src\s\ms-w32.h \
279 $(EMACS_ROOT)\src\m\intel386.h \ 279 $(EMACS_ROOT)\src\m\intel386.h \
280 $(EMACS_ROOT)\src\config.h \ 280 $(EMACS_ROOT)\src\config.h \
281 $(SRC)\s\windowsnt.h \ 281 $(SRC)\s\ms-w32.h \
282 $(SRC)\m\intel386.h \ 282 $(SRC)\m\intel386.h \
283 $(SRC)\config.h \ 283 $(SRC)\config.h \
284 $(SRC)\blockinput.h 284 $(SRC)\blockinput.h
285 285
286 $(BLD)\buffer.obj : \ 286 $(BLD)\buffer.obj : \
287 $(SRC)\buffer.c \ 287 $(SRC)\buffer.c \
288 $(EMACS_ROOT)\nt\inc\sys\param.h \ 288 $(EMACS_ROOT)\nt\inc\sys\param.h \
289 $(EMACS_ROOT)\src\s\windowsnt.h \ 289 $(EMACS_ROOT)\src\s\ms-w32.h \
290 $(EMACS_ROOT)\src\m\intel386.h \ 290 $(EMACS_ROOT)\src\m\intel386.h \
291 $(EMACS_ROOT)\src\config.h \ 291 $(EMACS_ROOT)\src\config.h \
292 $(SRC)\lisp.h \ 292 $(SRC)\lisp.h \
293 $(SRC)\dispextern.h \ 293 $(SRC)\dispextern.h \
294 $(SRC)\intervals.h \ 294 $(SRC)\intervals.h \
314 $(SRC)\window.h \ 314 $(SRC)\window.h \
315 $(SRC)\mocklisp.h 315 $(SRC)\mocklisp.h
316 316
317 $(BLD)\callproc.obj : \ 317 $(BLD)\callproc.obj : \
318 $(SRC)\callproc.c \ 318 $(SRC)\callproc.c \
319 $(EMACS_ROOT)\src\s\windowsnt.h \ 319 $(EMACS_ROOT)\src\s\ms-w32.h \
320 $(EMACS_ROOT)\src\m\intel386.h \ 320 $(EMACS_ROOT)\src\m\intel386.h \
321 $(EMACS_ROOT)\src\config.h \ 321 $(EMACS_ROOT)\src\config.h \
322 $(SRC)\msdos.h \ 322 $(SRC)\msdos.h \
323 $(EMACS_ROOT)\nt\inc\sys\param.h \ 323 $(EMACS_ROOT)\nt\inc\sys\param.h \
324 $(SRC)\lisp.h \ 324 $(SRC)\lisp.h \
330 $(EMACS_ROOT)\nt\inc\sys\file.h \ 330 $(EMACS_ROOT)\nt\inc\sys\file.h \
331 $(SRC)\systty.h 331 $(SRC)\systty.h
332 332
333 $(BLD)\casefiddle.obj : \ 333 $(BLD)\casefiddle.obj : \
334 $(SRC)\casefiddle.c \ 334 $(SRC)\casefiddle.c \
335 $(EMACS_ROOT)\src\s\windowsnt.h \ 335 $(EMACS_ROOT)\src\s\ms-w32.h \
336 $(EMACS_ROOT)\src\m\intel386.h \ 336 $(EMACS_ROOT)\src\m\intel386.h \
337 $(EMACS_ROOT)\src\config.h \ 337 $(EMACS_ROOT)\src\config.h \
338 $(SRC)\lisp.h \ 338 $(SRC)\lisp.h \
339 $(SRC)\buffer.h \ 339 $(SRC)\buffer.h \
340 $(SRC)\commands.h \ 340 $(SRC)\commands.h \
341 $(SRC)\syntax.h 341 $(SRC)\syntax.h
342 $(CC) $(CFLAGS) -Fo$@ casefiddle.c 342 $(CC) $(CFLAGS) -Fo$@ casefiddle.c
343 343
344 $(BLD)\casetab.obj : \ 344 $(BLD)\casetab.obj : \
345 $(SRC)\casetab.c \ 345 $(SRC)\casetab.c \
346 $(EMACS_ROOT)\src\s\windowsnt.h \ 346 $(EMACS_ROOT)\src\s\ms-w32.h \
347 $(EMACS_ROOT)\src\m\intel386.h \ 347 $(EMACS_ROOT)\src\m\intel386.h \
348 $(EMACS_ROOT)\src\config.h \ 348 $(EMACS_ROOT)\src\config.h \
349 $(SRC)\lisp.h \ 349 $(SRC)\lisp.h \
350 $(SRC)\buffer.h 350 $(SRC)\buffer.h
351 351
352 $(BLD)\cm.obj : \ 352 $(BLD)\cm.obj : \
353 $(SRC)\cm.c \ 353 $(SRC)\cm.c \
354 $(EMACS_ROOT)\src\s\windowsnt.h \ 354 $(EMACS_ROOT)\src\s\ms-w32.h \
355 $(EMACS_ROOT)\src\m\intel386.h \ 355 $(EMACS_ROOT)\src\m\intel386.h \
356 $(EMACS_ROOT)\src\config.h \ 356 $(EMACS_ROOT)\src\config.h \
357 $(SRC)\cm.h \ 357 $(SRC)\cm.h \
358 $(SRC)\termhooks.h 358 $(SRC)\termhooks.h
359 359
360 $(BLD)\cmds.obj : \ 360 $(BLD)\cmds.obj : \
361 $(SRC)\cmds.c \ 361 $(SRC)\cmds.c \
362 $(EMACS_ROOT)\src\s\windowsnt.h \ 362 $(EMACS_ROOT)\src\s\ms-w32.h \
363 $(EMACS_ROOT)\src\m\intel386.h \ 363 $(EMACS_ROOT)\src\m\intel386.h \
364 $(EMACS_ROOT)\src\config.h \ 364 $(EMACS_ROOT)\src\config.h \
365 $(SRC)\lisp.h \ 365 $(SRC)\lisp.h \
366 $(SRC)\commands.h \ 366 $(SRC)\commands.h \
367 $(SRC)\buffer.h \ 367 $(SRC)\buffer.h \
368 $(SRC)\syntax.h 368 $(SRC)\syntax.h
369 369
370 $(BLD)\data.obj : \ 370 $(BLD)\data.obj : \
371 $(SRC)\data.c \ 371 $(SRC)\data.c \
372 $(EMACS_ROOT)\src\s\windowsnt.h \ 372 $(EMACS_ROOT)\src\s\ms-w32.h \
373 $(EMACS_ROOT)\src\m\intel386.h \ 373 $(EMACS_ROOT)\src\m\intel386.h \
374 $(EMACS_ROOT)\src\config.h \ 374 $(EMACS_ROOT)\src\config.h \
375 $(SRC)\lisp.h \ 375 $(SRC)\lisp.h \
376 $(SRC)\puresize.h \ 376 $(SRC)\puresize.h \
377 $(SRC)\buffer.h \ 377 $(SRC)\buffer.h \
378 $(SRC)\syssignal.h 378 $(SRC)\syssignal.h
379 379
380 $(BLD)\dired.obj : \ 380 $(BLD)\dired.obj : \
381 $(SRC)\dired.c \ 381 $(SRC)\dired.c \
382 $(EMACS_ROOT)\src\s\windowsnt.h \ 382 $(EMACS_ROOT)\src\s\ms-w32.h \
383 $(EMACS_ROOT)\src\m\intel386.h \ 383 $(EMACS_ROOT)\src\m\intel386.h \
384 $(EMACS_ROOT)\src\config.h \ 384 $(EMACS_ROOT)\src\config.h \
385 $(SRC)\vmsdir.h \ 385 $(SRC)\vmsdir.h \
386 $(SRC)\ndir.h \ 386 $(SRC)\ndir.h \
387 $(SRC)\lisp.h \ 387 $(SRC)\lisp.h \
389 $(SRC)\commands.h \ 389 $(SRC)\commands.h \
390 $(SRC)\regex.h 390 $(SRC)\regex.h
391 391
392 $(BLD)\dispnew.obj : \ 392 $(BLD)\dispnew.obj : \
393 $(SRC)\dispnew.c \ 393 $(SRC)\dispnew.c \
394 $(EMACS_ROOT)\src\s\windowsnt.h \ 394 $(EMACS_ROOT)\src\s\ms-w32.h \
395 $(EMACS_ROOT)\src\m\intel386.h \ 395 $(EMACS_ROOT)\src\m\intel386.h \
396 $(EMACS_ROOT)\src\config.h \ 396 $(EMACS_ROOT)\src\config.h \
397 $(SRC)\lisp.h \ 397 $(SRC)\lisp.h \
398 $(SRC)\termchar.h \ 398 $(SRC)\termchar.h \
399 $(SRC)\termopts.h \ 399 $(SRC)\termopts.h \
415 $(SRC)\vmstime.h \ 415 $(SRC)\vmstime.h \
416 $(SRC)\systime.h 416 $(SRC)\systime.h
417 417
418 $(BLD)\doc.obj : \ 418 $(BLD)\doc.obj : \
419 $(SRC)\doc.c \ 419 $(SRC)\doc.c \
420 $(EMACS_ROOT)\src\s\windowsnt.h \ 420 $(EMACS_ROOT)\src\s\ms-w32.h \
421 $(EMACS_ROOT)\src\m\intel386.h \ 421 $(EMACS_ROOT)\src\m\intel386.h \
422 $(EMACS_ROOT)\src\config.h \ 422 $(EMACS_ROOT)\src\config.h \
423 $(EMACS_ROOT)\nt\inc\sys\file.h \ 423 $(EMACS_ROOT)\nt\inc\sys\file.h \
424 $(SRC)\lisp.h \ 424 $(SRC)\lisp.h \
425 $(SRC)\buffer.h \ 425 $(SRC)\buffer.h \
426 $(SRC)\keyboard.h 426 $(SRC)\keyboard.h
427 427
428 $(BLD)\doprnt.obj : \ 428 $(BLD)\doprnt.obj : \
429 $(SRC)\doprnt.c \ 429 $(SRC)\doprnt.c \
430 $(EMACS_ROOT)\src\s\windowsnt.h \ 430 $(EMACS_ROOT)\src\s\ms-w32.h \
431 $(EMACS_ROOT)\src\m\intel386.h \ 431 $(EMACS_ROOT)\src\m\intel386.h \
432 $(EMACS_ROOT)\src\config.h 432 $(EMACS_ROOT)\src\config.h
433 433
434 $(BLD)\dosfns.obj : \ 434 $(BLD)\dosfns.obj : \
435 $(SRC)\dosfns.c \ 435 $(SRC)\dosfns.c \
436 $(EMACS_ROOT)\src\s\windowsnt.h \ 436 $(EMACS_ROOT)\src\s\ms-w32.h \
437 $(EMACS_ROOT)\src\m\intel386.h \ 437 $(EMACS_ROOT)\src\m\intel386.h \
438 $(EMACS_ROOT)\src\config.h \ 438 $(EMACS_ROOT)\src\config.h \
439 $(SRC)\lisp.h \ 439 $(SRC)\lisp.h \
440 $(SRC)\buffer.h \ 440 $(SRC)\buffer.h \
441 $(SRC)\termchar.h \ 441 $(SRC)\termchar.h \
444 $(SRC)\dosfns.h \ 444 $(SRC)\dosfns.h \
445 $(SRC)\msdos.h 445 $(SRC)\msdos.h
446 446
447 $(BLD)\editfns.obj : \ 447 $(BLD)\editfns.obj : \
448 $(SRC)\editfns.c \ 448 $(SRC)\editfns.c \
449 $(EMACS_ROOT)\src\s\windowsnt.h \ 449 $(EMACS_ROOT)\src\s\ms-w32.h \
450 $(EMACS_ROOT)\src\m\intel386.h \ 450 $(EMACS_ROOT)\src\m\intel386.h \
451 $(EMACS_ROOT)\src\config.h \ 451 $(EMACS_ROOT)\src\config.h \
452 $(SRC)\uaf.h \ 452 $(SRC)\uaf.h \
453 $(SRC)\vms-pwd.h \ 453 $(SRC)\vms-pwd.h \
454 $(EMACS_ROOT)\nt\inc\pwd.h \ 454 $(EMACS_ROOT)\nt\inc\pwd.h \
460 $(SRC)\vmstime.h \ 460 $(SRC)\vmstime.h \
461 $(SRC)\systime.h 461 $(SRC)\systime.h
462 462
463 $(BLD)\emacs.obj : \ 463 $(BLD)\emacs.obj : \
464 $(SRC)\emacs.c \ 464 $(SRC)\emacs.c \
465 $(EMACS_ROOT)\src\s\windowsnt.h \ 465 $(EMACS_ROOT)\src\s\ms-w32.h \
466 $(EMACS_ROOT)\src\m\intel386.h \ 466 $(EMACS_ROOT)\src\m\intel386.h \
467 $(EMACS_ROOT)\src\config.h \ 467 $(EMACS_ROOT)\src\config.h \
468 $(SRC)\lisp.h \ 468 $(SRC)\lisp.h \
469 $(SRC)\commands.h \ 469 $(SRC)\commands.h \
470 $(SRC)\dispextern.h \ 470 $(SRC)\dispextern.h \
475 $(SRC)\syssignal.h \ 475 $(SRC)\syssignal.h \
476 $(SRC)\process.h 476 $(SRC)\process.h
477 477
478 $(BLD)\eval.obj : \ 478 $(BLD)\eval.obj : \
479 $(SRC)\eval.c \ 479 $(SRC)\eval.c \
480 $(EMACS_ROOT)\src\s\windowsnt.h \ 480 $(EMACS_ROOT)\src\s\ms-w32.h \
481 $(EMACS_ROOT)\src\m\intel386.h \ 481 $(EMACS_ROOT)\src\m\intel386.h \
482 $(EMACS_ROOT)\src\config.h \ 482 $(EMACS_ROOT)\src\config.h \
483 $(SRC)\lisp.h \ 483 $(SRC)\lisp.h \
484 $(SRC)\blockinput.h \ 484 $(SRC)\blockinput.h \
485 $(SRC)\commands.h \ 485 $(SRC)\commands.h \
486 $(SRC)\keyboard.h 486 $(SRC)\keyboard.h
487 487
488 $(BLD)\fileio.obj : \ 488 $(BLD)\fileio.obj : \
489 $(SRC)\fileio.c \ 489 $(SRC)\fileio.c \
490 $(EMACS_ROOT)\src\s\windowsnt.h \ 490 $(EMACS_ROOT)\src\s\ms-w32.h \
491 $(EMACS_ROOT)\src\m\intel386.h \ 491 $(EMACS_ROOT)\src\m\intel386.h \
492 $(EMACS_ROOT)\src\config.h \ 492 $(EMACS_ROOT)\src\config.h \
493 $(SRC)\uaf.h \ 493 $(SRC)\uaf.h \
494 $(SRC)\vms-pwd.h \ 494 $(SRC)\vms-pwd.h \
495 $(EMACS_ROOT)\nt\inc\pwd.h \ 495 $(EMACS_ROOT)\nt\inc\pwd.h \
505 $(SRC)\vmstime.h \ 505 $(SRC)\vmstime.h \
506 $(SRC)\systime.h 506 $(SRC)\systime.h
507 507
508 $(BLD)\filelock.obj : \ 508 $(BLD)\filelock.obj : \
509 $(SRC)\filelock.c \ 509 $(SRC)\filelock.c \
510 $(EMACS_ROOT)\src\s\windowsnt.h \ 510 $(EMACS_ROOT)\src\s\ms-w32.h \
511 $(EMACS_ROOT)\src\m\intel386.h \ 511 $(EMACS_ROOT)\src\m\intel386.h \
512 $(EMACS_ROOT)\src\config.h \ 512 $(EMACS_ROOT)\src\config.h \
513 $(SRC)\uaf.h \ 513 $(SRC)\uaf.h \
514 $(SRC)\vms-pwd.h \ 514 $(SRC)\vms-pwd.h \
515 $(EMACS_ROOT)\nt\inc\pwd.h \ 515 $(EMACS_ROOT)\nt\inc\pwd.h \
520 $(SRC)\vmsdir.h \ 520 $(SRC)\vmsdir.h \
521 $(SRC)\ndir.h 521 $(SRC)\ndir.h
522 522
523 $(BLD)\filemode.obj : \ 523 $(BLD)\filemode.obj : \
524 $(SRC)\filemode.c \ 524 $(SRC)\filemode.c \
525 $(EMACS_ROOT)\src\s\windowsnt.h \ 525 $(EMACS_ROOT)\src\s\ms-w32.h \
526 $(EMACS_ROOT)\src\m\intel386.h \ 526 $(EMACS_ROOT)\src\m\intel386.h \
527 $(EMACS_ROOT)\src\config.h \ 527 $(EMACS_ROOT)\src\config.h \
528 $(SRC)\s\windowsnt.h \ 528 $(SRC)\s\ms-w32.h \
529 $(SRC)\m\intel386.h \ 529 $(SRC)\m\intel386.h \
530 $(SRC)\config.h 530 $(SRC)\config.h
531 531
532 $(BLD)\floatfns.obj : \ 532 $(BLD)\floatfns.obj : \
533 $(SRC)\floatfns.c \ 533 $(SRC)\floatfns.c \
534 $(EMACS_ROOT)\src\s\windowsnt.h \ 534 $(EMACS_ROOT)\src\s\ms-w32.h \
535 $(EMACS_ROOT)\src\m\intel386.h \ 535 $(EMACS_ROOT)\src\m\intel386.h \
536 $(EMACS_ROOT)\src\config.h \ 536 $(EMACS_ROOT)\src\config.h \
537 $(SRC)\lisp.h \ 537 $(SRC)\lisp.h \
538 $(SRC)\syssignal.h 538 $(SRC)\syssignal.h
539 539
540 $(BLD)\fns.obj : \ 540 $(BLD)\fns.obj : \
541 $(SRC)\fns.c \ 541 $(SRC)\fns.c \
542 $(EMACS_ROOT)\src\s\windowsnt.h \ 542 $(EMACS_ROOT)\src\s\ms-w32.h \
543 $(EMACS_ROOT)\src\m\intel386.h \ 543 $(EMACS_ROOT)\src\m\intel386.h \
544 $(EMACS_ROOT)\src\config.h \ 544 $(EMACS_ROOT)\src\config.h \
545 $(SRC)\lisp.h \ 545 $(SRC)\lisp.h \
546 $(SRC)\commands.h \ 546 $(SRC)\commands.h \
547 $(SRC)\buffer.h \ 547 $(SRC)\buffer.h \
549 $(SRC)\dispextern.h \ 549 $(SRC)\dispextern.h \
550 $(SRC)\intervals.h 550 $(SRC)\intervals.h
551 551
552 $(BLD)\frame.obj : \ 552 $(BLD)\frame.obj : \
553 $(SRC)\frame.c \ 553 $(SRC)\frame.c \
554 $(EMACS_ROOT)\src\s\windowsnt.h \ 554 $(EMACS_ROOT)\src\s\ms-w32.h \
555 $(EMACS_ROOT)\src\m\intel386.h \ 555 $(EMACS_ROOT)\src\m\intel386.h \
556 $(EMACS_ROOT)\src\config.h \ 556 $(EMACS_ROOT)\src\config.h \
557 $(SRC)\lisp.h \ 557 $(SRC)\lisp.h \
558 $(SRC)\frame.h \ 558 $(SRC)\frame.h \
559 $(SRC)\termhooks.h \ 559 $(SRC)\termhooks.h \
563 $(SRC)\keyboard.h 563 $(SRC)\keyboard.h
564 564
565 $(BLD)\getloadavg.obj : \ 565 $(BLD)\getloadavg.obj : \
566 $(SRC)\getloadavg.c \ 566 $(SRC)\getloadavg.c \
567 $(EMACS_ROOT)\nt\inc\sys\param.h \ 567 $(EMACS_ROOT)\nt\inc\sys\param.h \
568 $(EMACS_ROOT)\src\s\windowsnt.h \ 568 $(EMACS_ROOT)\src\s\ms-w32.h \
569 $(EMACS_ROOT)\src\m\intel386.h \ 569 $(EMACS_ROOT)\src\m\intel386.h \
570 $(EMACS_ROOT)\src\config.h \ 570 $(EMACS_ROOT)\src\config.h \
571 $(SRC)\s\windowsnt.h \ 571 $(SRC)\s\ms-w32.h \
572 $(SRC)\m\intel386.h \ 572 $(SRC)\m\intel386.h \
573 $(SRC)\config.h \ 573 $(SRC)\config.h \
574 $(EMACS_ROOT)\nt\inc\sys\file.h 574 $(EMACS_ROOT)\nt\inc\sys\file.h
575 575
576 $(BLD)\gmalloc.obj : \ 576 $(BLD)\gmalloc.obj : \
577 $(SRC)\gmalloc.c \ 577 $(SRC)\gmalloc.c \
578 $(EMACS_ROOT)\src\s\windowsnt.h \ 578 $(EMACS_ROOT)\src\s\ms-w32.h \
579 $(EMACS_ROOT)\src\m\intel386.h \ 579 $(EMACS_ROOT)\src\m\intel386.h \
580 $(EMACS_ROOT)\src\config.h \ 580 $(EMACS_ROOT)\src\config.h \
581 $(EMACS_ROOT)\nt\inc\sys\param.h \ 581 $(EMACS_ROOT)\nt\inc\sys\param.h \
582 $(SRC)\getpagesize.h 582 $(SRC)\getpagesize.h
583 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c 583 $(CC) $(CFLAGS) -D__STDC__ -Fo$@ gmalloc.c
584 584
585 $(BLD)\hftctl.obj : \ 585 $(BLD)\hftctl.obj : \
586 $(SRC)\hftctl.c \ 586 $(SRC)\hftctl.c \
587 $(EMACS_ROOT)\src\s\windowsnt.h \ 587 $(EMACS_ROOT)\src\s\ms-w32.h \
588 $(EMACS_ROOT)\src\m\intel386.h \ 588 $(EMACS_ROOT)\src\m\intel386.h \
589 $(EMACS_ROOT)\src\config.h \ 589 $(EMACS_ROOT)\src\config.h \
590 $(EMACS_ROOT)\nt\inc\sys\ioctl.h 590 $(EMACS_ROOT)\nt\inc\sys\ioctl.h
591 591
592 $(BLD)\indent.obj : \ 592 $(BLD)\indent.obj : \
593 $(SRC)\indent.c \ 593 $(SRC)\indent.c \
594 $(EMACS_ROOT)\src\s\windowsnt.h \ 594 $(EMACS_ROOT)\src\s\ms-w32.h \
595 $(EMACS_ROOT)\src\m\intel386.h \ 595 $(EMACS_ROOT)\src\m\intel386.h \
596 $(EMACS_ROOT)\src\config.h \ 596 $(EMACS_ROOT)\src\config.h \
597 $(SRC)\lisp.h \ 597 $(SRC)\lisp.h \
598 $(SRC)\buffer.h \ 598 $(SRC)\buffer.h \
599 $(SRC)\indent.h \ 599 $(SRC)\indent.h \
606 $(SRC)\intervals.h \ 606 $(SRC)\intervals.h \
607 $(SRC)\region-cache.h 607 $(SRC)\region-cache.h
608 608
609 $(BLD)\insdel.obj : \ 609 $(BLD)\insdel.obj : \
610 $(SRC)\insdel.c \ 610 $(SRC)\insdel.c \
611 $(EMACS_ROOT)\src\s\windowsnt.h \ 611 $(EMACS_ROOT)\src\s\ms-w32.h \
612 $(EMACS_ROOT)\src\m\intel386.h \ 612 $(EMACS_ROOT)\src\m\intel386.h \
613 $(EMACS_ROOT)\src\config.h \ 613 $(EMACS_ROOT)\src\config.h \
614 $(SRC)\lisp.h \ 614 $(SRC)\lisp.h \
615 $(SRC)\dispextern.h \ 615 $(SRC)\dispextern.h \
616 $(SRC)\intervals.h \ 616 $(SRC)\intervals.h \
618 $(SRC)\window.h \ 618 $(SRC)\window.h \
619 $(SRC)\blockinput.h 619 $(SRC)\blockinput.h
620 620
621 $(BLD)\intervals.obj : \ 621 $(BLD)\intervals.obj : \
622 $(SRC)\intervals.c \ 622 $(SRC)\intervals.c \
623 $(EMACS_ROOT)\src\s\windowsnt.h \ 623 $(EMACS_ROOT)\src\s\ms-w32.h \
624 $(EMACS_ROOT)\src\m\intel386.h \ 624 $(EMACS_ROOT)\src\m\intel386.h \
625 $(EMACS_ROOT)\src\config.h \ 625 $(EMACS_ROOT)\src\config.h \
626 $(SRC)\lisp.h \ 626 $(SRC)\lisp.h \
627 $(SRC)\dispextern.h \ 627 $(SRC)\dispextern.h \
628 $(SRC)\intervals.h \ 628 $(SRC)\intervals.h \
630 $(SRC)\puresize.h 630 $(SRC)\puresize.h
631 $(CC) $(CFLAGS) -Fo$@ intervals.c 631 $(CC) $(CFLAGS) -Fo$@ intervals.c
632 632
633 $(BLD)\keyboard.obj : \ 633 $(BLD)\keyboard.obj : \
634 $(SRC)\keyboard.c \ 634 $(SRC)\keyboard.c \
635 $(EMACS_ROOT)\src\s\windowsnt.h \ 635 $(EMACS_ROOT)\src\s\ms-w32.h \
636 $(EMACS_ROOT)\src\m\intel386.h \ 636 $(EMACS_ROOT)\src\m\intel386.h \
637 $(EMACS_ROOT)\src\config.h \ 637 $(EMACS_ROOT)\src\config.h \
638 $(SRC)\termchar.h \ 638 $(SRC)\termchar.h \
639 $(SRC)\termopts.h \ 639 $(SRC)\termopts.h \
640 $(SRC)\lisp.h \ 640 $(SRC)\lisp.h \
659 $(SRC)\vmstime.h \ 659 $(SRC)\vmstime.h \
660 $(SRC)\systime.h 660 $(SRC)\systime.h
661 661
662 $(BLD)\keymap.obj : \ 662 $(BLD)\keymap.obj : \
663 $(SRC)\keymap.c \ 663 $(SRC)\keymap.c \
664 $(EMACS_ROOT)\src\s\windowsnt.h \ 664 $(EMACS_ROOT)\src\s\ms-w32.h \
665 $(EMACS_ROOT)\src\m\intel386.h \ 665 $(EMACS_ROOT)\src\m\intel386.h \
666 $(EMACS_ROOT)\src\config.h \ 666 $(EMACS_ROOT)\src\config.h \
667 $(SRC)\lisp.h \ 667 $(SRC)\lisp.h \
668 $(SRC)\commands.h \ 668 $(SRC)\commands.h \
669 $(SRC)\buffer.h \ 669 $(SRC)\buffer.h \
674 $(BLD)\lastfile.obj : \ 674 $(BLD)\lastfile.obj : \
675 $(SRC)\lastfile.c 675 $(SRC)\lastfile.c
676 676
677 $(BLD)\lread.obj : \ 677 $(BLD)\lread.obj : \
678 $(SRC)\lread.c \ 678 $(SRC)\lread.c \
679 $(EMACS_ROOT)\src\s\windowsnt.h \ 679 $(EMACS_ROOT)\src\s\ms-w32.h \
680 $(EMACS_ROOT)\src\m\intel386.h \ 680 $(EMACS_ROOT)\src\m\intel386.h \
681 $(EMACS_ROOT)\src\config.h \ 681 $(EMACS_ROOT)\src\config.h \
682 $(EMACS_ROOT)\nt\inc\sys\file.h \ 682 $(EMACS_ROOT)\nt\inc\sys\file.h \
683 $(SRC)\lisp.h \ 683 $(SRC)\lisp.h \
684 $(SRC)\buffer.h \ 684 $(SRC)\buffer.h \
688 $(SRC)\termhooks.h \ 688 $(SRC)\termhooks.h \
689 $(SRC)\msdos.h 689 $(SRC)\msdos.h
690 690
691 $(BLD)\macros.obj : \ 691 $(BLD)\macros.obj : \
692 $(SRC)\macros.c \ 692 $(SRC)\macros.c \
693 $(EMACS_ROOT)\src\s\windowsnt.h \ 693 $(EMACS_ROOT)\src\s\ms-w32.h \
694 $(EMACS_ROOT)\src\m\intel386.h \ 694 $(EMACS_ROOT)\src\m\intel386.h \
695 $(EMACS_ROOT)\src\config.h \ 695 $(EMACS_ROOT)\src\config.h \
696 $(SRC)\lisp.h \ 696 $(SRC)\lisp.h \
697 $(SRC)\macros.h \ 697 $(SRC)\macros.h \
698 $(SRC)\commands.h \ 698 $(SRC)\commands.h \
699 $(SRC)\buffer.h \ 699 $(SRC)\buffer.h \
700 $(SRC)\window.h 700 $(SRC)\window.h
701 701
702 $(BLD)\marker.obj : \ 702 $(BLD)\marker.obj : \
703 $(SRC)\marker.c \ 703 $(SRC)\marker.c \
704 $(EMACS_ROOT)\src\s\windowsnt.h \ 704 $(EMACS_ROOT)\src\s\ms-w32.h \
705 $(EMACS_ROOT)\src\m\intel386.h \ 705 $(EMACS_ROOT)\src\m\intel386.h \
706 $(EMACS_ROOT)\src\config.h \ 706 $(EMACS_ROOT)\src\config.h \
707 $(SRC)\lisp.h \ 707 $(SRC)\lisp.h \
708 $(SRC)\buffer.h 708 $(SRC)\buffer.h
709 709
710 $(BLD)\minibuf.obj : \ 710 $(BLD)\minibuf.obj : \
711 $(SRC)\minibuf.c \ 711 $(SRC)\minibuf.c \
712 $(EMACS_ROOT)\src\s\windowsnt.h \ 712 $(EMACS_ROOT)\src\s\ms-w32.h \
713 $(EMACS_ROOT)\src\m\intel386.h \ 713 $(EMACS_ROOT)\src\m\intel386.h \
714 $(EMACS_ROOT)\src\config.h \ 714 $(EMACS_ROOT)\src\config.h \
715 $(SRC)\lisp.h \ 715 $(SRC)\lisp.h \
716 $(SRC)\commands.h \ 716 $(SRC)\commands.h \
717 $(SRC)\buffer.h \ 717 $(SRC)\buffer.h \
720 $(SRC)\window.h \ 720 $(SRC)\window.h \
721 $(SRC)\syntax.h 721 $(SRC)\syntax.h
722 722
723 $(BLD)\mocklisp.obj : \ 723 $(BLD)\mocklisp.obj : \
724 $(SRC)\mocklisp.c \ 724 $(SRC)\mocklisp.c \
725 $(EMACS_ROOT)\src\s\windowsnt.h \ 725 $(EMACS_ROOT)\src\s\ms-w32.h \
726 $(EMACS_ROOT)\src\m\intel386.h \ 726 $(EMACS_ROOT)\src\m\intel386.h \
727 $(EMACS_ROOT)\src\config.h \ 727 $(EMACS_ROOT)\src\config.h \
728 $(SRC)\lisp.h \ 728 $(SRC)\lisp.h \
729 $(SRC)\buffer.h 729 $(SRC)\buffer.h
730 730
731 $(BLD)\nt.obj : \ 731 $(BLD)\w32.obj : \
732 $(SRC)\nt.c \ 732 $(SRC)\w32.c \
733 $(SRC)\nt.h \ 733 $(SRC)\w32.h \
734 $(SRC)\s\windowsnt.h \ 734 $(SRC)\s\ms-w32.h \
735 $(SRC)\m\intel386.h \ 735 $(SRC)\m\intel386.h \
736 $(SRC)\config.h \ 736 $(SRC)\config.h \
737 $(SRC)\lisp.h \ 737 $(SRC)\lisp.h \
738 $(EMACS_ROOT)\nt\inc\pwd.h \ 738 $(EMACS_ROOT)\nt\inc\pwd.h \
739 $(SRC)\ntheap.h 739 $(SRC)\w32heap.h
740 740
741 $(BLD)\ntheap.obj : \ 741 $(BLD)\w32heap.obj : \
742 $(SRC)\ntheap.c \ 742 $(SRC)\w32heap.c \
743 $(SRC)\ntheap.h 743 $(SRC)\w32heap.h
744 744
745 $(BLD)\ntinevt.obj : \ 745 $(BLD)\w32inevt.obj : \
746 $(SRC)\ntinevt.c \ 746 $(SRC)\w32inevt.c \
747 $(SRC)\s\windowsnt.h \ 747 $(SRC)\s\ms-w32.h \
748 $(SRC)\m\intel386.h \ 748 $(SRC)\m\intel386.h \
749 $(SRC)\config.h \ 749 $(SRC)\config.h \
750 $(SRC)\lisp.h \ 750 $(SRC)\lisp.h \
751 $(SRC)\frame.h \ 751 $(SRC)\frame.h \
752 $(SRC)\blockinput.h \ 752 $(SRC)\blockinput.h \
753 $(SRC)\termhooks.h 753 $(SRC)\termhooks.h
754 754
755 $(BLD)\ntproc.obj : \ 755 $(BLD)\w32proc.obj : \
756 $(SRC)\ntproc.c \ 756 $(SRC)\w32proc.c \
757 $(SRC)\s\windowsnt.h \ 757 $(SRC)\s\ms-w32.h \
758 $(SRC)\m\intel386.h \ 758 $(SRC)\m\intel386.h \
759 $(SRC)\config.h \ 759 $(SRC)\config.h \
760 $(SRC)\lisp.h \ 760 $(SRC)\lisp.h \
761 $(SRC)\nt.h \ 761 $(SRC)\w32.h \
762 $(SRC)\vmstime.h \ 762 $(SRC)\vmstime.h \
763 $(SRC)\systime.h 763 $(SRC)\systime.h
764 764
765 $(BLD)\ntterm.obj : \ 765 $(BLD)\w32console.obj : \
766 $(SRC)\ntterm.c \ 766 $(SRC)\w32console.c \
767 $(SRC)\s\windowsnt.h \ 767 $(SRC)\s\ms-w32.h \
768 $(SRC)\m\intel386.h \ 768 $(SRC)\m\intel386.h \
769 $(SRC)\config.h \ 769 $(SRC)\config.h \
770 $(SRC)\lisp.h \ 770 $(SRC)\lisp.h \
771 $(SRC)\frame.h \ 771 $(SRC)\frame.h \
772 $(SRC)\disptab.h \ 772 $(SRC)\disptab.h \
773 $(SRC)\termhooks.h \ 773 $(SRC)\termhooks.h \
774 $(SRC)\ntinevt.h 774 $(SRC)\w32inevt.h
775 775
776 $(BLD)\prefix-args.obj : \ 776 $(BLD)\prefix-args.obj : \
777 $(SRC)\prefix-args.c 777 $(SRC)\prefix-args.c
778 778
779 $(BLD)\print.obj : \ 779 $(BLD)\print.obj : \
780 $(SRC)\print.c \ 780 $(SRC)\print.c \
781 $(EMACS_ROOT)\src\s\windowsnt.h \ 781 $(EMACS_ROOT)\src\s\ms-w32.h \
782 $(EMACS_ROOT)\src\m\intel386.h \ 782 $(EMACS_ROOT)\src\m\intel386.h \
783 $(EMACS_ROOT)\src\config.h \ 783 $(EMACS_ROOT)\src\config.h \
784 $(SRC)\lisp.h \ 784 $(SRC)\lisp.h \
785 $(SRC)\buffer.h \ 785 $(SRC)\buffer.h \
786 $(SRC)\frame.h \ 786 $(SRC)\frame.h \
790 $(SRC)\dispextern.h \ 790 $(SRC)\dispextern.h \
791 $(SRC)\intervals.h 791 $(SRC)\intervals.h
792 792
793 $(BLD)\process.obj : \ 793 $(BLD)\process.obj : \
794 $(SRC)\process.c \ 794 $(SRC)\process.c \
795 $(EMACS_ROOT)\src\s\windowsnt.h \ 795 $(EMACS_ROOT)\src\s\ms-w32.h \
796 $(EMACS_ROOT)\src\m\intel386.h \ 796 $(EMACS_ROOT)\src\m\intel386.h \
797 $(EMACS_ROOT)\src\config.h \ 797 $(EMACS_ROOT)\src\config.h \
798 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 798 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
799 $(EMACS_ROOT)\nt\inc\sys\file.h \ 799 $(EMACS_ROOT)\nt\inc\sys\file.h \
800 $(SRC)\systty.h \ 800 $(SRC)\systty.h \
812 $(SRC)\systime.h \ 812 $(SRC)\systime.h \
813 $(SRC)\termopts.h 813 $(SRC)\termopts.h
814 814
815 $(BLD)\ralloc.obj : \ 815 $(BLD)\ralloc.obj : \
816 $(SRC)\ralloc.c \ 816 $(SRC)\ralloc.c \
817 $(EMACS_ROOT)\src\s\windowsnt.h \ 817 $(EMACS_ROOT)\src\s\ms-w32.h \
818 $(EMACS_ROOT)\src\m\intel386.h \ 818 $(EMACS_ROOT)\src\m\intel386.h \
819 $(EMACS_ROOT)\src\config.h \ 819 $(EMACS_ROOT)\src\config.h \
820 $(SRC)\lisp.h \ 820 $(SRC)\lisp.h \
821 $(SRC)\s\windowsnt.h \ 821 $(SRC)\s\ms-w32.h \
822 $(SRC)\m\intel386.h \ 822 $(SRC)\m\intel386.h \
823 $(SRC)\config.h \ 823 $(SRC)\config.h \
824 $(EMACS_ROOT)\nt\inc\sys\param.h \ 824 $(EMACS_ROOT)\nt\inc\sys\param.h \
825 $(SRC)\getpagesize.h 825 $(SRC)\getpagesize.h
826 826
827 $(BLD)\regex.obj : \ 827 $(BLD)\regex.obj : \
828 $(SRC)\regex.c \ 828 $(SRC)\regex.c \
829 $(EMACS_ROOT)\src\s\windowsnt.h \ 829 $(EMACS_ROOT)\src\s\ms-w32.h \
830 $(EMACS_ROOT)\src\m\intel386.h \ 830 $(EMACS_ROOT)\src\m\intel386.h \
831 $(EMACS_ROOT)\src\config.h \ 831 $(EMACS_ROOT)\src\config.h \
832 $(SRC)\s\windowsnt.h \ 832 $(SRC)\s\ms-w32.h \
833 $(SRC)\m\intel386.h \ 833 $(SRC)\m\intel386.h \
834 $(SRC)\config.h \ 834 $(SRC)\config.h \
835 $(SRC)\lisp.h \ 835 $(SRC)\lisp.h \
836 $(SRC)\buffer.h \ 836 $(SRC)\buffer.h \
837 $(SRC)\syntax.h \ 837 $(SRC)\syntax.h \
838 $(SRC)\regex.h 838 $(SRC)\regex.h
839 839
840 $(BLD)\region-cache.obj : \ 840 $(BLD)\region-cache.obj : \
841 $(SRC)\region-cache.c \ 841 $(SRC)\region-cache.c \
842 $(EMACS_ROOT)\src\s\windowsnt.h \ 842 $(EMACS_ROOT)\src\s\ms-w32.h \
843 $(EMACS_ROOT)\src\m\intel386.h \ 843 $(EMACS_ROOT)\src\m\intel386.h \
844 $(EMACS_ROOT)\src\config.h \ 844 $(EMACS_ROOT)\src\config.h \
845 $(SRC)\lisp.h \ 845 $(SRC)\lisp.h \
846 $(SRC)\buffer.h \ 846 $(SRC)\buffer.h \
847 $(SRC)\region-cache.h 847 $(SRC)\region-cache.h
848 848
849 $(BLD)\scroll.obj : \ 849 $(BLD)\scroll.obj : \
850 $(SRC)\scroll.c \ 850 $(SRC)\scroll.c \
851 $(EMACS_ROOT)\src\s\windowsnt.h \ 851 $(EMACS_ROOT)\src\s\ms-w32.h \
852 $(EMACS_ROOT)\src\m\intel386.h \ 852 $(EMACS_ROOT)\src\m\intel386.h \
853 $(EMACS_ROOT)\src\config.h \ 853 $(EMACS_ROOT)\src\config.h \
854 $(SRC)\termchar.h \ 854 $(SRC)\termchar.h \
855 $(SRC)\lisp.h \ 855 $(SRC)\lisp.h \
856 $(SRC)\dispextern.h \ 856 $(SRC)\dispextern.h \
857 $(SRC)\frame.h 857 $(SRC)\frame.h
858 858
859 $(BLD)\search.obj : \ 859 $(BLD)\search.obj : \
860 $(SRC)\search.c \ 860 $(SRC)\search.c \
861 $(EMACS_ROOT)\src\s\windowsnt.h \ 861 $(EMACS_ROOT)\src\s\ms-w32.h \
862 $(EMACS_ROOT)\src\m\intel386.h \ 862 $(EMACS_ROOT)\src\m\intel386.h \
863 $(EMACS_ROOT)\src\config.h \ 863 $(EMACS_ROOT)\src\config.h \
864 $(SRC)\lisp.h \ 864 $(SRC)\lisp.h \
865 $(SRC)\syntax.h \ 865 $(SRC)\syntax.h \
866 $(SRC)\buffer.h \ 866 $(SRC)\buffer.h \
869 $(SRC)\regex.h \ 869 $(SRC)\regex.h \
870 $(SRC)\region-cache.h 870 $(SRC)\region-cache.h
871 871
872 $(BLD)\strftime.obj : \ 872 $(BLD)\strftime.obj : \
873 $(SRC)\strftime.c \ 873 $(SRC)\strftime.c \
874 $(EMACS_ROOT)\src\s\windowsnt.h \ 874 $(EMACS_ROOT)\src\s\ms-w32.h \
875 $(EMACS_ROOT)\src\m\intel386.h \ 875 $(EMACS_ROOT)\src\m\intel386.h \
876 $(EMACS_ROOT)\src\config.h 876 $(EMACS_ROOT)\src\config.h
877 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c 877 $(CC) $(CFLAGS) -Dstrftime=emacs_strftime -Fo$@ strftime.c
878 878
879 $(BLD)\sunfns.obj : \ 879 $(BLD)\sunfns.obj : \
880 $(SRC)\sunfns.c \ 880 $(SRC)\sunfns.c \
881 $(EMACS_ROOT)\src\s\windowsnt.h \ 881 $(EMACS_ROOT)\src\s\ms-w32.h \
882 $(EMACS_ROOT)\src\m\intel386.h \ 882 $(EMACS_ROOT)\src\m\intel386.h \
883 $(EMACS_ROOT)\src\config.h \ 883 $(EMACS_ROOT)\src\config.h \
884 $(SRC)\lisp.h \ 884 $(SRC)\lisp.h \
885 $(SRC)\window.h \ 885 $(SRC)\window.h \
886 $(SRC)\buffer.h \ 886 $(SRC)\buffer.h \
887 $(SRC)\termhooks.h 887 $(SRC)\termhooks.h
888 888
889 $(BLD)\syntax.obj : \ 889 $(BLD)\syntax.obj : \
890 $(SRC)\syntax.c \ 890 $(SRC)\syntax.c \
891 $(EMACS_ROOT)\src\s\windowsnt.h \ 891 $(EMACS_ROOT)\src\s\ms-w32.h \
892 $(EMACS_ROOT)\src\m\intel386.h \ 892 $(EMACS_ROOT)\src\m\intel386.h \
893 $(EMACS_ROOT)\src\config.h \ 893 $(EMACS_ROOT)\src\config.h \
894 $(SRC)\lisp.h \ 894 $(SRC)\lisp.h \
895 $(SRC)\commands.h \ 895 $(SRC)\commands.h \
896 $(SRC)\buffer.h \ 896 $(SRC)\buffer.h \
897 $(SRC)\syntax.h 897 $(SRC)\syntax.h
898 898
899 $(BLD)\sysdep.obj : \ 899 $(BLD)\sysdep.obj : \
900 $(SRC)\sysdep.c \ 900 $(SRC)\sysdep.c \
901 $(EMACS_ROOT)\src\s\windowsnt.h \ 901 $(EMACS_ROOT)\src\s\ms-w32.h \
902 $(EMACS_ROOT)\src\m\intel386.h \ 902 $(EMACS_ROOT)\src\m\intel386.h \
903 $(EMACS_ROOT)\src\config.h \ 903 $(EMACS_ROOT)\src\config.h \
904 $(SRC)\lisp.h \ 904 $(SRC)\lisp.h \
905 $(SRC)\blockinput.h \ 905 $(SRC)\blockinput.h \
906 $(SRC)\dosfns.h \ 906 $(SRC)\dosfns.h \
929 $(EMACS_ROOT)\src\acldef.h \ 929 $(EMACS_ROOT)\src\acldef.h \
930 $(EMACS_ROOT)\src\chpdef.h 930 $(EMACS_ROOT)\src\chpdef.h
931 931
932 $(BLD)\term.obj : \ 932 $(BLD)\term.obj : \
933 $(SRC)\term.c \ 933 $(SRC)\term.c \
934 $(EMACS_ROOT)\src\s\windowsnt.h \ 934 $(EMACS_ROOT)\src\s\ms-w32.h \
935 $(EMACS_ROOT)\src\m\intel386.h \ 935 $(EMACS_ROOT)\src\m\intel386.h \
936 $(EMACS_ROOT)\src\config.h \ 936 $(EMACS_ROOT)\src\config.h \
937 $(SRC)\termchar.h \ 937 $(SRC)\termchar.h \
938 $(SRC)\termopts.h \ 938 $(SRC)\termopts.h \
939 $(SRC)\cm.h \ 939 $(SRC)\cm.h \
943 $(SRC)\termhooks.h \ 943 $(SRC)\termhooks.h \
944 $(SRC)\keyboard.h 944 $(SRC)\keyboard.h
945 945
946 $(BLD)\termcap.obj : \ 946 $(BLD)\termcap.obj : \
947 $(SRC)\termcap.c \ 947 $(SRC)\termcap.c \
948 $(EMACS_ROOT)\src\s\windowsnt.h \ 948 $(EMACS_ROOT)\src\s\ms-w32.h \
949 $(EMACS_ROOT)\src\m\intel386.h \ 949 $(EMACS_ROOT)\src\m\intel386.h \
950 $(EMACS_ROOT)\src\config.h \ 950 $(EMACS_ROOT)\src\config.h \
951 $(EMACS_ROOT)\nt\inc\sys\file.h 951 $(EMACS_ROOT)\nt\inc\sys\file.h
952 952
953 $(BLD)\terminfo.obj : \ 953 $(BLD)\terminfo.obj : \
954 $(SRC)\terminfo.c 954 $(SRC)\terminfo.c
955 955
956 $(BLD)\textprop.obj : \ 956 $(BLD)\textprop.obj : \
957 $(SRC)\textprop.c \ 957 $(SRC)\textprop.c \
958 $(EMACS_ROOT)\src\s\windowsnt.h \ 958 $(EMACS_ROOT)\src\s\ms-w32.h \
959 $(EMACS_ROOT)\src\m\intel386.h \ 959 $(EMACS_ROOT)\src\m\intel386.h \
960 $(EMACS_ROOT)\src\config.h \ 960 $(EMACS_ROOT)\src\config.h \
961 $(SRC)\lisp.h \ 961 $(SRC)\lisp.h \
962 $(SRC)\dispextern.h \ 962 $(SRC)\dispextern.h \
963 $(SRC)\intervals.h \ 963 $(SRC)\intervals.h \
964 $(SRC)\buffer.h \ 964 $(SRC)\buffer.h \
965 $(SRC)\window.h 965 $(SRC)\window.h
966 966
967 $(BLD)\tparam.obj : \ 967 $(BLD)\tparam.obj : \
968 $(SRC)\tparam.c \ 968 $(SRC)\tparam.c \
969 $(EMACS_ROOT)\src\s\windowsnt.h \ 969 $(EMACS_ROOT)\src\s\ms-w32.h \
970 $(EMACS_ROOT)\src\m\intel386.h \ 970 $(EMACS_ROOT)\src\m\intel386.h \
971 $(EMACS_ROOT)\src\config.h 971 $(EMACS_ROOT)\src\config.h
972 972
973 $(BLD)\undo.obj : \ 973 $(BLD)\undo.obj : \
974 $(SRC)\undo.c \ 974 $(SRC)\undo.c \
975 $(EMACS_ROOT)\src\s\windowsnt.h \ 975 $(EMACS_ROOT)\src\s\ms-w32.h \
976 $(EMACS_ROOT)\src\m\intel386.h \ 976 $(EMACS_ROOT)\src\m\intel386.h \
977 $(EMACS_ROOT)\src\config.h \ 977 $(EMACS_ROOT)\src\config.h \
978 $(SRC)\lisp.h \ 978 $(SRC)\lisp.h \
979 $(SRC)\buffer.h \ 979 $(SRC)\buffer.h \
980 $(SRC)\commands.h 980 $(SRC)\commands.h
981 981
982 $(BLD)\unexnt.obj : \ 982 $(BLD)\unexw32.obj : \
983 $(SRC)\unexnt.c \ 983 $(SRC)\unexw32.c \
984 $(SRC)\ntheap.h 984 $(SRC)\w32heap.h
985 985
986 $(BLD)\vm-limit.obj : \ 986 $(BLD)\vm-limit.obj : \
987 $(SRC)\vm-limit.c \ 987 $(SRC)\vm-limit.c \
988 $(EMACS_ROOT)\src\s\windowsnt.h \ 988 $(EMACS_ROOT)\src\s\ms-w32.h \
989 $(EMACS_ROOT)\src\m\intel386.h \ 989 $(EMACS_ROOT)\src\m\intel386.h \
990 $(EMACS_ROOT)\src\config.h \ 990 $(EMACS_ROOT)\src\config.h \
991 $(SRC)\mem-limits.h 991 $(SRC)\mem-limits.h
992 992
993 $(BLD)\widget.obj : \ 993 $(BLD)\widget.obj : \
994 $(SRC)\widget.c \ 994 $(SRC)\widget.c \
995 $(EMACS_ROOT)\src\s\windowsnt.h \ 995 $(EMACS_ROOT)\src\s\ms-w32.h \
996 $(EMACS_ROOT)\src\m\intel386.h \ 996 $(EMACS_ROOT)\src\m\intel386.h \
997 $(EMACS_ROOT)\src\config.h \ 997 $(EMACS_ROOT)\src\config.h \
998 $(SRC)\lisp.h \ 998 $(SRC)\lisp.h \
999 $(SRC)\xterm.h \ 999 $(SRC)\xterm.h \
1000 $(SRC)\frame.h \ 1000 $(SRC)\frame.h \
1002 $(SRC)\widget.h \ 1002 $(SRC)\widget.h \
1003 $(SRC)\widgetprv.h 1003 $(SRC)\widgetprv.h
1004 1004
1005 $(BLD)\window.obj : \ 1005 $(BLD)\window.obj : \
1006 $(SRC)\window.c \ 1006 $(SRC)\window.c \
1007 $(EMACS_ROOT)\src\s\windowsnt.h \ 1007 $(EMACS_ROOT)\src\s\ms-w32.h \
1008 $(EMACS_ROOT)\src\m\intel386.h \ 1008 $(EMACS_ROOT)\src\m\intel386.h \
1009 $(EMACS_ROOT)\src\config.h \ 1009 $(EMACS_ROOT)\src\config.h \
1010 $(SRC)\lisp.h \ 1010 $(SRC)\lisp.h \
1011 $(SRC)\buffer.h \ 1011 $(SRC)\buffer.h \
1012 $(SRC)\frame.h \ 1012 $(SRC)\frame.h \
1017 $(SRC)\disptab.h \ 1017 $(SRC)\disptab.h \
1018 $(SRC)\keyboard.h 1018 $(SRC)\keyboard.h
1019 1019
1020 $(BLD)\xdisp.obj : \ 1020 $(BLD)\xdisp.obj : \
1021 $(SRC)\xdisp.c \ 1021 $(SRC)\xdisp.c \
1022 $(EMACS_ROOT)\src\s\windowsnt.h \ 1022 $(EMACS_ROOT)\src\s\ms-w32.h \
1023 $(EMACS_ROOT)\src\m\intel386.h \ 1023 $(EMACS_ROOT)\src\m\intel386.h \
1024 $(EMACS_ROOT)\src\config.h \ 1024 $(EMACS_ROOT)\src\config.h \
1025 $(SRC)\lisp.h \ 1025 $(SRC)\lisp.h \
1026 $(SRC)\frame.h \ 1026 $(SRC)\frame.h \
1027 $(SRC)\window.h \ 1027 $(SRC)\window.h \
1034 $(SRC)\termhooks.h \ 1034 $(SRC)\termhooks.h \
1035 $(SRC)\dispextern.h \ 1035 $(SRC)\dispextern.h \
1036 $(SRC)\intervals.h 1036 $(SRC)\intervals.h
1037 1037
1038 $(BLD)\w32faces.obj: \ 1038 $(BLD)\w32faces.obj: \
1039 $(EMACS_ROOT)\src\s\windowsnt.h \ 1039 $(EMACS_ROOT)\src\s\ms-w32.h \
1040 $(EMACS_ROOT)\src\m\intel386.h \ 1040 $(EMACS_ROOT)\src\m\intel386.h \
1041 $(EMACS_ROOT)\src\config.h \ 1041 $(EMACS_ROOT)\src\config.h \
1042 $(SRC)\w32faces.c \ 1042 $(SRC)\w32faces.c \
1043 $(SRC)\lisp.h \ 1043 $(SRC)\lisp.h \
1044 $(SRC)\w32term.h \ 1044 $(SRC)\w32term.h \
1049 $(SRC)\blockinput.h \ 1049 $(SRC)\blockinput.h \
1050 $(SRC)\window.h \ 1050 $(SRC)\window.h \
1051 $(SRC)\intervals.h 1051 $(SRC)\intervals.h
1052 1052
1053 $(BLD)\w32fns.obj: \ 1053 $(BLD)\w32fns.obj: \
1054 $(EMACS_ROOT)\src\s\windowsnt.h \ 1054 $(EMACS_ROOT)\src\s\ms-w32.h \
1055 $(EMACS_ROOT)\src\m\intel386.h \ 1055 $(EMACS_ROOT)\src\m\intel386.h \
1056 $(EMACS_ROOT)\src\config.h \ 1056 $(EMACS_ROOT)\src\config.h \
1057 $(SRC)\w32fns.c \ 1057 $(SRC)\w32fns.c \
1058 $(SRC)\lisp.h \ 1058 $(SRC)\lisp.h \
1059 $(SRC)\w32term.h \ 1059 $(SRC)\w32term.h \
1063 $(SRC)\buffer.h \ 1063 $(SRC)\buffer.h \
1064 $(SRC)\dispextern.h \ 1064 $(SRC)\dispextern.h \
1065 $(SRC)\keyboard.h \ 1065 $(SRC)\keyboard.h \
1066 $(SRC)\blockinput.h \ 1066 $(SRC)\blockinput.h \
1067 $(SRC)\paths.h \ 1067 $(SRC)\paths.h \
1068 $(SRC)\ntheap.h \ 1068 $(SRC)\w32heap.h \
1069 $(SRC)\termhooks.h 1069 $(SRC)\termhooks.h
1070 1070
1071 $(BLD)\w32menu.obj: \ 1071 $(BLD)\w32menu.obj: \
1072 $(EMACS_ROOT)\src\s\windowsnt.h \ 1072 $(EMACS_ROOT)\src\s\ms-w32.h \
1073 $(EMACS_ROOT)\src\m\intel386.h \ 1073 $(EMACS_ROOT)\src\m\intel386.h \
1074 $(EMACS_ROOT)\src\config.h \ 1074 $(EMACS_ROOT)\src\config.h \
1075 $(SRC)\w32menu.c \ 1075 $(SRC)\w32menu.c \
1076 $(SRC)\lisp.h \ 1076 $(SRC)\lisp.h \
1077 $(SRC)\termhooks.h \ 1077 $(SRC)\termhooks.h \
1080 $(SRC)\keyboard.h \ 1080 $(SRC)\keyboard.h \
1081 $(SRC)\blockinput.h \ 1081 $(SRC)\blockinput.h \
1082 $(SRC)\buffer.h 1082 $(SRC)\buffer.h
1083 1083
1084 $(BLD)\w32term.obj: \ 1084 $(BLD)\w32term.obj: \
1085 $(EMACS_ROOT)\src\s\windowsnt.h \ 1085 $(EMACS_ROOT)\src\s\ms-w32.h \
1086 $(EMACS_ROOT)\src\m\intel386.h \ 1086 $(EMACS_ROOT)\src\m\intel386.h \
1087 $(EMACS_ROOT)\src\config.h \ 1087 $(EMACS_ROOT)\src\config.h \
1088 $(SRC)\w32term.c \ 1088 $(SRC)\w32term.c \
1089 $(SRC)\lisp.h \ 1089 $(SRC)\lisp.h \
1090 $(SRC)\blockinput.h \ 1090 $(SRC)\blockinput.h \
1103 $(SRC)\window.h \ 1103 $(SRC)\window.h \
1104 $(SRC)\keyboard.h \ 1104 $(SRC)\keyboard.h \
1105 $(SRC)\intervals.h 1105 $(SRC)\intervals.h
1106 1106
1107 $(BLD)\w32select.obj: \ 1107 $(BLD)\w32select.obj: \
1108 $(EMACS_ROOT)\src\s\windowsnt.h \ 1108 $(EMACS_ROOT)\src\s\ms-w32.h \
1109 $(EMACS_ROOT)\src\m\intel386.h \ 1109 $(EMACS_ROOT)\src\m\intel386.h \
1110 $(EMACS_ROOT)\src\config.h \ 1110 $(EMACS_ROOT)\src\config.h \
1111 $(SRC)\w32select.c \ 1111 $(SRC)\w32select.c \
1112 $(SRC)\lisp.h \ 1112 $(SRC)\lisp.h \
1113 $(SRC)\w32term.h \ 1113 $(SRC)\w32term.h \
1115 $(SRC)\dispextern.h \ 1115 $(SRC)\dispextern.h \
1116 $(SRC)\frame.h \ 1116 $(SRC)\frame.h \
1117 $(SRC)\blockinput.h 1117 $(SRC)\blockinput.h
1118 1118
1119 $(BLD)\w32reg.obj: \ 1119 $(BLD)\w32reg.obj: \
1120 $(EMACS_ROOT)\src\s\windowsnt.h \ 1120 $(EMACS_ROOT)\src\s\ms-w32.h \
1121 $(EMACS_ROOT)\src\m\intel386.h \ 1121 $(EMACS_ROOT)\src\m\intel386.h \
1122 $(EMACS_ROOT)\src\config.h \ 1122 $(EMACS_ROOT)\src\config.h \
1123 $(SRC)\w32reg.c \ 1123 $(SRC)\w32reg.c \
1124 $(SRC)\lisp.h \ 1124 $(SRC)\lisp.h \
1125 $(SRC)\w32term.h \ 1125 $(SRC)\w32term.h \