aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-12-01 23:39:48 +0000
committerJuanma Barranquero2008-12-01 23:39:48 +0000
commitfd7a37d518aff12a3be97e97119df29849ced6f8 (patch)
tree3e1c2de639a085897c32f12c6d27da97e693cb34
parent938ebc4fcd152bb7c1c1fc0e6bdc1a8199ed460d (diff)
downloademacs-fd7a37d518aff12a3be97e97119df29849ced6f8.tar.gz
emacs-fd7a37d518aff12a3be97e97119df29849ced6f8.zip
* makefile.w32-in: Update dependencies.
(CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/makefile.w32-in389
2 files changed, 287 insertions, 107 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7ae14388c64..9e333563832 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12008-12-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * makefile.w32-in: Update dependencies.
4 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
5
12008-12-01 Andreas Schwab <schwab@suse.de> 62008-12-01 Andreas Schwab <schwab@suse.de>
2 7
3 * font.c (register_font_driver): Use xmalloc. 8 * font.c (register_font_driver): Use xmalloc.
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 8f9d4f124b0..332f6b65583 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -279,15 +279,19 @@ EMACS_ROOT = ..
279SRC = . 279SRC = .
280CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \ 280CONFIG_H = $(EMACS_ROOT)/src/s/ms-w32.h \
281 $(EMACS_ROOT)/src/m/intel386.h \ 281 $(EMACS_ROOT)/src/m/intel386.h \
282 $(EMACS_ROOT)/src/config.h 282 $(EMACS_ROOT)/src/config.h \
283 $(EMACS_ROOT)/nt/inc/sys/stat.h
283 284
284$(BLD)/alloc.$(O) : \ 285$(BLD)/alloc.$(O) : \
285 $(SRC)/alloc.c \ 286 $(SRC)/alloc.c \
286 $(CONFIG_H) \ 287 $(CONFIG_H) \
288 $(EMACS_ROOT)/nt/inc/unistd.h \
289 $(EMACS_ROOT)/nt/inc/sys/time.h \
290 $(SRC)/atimer.h \
287 $(SRC)/blockinput.h \ 291 $(SRC)/blockinput.h \
288 $(SRC)/buffer.h \ 292 $(SRC)/buffer.h \
289 $(SRC)/character.h \ 293 $(SRC)/character.h \
290 $(SRC)/charset.h \ 294 $(SRC)/coding.h \
291 $(SRC)/composite.h \ 295 $(SRC)/composite.h \
292 $(SRC)/dispextern.h \ 296 $(SRC)/dispextern.h \
293 $(SRC)/frame.h \ 297 $(SRC)/frame.h \
@@ -296,12 +300,17 @@ $(BLD)/alloc.$(O) : \
296 $(SRC)/process.h \ 300 $(SRC)/process.h \
297 $(SRC)/puresize.h \ 301 $(SRC)/puresize.h \
298 $(SRC)/syssignal.h \ 302 $(SRC)/syssignal.h \
303 $(SRC)/systime.h \
304 $(SRC)/termhooks.h \
305 $(SRC)/w32.h \
299 $(SRC)/w32gui.h \ 306 $(SRC)/w32gui.h \
300 $(SRC)/window.h 307 $(SRC)/window.h
301 308
302$(BLD)/atimer.$(O) : \ 309$(BLD)/atimer.$(O) : \
303 $(SRC)/atimer.c \ 310 $(SRC)/atimer.c \
304 $(CONFIG_H) \ 311 $(CONFIG_H) \
312 $(EMACS_ROOT)/nt/inc/unistd.h \
313 $(EMACS_ROOT)/nt/inc/sys/time.h \
305 $(SRC)/atimer.h \ 314 $(SRC)/atimer.h \
306 $(SRC)/blockinput.h \ 315 $(SRC)/blockinput.h \
307 $(SRC)/syssignal.h \ 316 $(SRC)/syssignal.h \
@@ -310,10 +319,14 @@ $(BLD)/atimer.$(O) : \
310$(BLD)/buffer.$(O) : \ 319$(BLD)/buffer.$(O) : \
311 $(SRC)/buffer.c \ 320 $(SRC)/buffer.c \
312 $(CONFIG_H) \ 321 $(CONFIG_H) \
322 $(EMACS_ROOT)/nt/inc/unistd.h \
313 $(EMACS_ROOT)/nt/inc/sys/param.h \ 323 $(EMACS_ROOT)/nt/inc/sys/param.h \
324 $(EMACS_ROOT)/nt/inc/sys/time.h \
325 $(SRC)/atimer.h \
314 $(SRC)/blockinput.h \ 326 $(SRC)/blockinput.h \
315 $(SRC)/buffer.h \ 327 $(SRC)/buffer.h \
316 $(SRC)/charset.h \ 328 $(SRC)/character.h \
329 $(SRC)/coding.h \
317 $(SRC)/commands.h \ 330 $(SRC)/commands.h \
318 $(SRC)/composite.h \ 331 $(SRC)/composite.h \
319 $(SRC)/dispextern.h \ 332 $(SRC)/dispextern.h \
@@ -323,6 +336,7 @@ $(BLD)/buffer.$(O) : \
323 $(SRC)/keyboard.h \ 336 $(SRC)/keyboard.h \
324 $(SRC)/keymap.h \ 337 $(SRC)/keymap.h \
325 $(SRC)/region-cache.h \ 338 $(SRC)/region-cache.h \
339 $(SRC)/systime.h \
326 $(SRC)/w32gui.h \ 340 $(SRC)/w32gui.h \
327 $(SRC)/window.h 341 $(SRC)/window.h
328 342
@@ -330,48 +344,56 @@ $(BLD)/bytecode.$(O) : \
330 $(SRC)/bytecode.c \ 344 $(SRC)/bytecode.c \
331 $(CONFIG_H) \ 345 $(CONFIG_H) \
332 $(SRC)/buffer.h \ 346 $(SRC)/buffer.h \
333 $(SRC)/charset.h \ 347 $(SRC)/character.h \
348 $(SRC)/dispextern.h \
334 $(SRC)/syntax.h \ 349 $(SRC)/syntax.h \
350 $(SRC)/w32gui.h \
335 $(SRC)/window.h 351 $(SRC)/window.h
336 352
337$(BLD)/callint.$(O) : \ 353$(BLD)/callint.$(O) : \
338 $(SRC)/callint.c \ 354 $(SRC)/callint.c \
339 $(CONFIG_H) \ 355 $(CONFIG_H) \
356 $(EMACS_ROOT)/nt/inc/sys/time.h \
340 $(SRC)/buffer.h \ 357 $(SRC)/buffer.h \
358 $(SRC)/coding.h \
341 $(SRC)/commands.h \ 359 $(SRC)/commands.h \
342 $(SRC)/dispextern.h \ 360 $(SRC)/dispextern.h \
343 $(SRC)/keyboard.h \ 361 $(SRC)/keyboard.h \
344 $(SRC)/keymap.h \ 362 $(SRC)/keymap.h \
363 $(SRC)/systime.h \
345 $(SRC)/w32gui.h \ 364 $(SRC)/w32gui.h \
346 $(SRC)/window.h 365 $(SRC)/window.h
347 366
348$(BLD)/callproc.$(O) : \ 367$(BLD)/callproc.$(O) : \
349 $(SRC)/callproc.c \ 368 $(SRC)/callproc.c \
350 $(CONFIG_H) \ 369 $(CONFIG_H) \
351 $(EMACS_ROOT)/nt/inc/sys/param.h \ 370 $(EMACS_ROOT)/nt/inc/unistd.h \
352 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
353 $(EMACS_ROOT)/nt/inc/sys/file.h \ 371 $(EMACS_ROOT)/nt/inc/sys/file.h \
372 $(EMACS_ROOT)/nt/inc/sys/time.h \
373 $(SRC)/atimer.h \
374 $(SRC)/blockinput.h \
354 $(SRC)/buffer.h \ 375 $(SRC)/buffer.h \
355 $(SRC)/ccl.h \ 376 $(SRC)/ccl.h \
356 $(SRC)/character.h \ 377 $(SRC)/character.h \
357 $(SRC)/charset.h \
358 $(SRC)/coding.h \ 378 $(SRC)/coding.h \
359 $(SRC)/commands.h \ 379 $(SRC)/commands.h \
360 $(SRC)/composite.h \ 380 $(SRC)/composite.h \
381 $(SRC)/dispextern.h \
361 $(SRC)/epaths.h \ 382 $(SRC)/epaths.h \
383 $(SRC)/frame.h \
362 $(SRC)/process.h \ 384 $(SRC)/process.h \
363 $(SRC)/syssignal.h \ 385 $(SRC)/syssignal.h \
386 $(SRC)/systime.h \
364 $(SRC)/systty.h \ 387 $(SRC)/systty.h \
365 $(SRC)/frame.h \
366 $(SRC)/termhooks.h \ 388 $(SRC)/termhooks.h \
367 $(SRC)/w32.h 389 $(SRC)/w32.h \
390 $(SRC)/w32gui.h
368 391
369$(BLD)/casefiddle.$(O) : \ 392$(BLD)/casefiddle.$(O) : \
370 $(SRC)/casefiddle.c \ 393 $(SRC)/casefiddle.c \
371 $(CONFIG_H) \ 394 $(CONFIG_H) \
372 $(SRC)/buffer.h \ 395 $(SRC)/buffer.h \
373 $(SRC)/character.h \ 396 $(SRC)/character.h \
374 $(SRC)/charset.h \
375 $(SRC)/commands.h \ 397 $(SRC)/commands.h \
376 $(SRC)/composite.h \ 398 $(SRC)/composite.h \
377 $(SRC)/keymap.h \ 399 $(SRC)/keymap.h \
@@ -381,7 +403,7 @@ $(BLD)/casetab.$(O) : \
381 $(SRC)/casetab.c \ 403 $(SRC)/casetab.c \
382 $(CONFIG_H) \ 404 $(CONFIG_H) \
383 $(SRC)/buffer.h \ 405 $(SRC)/buffer.h \
384 $(SRC)/charset.h 406 $(SRC)/character.h
385 407
386$(BLD)/category.$(O) : \ 408$(BLD)/category.$(O) : \
387 $(SRC)/category.c \ 409 $(SRC)/category.c \
@@ -406,44 +428,49 @@ $(BLD)/character.$(O) : \
406 $(SRC)/buffer.h \ 428 $(SRC)/buffer.h \
407 $(SRC)/character.h \ 429 $(SRC)/character.h \
408 $(SRC)/charset.h \ 430 $(SRC)/charset.h \
409 $(SRC)/coding.h \
410 $(SRC)/composite.h \ 431 $(SRC)/composite.h \
411 $(SRC)/disptab.h 432 $(SRC)/disptab.h
412 433
413$(BLD)/charset.$(O) : \ 434$(BLD)/charset.$(O) : \
414 $(SRC)/charset.c \ 435 $(SRC)/charset.c \
415 $(CONFIG_H) \ 436 $(CONFIG_H) \
437 $(EMACS_ROOT)/nt/inc/unistd.h \
416 $(SRC)/buffer.h \ 438 $(SRC)/buffer.h \
417 $(SRC)/ccl.h \
418 $(SRC)/character.h \ 439 $(SRC)/character.h \
419 $(SRC)/charset.h \ 440 $(SRC)/charset.h \
420 $(SRC)/coding.h \ 441 $(SRC)/coding.h \
421 $(SRC)/composite.h \
422 $(SRC)/disptab.h 442 $(SRC)/disptab.h
423 443
424$(BLD)/chartab.$(O) : \ 444$(BLD)/chartab.$(O) : \
425 $(SRC)/chartab.c \ 445 $(SRC)/chartab.c \
426 $(CONFIG_H) \ 446 $(CONFIG_H) \
427 $(SRC)/charset.h \ 447 $(SRC)/ccl.h \
428 $(SRC)/character.h 448 $(SRC)/character.h \
449 $(SRC)/charset.h
429 450
430$(BLD)/cm.$(O) : \ 451$(BLD)/cm.$(O) : \
431 $(SRC)/cm.c \ 452 $(SRC)/cm.c \
432 $(CONFIG_H) \ 453 $(CONFIG_H) \
433 $(SRC)/cm.h \ 454 $(SRC)/cm.h \
434 $(SRC)/termhooks.h 455 $(SRC)/dispextern.h \
456 $(SRC)/frame.h \
457 $(SRC)/termchar.h \
458 $(SRC)/termhooks.h \
459 $(SRC)/w32gui.h
435 460
436$(BLD)/cmds.$(O) : \ 461$(BLD)/cmds.$(O) : \
437 $(SRC)/cmds.c \ 462 $(SRC)/cmds.c \
438 $(CONFIG_H) \ 463 $(CONFIG_H) \
464 $(EMACS_ROOT)/nt/inc/sys/time.h \
439 $(SRC)/buffer.h \ 465 $(SRC)/buffer.h \
440 $(SRC)/character.h \ 466 $(SRC)/character.h \
441 $(SRC)/charset.h \ 467 $(SRC)/coding.h \
442 $(SRC)/commands.h \ 468 $(SRC)/commands.h \
443 $(SRC)/dispextern.h \ 469 $(SRC)/dispextern.h \
444 $(SRC)/keyboard.h \ 470 $(SRC)/keyboard.h \
445 $(SRC)/keymap.h \ 471 $(SRC)/keymap.h \
446 $(SRC)/syntax.h \ 472 $(SRC)/syntax.h \
473 $(SRC)/systime.h \
447 $(SRC)/w32gui.h \ 474 $(SRC)/w32gui.h \
448 $(SRC)/window.h 475 $(SRC)/window.h
449 476
@@ -457,7 +484,6 @@ $(BLD)/coding.$(O) : \
457 $(SRC)/coding.h \ 484 $(SRC)/coding.h \
458 $(SRC)/composite.h \ 485 $(SRC)/composite.h \
459 $(SRC)/dispextern.h \ 486 $(SRC)/dispextern.h \
460 $(SRC)/intervals.h \
461 $(SRC)/frame.h \ 487 $(SRC)/frame.h \
462 $(SRC)/termhooks.h \ 488 $(SRC)/termhooks.h \
463 $(SRC)/w32gui.h \ 489 $(SRC)/w32gui.h \
@@ -467,30 +493,43 @@ $(BLD)/composite.$(O) : \
467 $(SRC)/composite.c \ 493 $(SRC)/composite.c \
468 $(CONFIG_H) \ 494 $(CONFIG_H) \
469 $(SRC)/buffer.h \ 495 $(SRC)/buffer.h \
496 $(SRC)/ccl.h \
470 $(SRC)/character.h \ 497 $(SRC)/character.h \
471 $(SRC)/charset.h \
472 $(SRC)/composite.h \ 498 $(SRC)/composite.h \
473 $(SRC)/dispextern.h \ 499 $(SRC)/dispextern.h \
500 $(SRC)/font.h \
501 $(SRC)/frame.h \
474 $(SRC)/intervals.h \ 502 $(SRC)/intervals.h \
475 $(SRC)/w32gui.h 503 $(SRC)/w32gui.h \
504 $(SRC)/window.h
476 505
477$(BLD)/data.$(O) : \ 506$(BLD)/data.$(O) : \
478 $(SRC)/data.c \ 507 $(SRC)/data.c \
479 $(CONFIG_H) \ 508 $(CONFIG_H) \
509 $(EMACS_ROOT)/nt/inc/sys/time.h \
480 $(SRC)/buffer.h \ 510 $(SRC)/buffer.h \
481 $(SRC)/character.h \ 511 $(SRC)/character.h \
482 $(SRC)/charset.h \ 512 $(SRC)/coding.h \
513 $(SRC)/dispextern.h \
483 $(SRC)/frame.h \ 514 $(SRC)/frame.h \
484 $(SRC)/keyboard.h \ 515 $(SRC)/keyboard.h \
485 $(SRC)/puresize.h \ 516 $(SRC)/puresize.h \
486 $(SRC)/syssignal.h \ 517 $(SRC)/syssignal.h \
487 $(SRC)/termhooks.h 518 $(SRC)/systime.h \
519 $(SRC)/termhooks.h \
520 $(SRC)/w32gui.h
488 521
489$(BLD)/dired.$(O) : \ 522$(BLD)/dired.$(O) : \
490 $(SRC)/dired.c \ 523 $(SRC)/dired.c \
491 $(CONFIG_H) \ 524 $(CONFIG_H) \
525 $(EMACS_ROOT)/nt/inc/grp.h \
526 $(EMACS_ROOT)/nt/inc/pwd.h \
527 $(EMACS_ROOT)/nt/inc/unistd.h \
528 $(EMACS_ROOT)/nt/inc/sys/dir.h \
529 $(EMACS_ROOT)/nt/inc/sys/time.h \
530 $(SRC)/atimer.h \
531 $(SRC)/blockinput.h \
492 $(SRC)/buffer.h \ 532 $(SRC)/buffer.h \
493 $(SRC)/ccl.h \
494 $(SRC)/character.h \ 533 $(SRC)/character.h \
495 $(SRC)/charset.h \ 534 $(SRC)/charset.h \
496 $(SRC)/coding.h \ 535 $(SRC)/coding.h \
@@ -502,14 +541,14 @@ $(BLD)/dired.$(O) : \
502$(BLD)/dispnew.$(O) : \ 541$(BLD)/dispnew.$(O) : \
503 $(SRC)/dispnew.c \ 542 $(SRC)/dispnew.c \
504 $(CONFIG_H) \ 543 $(CONFIG_H) \
505 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 544 $(EMACS_ROOT)/nt/inc/unistd.h \
506 $(EMACS_ROOT)/nt/inc/sys/file.h \ 545 $(EMACS_ROOT)/nt/inc/sys/time.h \
507 $(SRC)/atimer.h \ 546 $(SRC)/atimer.h \
508 $(SRC)/blockinput.h \ 547 $(SRC)/blockinput.h \
509 $(SRC)/buffer.h \ 548 $(SRC)/buffer.h \
510 $(SRC)/character.h \ 549 $(SRC)/character.h \
511 $(SRC)/charset.h \
512 $(SRC)/cm.h \ 550 $(SRC)/cm.h \
551 $(SRC)/coding.h \
513 $(SRC)/commands.h \ 552 $(SRC)/commands.h \
514 $(SRC)/composite.h \ 553 $(SRC)/composite.h \
515 $(SRC)/dispextern.h \ 554 $(SRC)/dispextern.h \
@@ -531,27 +570,32 @@ $(BLD)/dispnew.$(O) : \
531$(BLD)/doc.$(O) : \ 570$(BLD)/doc.$(O) : \
532 $(SRC)/doc.c \ 571 $(SRC)/doc.c \
533 $(CONFIG_H) \ 572 $(CONFIG_H) \
573 $(EMACS_ROOT)/nt/inc/unistd.h \
534 $(EMACS_ROOT)/nt/inc/sys/file.h \ 574 $(EMACS_ROOT)/nt/inc/sys/file.h \
575 $(EMACS_ROOT)/nt/inc/sys/time.h \
535 $(SRC)/buffer.h \ 576 $(SRC)/buffer.h \
536 $(SRC)/character.h \ 577 $(SRC)/character.h \
537 $(SRC)/charset.h \ 578 $(SRC)/coding.h \
538 $(SRC)/keyboard.h \ 579 $(SRC)/keyboard.h \
539 $(SRC)/keymap.h 580 $(SRC)/keymap.h \
581 $(SRC)/systime.h
540 582
541$(BLD)/doprnt.$(O) : \ 583$(BLD)/doprnt.$(O) : \
542 $(SRC)/doprnt.c \ 584 $(SRC)/doprnt.c \
543 $(CONFIG_H) \ 585 $(CONFIG_H) \
544 $(SRC)/character.h \ 586 $(EMACS_ROOT)/nt/inc/unistd.h \
545 $(SRC)/charset.c 587 $(SRC)/character.h
546 588
547$(BLD)/editfns.$(O) : \ 589$(BLD)/editfns.$(O) : \
548 $(SRC)/editfns.c \ 590 $(SRC)/editfns.c \
549 $(CONFIG_H) \ 591 $(CONFIG_H) \
550 $(EMACS_ROOT)/nt/inc/pwd.h \ 592 $(EMACS_ROOT)/nt/inc/pwd.h \
593 $(EMACS_ROOT)/nt/inc/unistd.h \
594 $(EMACS_ROOT)/nt/inc/sys/time.h \
595 $(SRC)/atimer.h \
596 $(SRC)/blockinput.h \
551 $(SRC)/buffer.h \ 597 $(SRC)/buffer.h \
552 $(SRC)/ccl.h \
553 $(SRC)/character.h \ 598 $(SRC)/character.h \
554 $(SRC)/charset.h \
555 $(SRC)/coding.h \ 599 $(SRC)/coding.h \
556 $(SRC)/composite.h \ 600 $(SRC)/composite.h \
557 $(SRC)/dispextern.h \ 601 $(SRC)/dispextern.h \
@@ -564,14 +608,17 @@ $(BLD)/editfns.$(O) : \
564$(BLD)/emacs.$(O) : \ 608$(BLD)/emacs.$(O) : \
565 $(SRC)/emacs.c \ 609 $(SRC)/emacs.c \
566 $(CONFIG_H) \ 610 $(CONFIG_H) \
567 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 611 $(EMACS_ROOT)/nt/inc/unistd.h \
568 $(EMACS_ROOT)/nt/inc/sys/file.h \ 612 $(EMACS_ROOT)/nt/inc/sys/file.h \
613 $(EMACS_ROOT)/nt/inc/sys/time.h \
569 $(SRC)/atimer.h \ 614 $(SRC)/atimer.h \
570 $(SRC)/blockinput.h \ 615 $(SRC)/blockinput.h \
571 $(SRC)/buffer.h \ 616 $(SRC)/buffer.h \
617 $(SRC)/coding.h \
572 $(SRC)/commands.h \ 618 $(SRC)/commands.h \
573 $(SRC)/composite.h \ 619 $(SRC)/composite.h \
574 $(SRC)/dispextern.h \ 620 $(SRC)/dispextern.h \
621 $(SRC)/frame.h \
575 $(SRC)/intervals.h \ 622 $(SRC)/intervals.h \
576 $(SRC)/keyboard.h \ 623 $(SRC)/keyboard.h \
577 $(SRC)/keymap.h \ 624 $(SRC)/keymap.h \
@@ -580,6 +627,7 @@ $(BLD)/emacs.$(O) : \
580 $(SRC)/systime.h \ 627 $(SRC)/systime.h \
581 $(SRC)/systty.h \ 628 $(SRC)/systty.h \
582 $(SRC)/termhooks.h \ 629 $(SRC)/termhooks.h \
630 $(SRC)/w32.h \
583 $(SRC)/w32gui.h \ 631 $(SRC)/w32gui.h \
584 $(SRC)/w32heap.h \ 632 $(SRC)/w32heap.h \
585 $(SRC)/window.h 633 $(SRC)/window.h
@@ -587,8 +635,10 @@ $(BLD)/emacs.$(O) : \
587$(BLD)/eval.$(O) : \ 635$(BLD)/eval.$(O) : \
588 $(SRC)/eval.c \ 636 $(SRC)/eval.c \
589 $(CONFIG_H) \ 637 $(CONFIG_H) \
638 $(EMACS_ROOT)/nt/inc/sys/time.h \
590 $(SRC)/atimer.h \ 639 $(SRC)/atimer.h \
591 $(SRC)/blockinput.h \ 640 $(SRC)/blockinput.h \
641 $(SRC)/coding.h \
592 $(SRC)/commands.h \ 642 $(SRC)/commands.h \
593 $(SRC)/dispextern.h \ 643 $(SRC)/dispextern.h \
594 $(SRC)/keyboard.h \ 644 $(SRC)/keyboard.h \
@@ -599,16 +649,17 @@ $(BLD)/fileio.$(O) : \
599 $(SRC)/fileio.c \ 649 $(SRC)/fileio.c \
600 $(CONFIG_H) \ 650 $(CONFIG_H) \
601 $(EMACS_ROOT)/nt/inc/pwd.h \ 651 $(EMACS_ROOT)/nt/inc/pwd.h \
602 $(EMACS_ROOT)/nt/inc/sys/param.h \ 652 $(EMACS_ROOT)/nt/inc/unistd.h \
603 $(EMACS_ROOT)/nt/inc/sys/file.h \ 653 $(EMACS_ROOT)/nt/inc/sys/time.h \
654 $(SRC)/atimer.h \
655 $(SRC)/blockinput.h \
604 $(SRC)/buffer.h \ 656 $(SRC)/buffer.h \
605 $(SRC)/ccl.h \
606 $(SRC)/character.h \ 657 $(SRC)/character.h \
607 $(SRC)/charset.h \
608 $(SRC)/coding.h \ 658 $(SRC)/coding.h \
609 $(SRC)/commands.h \ 659 $(SRC)/commands.h \
610 $(SRC)/composite.h \ 660 $(SRC)/composite.h \
611 $(SRC)/dispextern.h \ 661 $(SRC)/dispextern.h \
662 $(SRC)/frame.h \
612 $(SRC)/intervals.h \ 663 $(SRC)/intervals.h \
613 $(SRC)/systime.h \ 664 $(SRC)/systime.h \
614 $(SRC)/w32gui.h \ 665 $(SRC)/w32gui.h \
@@ -618,12 +669,11 @@ $(BLD)/filelock.$(O) : \
618 $(SRC)/filelock.c \ 669 $(SRC)/filelock.c \
619 $(CONFIG_H) \ 670 $(CONFIG_H) \
620 $(EMACS_ROOT)/nt/inc/pwd.h \ 671 $(EMACS_ROOT)/nt/inc/pwd.h \
672 $(EMACS_ROOT)/nt/inc/unistd.h \
621 $(EMACS_ROOT)/nt/inc/sys/file.h \ 673 $(EMACS_ROOT)/nt/inc/sys/file.h \
622 $(EMACS_ROOT)/src/epaths.h \ 674 $(EMACS_ROOT)/nt/inc/sys/time.h \
623 $(SRC)/buffer.h \ 675 $(SRC)/buffer.h \
624 $(SRC)/ccl.h \
625 $(SRC)/character.h \ 676 $(SRC)/character.h \
626 $(SRC)/charset.h \
627 $(SRC)/coding.h \ 677 $(SRC)/coding.h \
628 $(SRC)/systime.h 678 $(SRC)/systime.h
629 679
@@ -645,12 +695,12 @@ $(BLD)/fns.$(O) : \
645 $(CONFIG_H) \ 695 $(CONFIG_H) \
646 $(EMACS_ROOT)/nt/inc/langinfo.h \ 696 $(EMACS_ROOT)/nt/inc/langinfo.h \
647 $(EMACS_ROOT)/nt/inc/nl_types.h \ 697 $(EMACS_ROOT)/nt/inc/nl_types.h \
698 $(EMACS_ROOT)/nt/inc/unistd.h \
699 $(EMACS_ROOT)/nt/inc/sys/time.h \
648 $(SRC)/atimer.h \ 700 $(SRC)/atimer.h \
649 $(SRC)/blockinput.h \ 701 $(SRC)/blockinput.h \
650 $(SRC)/buffer.h \ 702 $(SRC)/buffer.h \
651 $(SRC)/ccl.h \
652 $(SRC)/character.h \ 703 $(SRC)/character.h \
653 $(SRC)/charset.h \
654 $(SRC)/coding.h \ 704 $(SRC)/coding.h \
655 $(SRC)/commands.h \ 705 $(SRC)/commands.h \
656 $(SRC)/composite.h \ 706 $(SRC)/composite.h \
@@ -661,47 +711,62 @@ $(BLD)/fns.$(O) : \
661 $(SRC)/keymap.h \ 711 $(SRC)/keymap.h \
662 $(SRC)/md5.h \ 712 $(SRC)/md5.h \
663 $(SRC)/systime.h \ 713 $(SRC)/systime.h \
664 $(SRC)/termhooks.h \
665 $(SRC)/w32gui.h \ 714 $(SRC)/w32gui.h \
666 $(SRC)/window.h 715 $(SRC)/window.h
667 716
668$(BLD)/font.$(O) : \ 717$(BLD)/font.$(O) : \
669 $(SRC)/font.c \ 718 $(SRC)/font.c \
670 $(CONFIG_H) \ 719 $(CONFIG_H) \
671 $(SRC)/dispextern.h \ 720 $(SRC)/buffer.h \
672 $(SRC)/frame.h \
673 $(SRC)/window.h \
674 $(SRC)/ccl.h \ 721 $(SRC)/ccl.h \
675 $(SRC)/character.h \ 722 $(SRC)/character.h \
676 $(SRC)/charset.h \ 723 $(SRC)/charset.h \
677 $(SRC)/font.h 724 $(SRC)/composite.h \
725 $(SRC)/dispextern.h \
726 $(SRC)/font.h \
727 $(SRC)/fontset.h \
728 $(SRC)/frame.h \
729 $(SRC)/w32gui.h \
730 $(SRC)/w32term.h \
731 $(SRC)/window.h
678 732
679$(BLD)/fontset.$(O) : \ 733$(BLD)/fontset.$(O) : \
680 $(SRC)/fontset.c \ 734 $(SRC)/fontset.c \
681 $(CONFIG_H) \ 735 $(CONFIG_H) \
736 $(EMACS_ROOT)/nt/inc/sys/time.h \
737 $(SRC)/atimer.h \
738 $(SRC)/blockinput.h \
682 $(SRC)/buffer.h \ 739 $(SRC)/buffer.h \
683 $(SRC)/ccl.h \ 740 $(SRC)/ccl.h \
684 $(SRC)/character.h \ 741 $(SRC)/character.h \
685 $(SRC)/charset.h \ 742 $(SRC)/charset.h \
743 $(SRC)/coding.h \
744 $(SRC)/composite.h \
686 $(SRC)/dispextern.h \ 745 $(SRC)/dispextern.h \
687 $(SRC)/font.h \ 746 $(SRC)/font.h \
688 $(SRC)/fontset.h \ 747 $(SRC)/fontset.h \
689 $(SRC)/frame.h \ 748 $(SRC)/frame.h \
749 $(SRC)/intervals.h \
690 $(SRC)/keyboard.h \ 750 $(SRC)/keyboard.h \
751 $(SRC)/systime.h \
691 $(SRC)/termhooks.h \ 752 $(SRC)/termhooks.h \
692 $(SRC)/w32gui.h \ 753 $(SRC)/w32gui.h \
754 $(SRC)/w32term.h \
693 $(SRC)/window.h 755 $(SRC)/window.h
694 756
695$(BLD)/frame.$(O) : \ 757$(BLD)/frame.$(O) : \
696 $(SRC)/frame.c \ 758 $(SRC)/frame.c \
697 $(CONFIG_H) \ 759 $(CONFIG_H) \
760 $(EMACS_ROOT)/nt/inc/sys/time.h \
698 $(SRC)/atimer.h \ 761 $(SRC)/atimer.h \
699 $(SRC)/blockinput.h \ 762 $(SRC)/blockinput.h \
700 $(SRC)/buffer.h \ 763 $(SRC)/buffer.h \
764 $(SRC)/ccl.h \
701 $(SRC)/character.h \ 765 $(SRC)/character.h \
702 $(SRC)/charset.h \ 766 $(SRC)/coding.h \
703 $(SRC)/commands.h \ 767 $(SRC)/commands.h \
704 $(SRC)/dispextern.h \ 768 $(SRC)/dispextern.h \
769 $(SRC)/font.h \
705 $(SRC)/fontset.h \ 770 $(SRC)/fontset.h \
706 $(SRC)/frame.h \ 771 $(SRC)/frame.h \
707 $(SRC)/keyboard.h \ 772 $(SRC)/keyboard.h \
@@ -715,43 +780,51 @@ $(BLD)/frame.$(O) : \
715$(BLD)/fringe.$(O) : \ 780$(BLD)/fringe.$(O) : \
716 $(SRC)/fringe.c \ 781 $(SRC)/fringe.c \
717 $(CONFIG_H) \ 782 $(CONFIG_H) \
783 $(EMACS_ROOT)/nt/inc/sys/time.h \
718 $(SRC)/atimer.h \ 784 $(SRC)/atimer.h \
719 $(SRC)/blockinput.h \ 785 $(SRC)/blockinput.h \
720 $(SRC)/buffer.h \ 786 $(SRC)/buffer.h \
721 $(SRC)/dispextern.h \ 787 $(SRC)/dispextern.h \
722 $(SRC)/frame.h \ 788 $(SRC)/frame.h \
723 $(SRC)/systime.h \ 789 $(SRC)/systime.h \
790 $(SRC)/termhooks.h \
724 $(SRC)/w32gui.h \ 791 $(SRC)/w32gui.h \
725 $(SRC)/window.h 792 $(SRC)/window.h
726 793
727$(BLD)/gmalloc.$(O) : \ 794$(BLD)/gmalloc.$(O) : \
728 $(SRC)/gmalloc.c \ 795 $(SRC)/gmalloc.c \
729 $(CONFIG_H) \ 796 $(CONFIG_H) \
730 $(EMACS_ROOT)/nt/inc/sys/param.h \ 797 $(EMACS_ROOT)/nt/inc/unistd.h \
731 $(SRC)/getpagesize.h 798 $(SRC)/getpagesize.h
732 799
733$(BLD)/image.$(O): \ 800$(BLD)/image.$(O) : \
734 $(SRC)/image.c \ 801 $(SRC)/image.c \
735 $(CONFIG_H) \ 802 $(CONFIG_H) \
803 $(EMACS_ROOT)/nt/inc/unistd.h \
804 $(EMACS_ROOT)/nt/inc/sys/time.h \
736 $(SRC)/atimer.h \ 805 $(SRC)/atimer.h \
737 $(SRC)/blockinput.h \ 806 $(SRC)/blockinput.h \
807 $(SRC)/ccl.h \
808 $(SRC)/character.h \
809 $(SRC)/coding.h \
738 $(SRC)/dispextern.h \ 810 $(SRC)/dispextern.h \
739 $(SRC)/epaths.h \ 811 $(SRC)/epaths.h \
812 $(SRC)/font.h \
740 $(SRC)/frame.h \ 813 $(SRC)/frame.h \
741 $(SRC)/systime.h \ 814 $(SRC)/systime.h \
742 $(SRC)/termhooks.h \ 815 $(SRC)/termhooks.h \
743 $(SRC)/w32gui.h \ 816 $(SRC)/w32gui.h \
744 $(SRC)/w32heap.h \
745 $(SRC)/w32term.h \ 817 $(SRC)/w32term.h \
746 $(SRC)/window.h 818 $(SRC)/window.h
747 819
748$(BLD)/indent.$(O) : \ 820$(BLD)/indent.$(O) : \
749 $(SRC)/indent.c \ 821 $(SRC)/indent.c \
750 $(CONFIG_H) \ 822 $(CONFIG_H) \
823 $(EMACS_ROOT)/nt/inc/sys/time.h \
751 $(SRC)/buffer.h \ 824 $(SRC)/buffer.h \
752 $(SRC)/category.h \ 825 $(SRC)/category.h \
753 $(SRC)/character.h \ 826 $(SRC)/character.h \
754 $(SRC)/charset.h \ 827 $(SRC)/coding.h \
755 $(SRC)/composite.h \ 828 $(SRC)/composite.h \
756 $(SRC)/dispextern.h \ 829 $(SRC)/dispextern.h \
757 $(SRC)/disptab.h \ 830 $(SRC)/disptab.h \
@@ -760,6 +833,7 @@ $(BLD)/indent.$(O) : \
760 $(SRC)/intervals.h \ 833 $(SRC)/intervals.h \
761 $(SRC)/keyboard.h \ 834 $(SRC)/keyboard.h \
762 $(SRC)/region-cache.h \ 835 $(SRC)/region-cache.h \
836 $(SRC)/systime.h \
763 $(SRC)/termchar.h \ 837 $(SRC)/termchar.h \
764 $(SRC)/termopts.h \ 838 $(SRC)/termopts.h \
765 $(SRC)/w32gui.h \ 839 $(SRC)/w32gui.h \
@@ -768,11 +842,11 @@ $(BLD)/indent.$(O) : \
768$(BLD)/insdel.$(O) : \ 842$(BLD)/insdel.$(O) : \
769 $(SRC)/insdel.c \ 843 $(SRC)/insdel.c \
770 $(CONFIG_H) \ 844 $(CONFIG_H) \
845 $(EMACS_ROOT)/nt/inc/sys/time.h \
771 $(SRC)/atimer.h \ 846 $(SRC)/atimer.h \
772 $(SRC)/blockinput.h \ 847 $(SRC)/blockinput.h \
773 $(SRC)/buffer.h \ 848 $(SRC)/buffer.h \
774 $(SRC)/character.h \ 849 $(SRC)/character.h \
775 $(SRC)/charset.h \
776 $(SRC)/composite.h \ 850 $(SRC)/composite.h \
777 $(SRC)/dispextern.h \ 851 $(SRC)/dispextern.h \
778 $(SRC)/intervals.h \ 852 $(SRC)/intervals.h \
@@ -784,25 +858,29 @@ $(BLD)/insdel.$(O) : \
784$(BLD)/intervals.$(O) : \ 858$(BLD)/intervals.$(O) : \
785 $(SRC)/intervals.c \ 859 $(SRC)/intervals.c \
786 $(CONFIG_H) \ 860 $(CONFIG_H) \
861 $(EMACS_ROOT)/nt/inc/sys/time.h \
787 $(SRC)/buffer.h \ 862 $(SRC)/buffer.h \
863 $(SRC)/coding.h \
788 $(SRC)/composite.h \ 864 $(SRC)/composite.h \
789 $(SRC)/dispextern.h \ 865 $(SRC)/dispextern.h \
790 $(SRC)/intervals.h \ 866 $(SRC)/intervals.h \
791 $(SRC)/keyboard.h \ 867 $(SRC)/keyboard.h \
792 $(SRC)/keymap.h \ 868 $(SRC)/keymap.h \
793 $(SRC)/puresize.h \ 869 $(SRC)/puresize.h \
870 $(SRC)/systime.h \
794 $(SRC)/w32gui.h 871 $(SRC)/w32gui.h
795 872
796$(BLD)/keyboard.$(O) : \ 873$(BLD)/keyboard.$(O) : \
797 $(SRC)/keyboard.c \ 874 $(SRC)/keyboard.c \
798 $(CONFIG_H) \ 875 $(CONFIG_H) \
876 $(EMACS_ROOT)/nt/inc/unistd.h \
799 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 877 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
800 $(EMACS_ROOT)/nt/inc/sys/file.h \ 878 $(EMACS_ROOT)/nt/inc/sys/time.h \
801 $(SRC)/atimer.h \ 879 $(SRC)/atimer.h \
802 $(SRC)/blockinput.h \ 880 $(SRC)/blockinput.h \
803 $(SRC)/buffer.h \ 881 $(SRC)/buffer.h \
804 $(SRC)/character.h \ 882 $(SRC)/character.h \
805 $(SRC)/charset.h \ 883 $(SRC)/coding.h \
806 $(SRC)/commands.h \ 884 $(SRC)/commands.h \
807 $(SRC)/composite.h \ 885 $(SRC)/composite.h \
808 $(SRC)/dispextern.h \ 886 $(SRC)/dispextern.h \
@@ -816,7 +894,6 @@ $(BLD)/keyboard.$(O) : \
816 $(SRC)/syntax.h \ 894 $(SRC)/syntax.h \
817 $(SRC)/syssignal.h \ 895 $(SRC)/syssignal.h \
818 $(SRC)/systime.h \ 896 $(SRC)/systime.h \
819 $(SRC)/systty.h \
820 $(SRC)/termchar.h \ 897 $(SRC)/termchar.h \
821 $(SRC)/termhooks.h \ 898 $(SRC)/termhooks.h \
822 $(SRC)/termopts.h \ 899 $(SRC)/termopts.h \
@@ -827,21 +904,25 @@ $(BLD)/keyboard.$(O) : \
827$(BLD)/keymap.$(O) : \ 904$(BLD)/keymap.$(O) : \
828 $(SRC)/keymap.c \ 905 $(SRC)/keymap.c \
829 $(CONFIG_H) \ 906 $(CONFIG_H) \
907 $(EMACS_ROOT)/nt/inc/sys/time.h \
830 $(SRC)/atimer.h \ 908 $(SRC)/atimer.h \
831 $(SRC)/blockinput.h \ 909 $(SRC)/blockinput.h \
832 $(SRC)/buffer.h \ 910 $(SRC)/buffer.h \
833 $(SRC)/character.h \ 911 $(SRC)/character.h \
834 $(SRC)/charset.h \ 912 $(SRC)/charset.h \
913 $(SRC)/coding.h \
835 $(SRC)/commands.h \ 914 $(SRC)/commands.h \
836 $(SRC)/composite.h \ 915 $(SRC)/composite.h \
837 $(SRC)/dispextern.h \ 916 $(SRC)/dispextern.h \
917 $(SRC)/frame.h \
838 $(SRC)/intervals.h \ 918 $(SRC)/intervals.h \
839 $(SRC)/keyboard.h \ 919 $(SRC)/keyboard.h \
840 $(SRC)/keymap.h \ 920 $(SRC)/keymap.h \
841 $(SRC)/puresize.h \ 921 $(SRC)/puresize.h \
842 $(SRC)/systime.h \ 922 $(SRC)/systime.h \
843 $(SRC)/termhooks.h \ 923 $(SRC)/termhooks.h \
844 $(SRC)/w32gui.h 924 $(SRC)/w32gui.h \
925 $(SRC)/window.h
845 926
846$(BLD)/lastfile.$(O) : \ 927$(BLD)/lastfile.$(O) : \
847 $(SRC)/lastfile.c \ 928 $(SRC)/lastfile.c \
@@ -850,30 +931,37 @@ $(BLD)/lastfile.$(O) : \
850$(BLD)/lread.$(O) : \ 931$(BLD)/lread.$(O) : \
851 $(SRC)/lread.c \ 932 $(SRC)/lread.c \
852 $(CONFIG_H) \ 933 $(CONFIG_H) \
934 $(EMACS_ROOT)/nt/inc/unistd.h \
853 $(EMACS_ROOT)/nt/inc/sys/file.h \ 935 $(EMACS_ROOT)/nt/inc/sys/file.h \
854 $(EMACS_ROOT)/src/epaths.h \ 936 $(EMACS_ROOT)/nt/inc/sys/time.h \
937 $(SRC)/atimer.h \
855 $(SRC)/blockinput.h \ 938 $(SRC)/blockinput.h \
856 $(SRC)/buffer.h \ 939 $(SRC)/buffer.h \
857 $(SRC)/ccl.h \
858 $(SRC)/character.h \ 940 $(SRC)/character.h \
859 $(SRC)/charset.h \ 941 $(SRC)/charset.h \
860 $(SRC)/coding.h \ 942 $(SRC)/coding.h \
861 $(SRC)/commands.h \ 943 $(SRC)/commands.h \
862 $(SRC)/composite.h \ 944 $(SRC)/composite.h \
863 $(SRC)/dispextern.h \ 945 $(SRC)/dispextern.h \
946 $(SRC)/epaths.h \
947 $(SRC)/frame.h \
864 $(SRC)/intervals.h \ 948 $(SRC)/intervals.h \
865 $(SRC)/keyboard.h \ 949 $(SRC)/keyboard.h \
950 $(SRC)/systime.h \
866 $(SRC)/termhooks.h \ 951 $(SRC)/termhooks.h \
867 $(SRC)/w32gui.h 952 $(SRC)/w32gui.h
868 953
869$(BLD)/macros.$(O) : \ 954$(BLD)/macros.$(O) : \
870 $(SRC)/macros.c \ 955 $(SRC)/macros.c \
871 $(CONFIG_H) \ 956 $(CONFIG_H) \
957 $(EMACS_ROOT)/nt/inc/sys/time.h \
872 $(SRC)/buffer.h \ 958 $(SRC)/buffer.h \
959 $(SRC)/coding.h \
873 $(SRC)/commands.h \ 960 $(SRC)/commands.h \
874 $(SRC)/dispextern.h \ 961 $(SRC)/dispextern.h \
875 $(SRC)/keyboard.h \ 962 $(SRC)/keyboard.h \
876 $(SRC)/macros.h \ 963 $(SRC)/macros.h \
964 $(SRC)/systime.h \
877 $(SRC)/w32gui.h \ 965 $(SRC)/w32gui.h \
878 $(SRC)/window.h 966 $(SRC)/window.h
879 967
@@ -881,31 +969,37 @@ $(BLD)/marker.$(O) : \
881 $(SRC)/marker.c \ 969 $(SRC)/marker.c \
882 $(CONFIG_H) \ 970 $(CONFIG_H) \
883 $(SRC)/buffer.h \ 971 $(SRC)/buffer.h \
884 $(SRC)/character.h \ 972 $(SRC)/character.h
885 $(SRC)/charset.h
886 973
887$(BLD)/md5.$(O) : \ 974$(BLD)/md5.$(O) : \
888 $(SRC)/md5.c \ 975 $(SRC)/md5.c \
976 $(CONFIG_H) \
889 $(SRC)/md5.h 977 $(SRC)/md5.h
890 978
891$(BLD)/menu.$(O) : \ 979$(BLD)/menu.$(O) : \
892 $(SRC)/menu.c \ 980 $(SRC)/menu.c \
893 $(CONFIG_H) \ 981 $(CONFIG_H) \
894 $(SRC)/keyboard.h \ 982 $(EMACS_ROOT)/nt/inc/sys/time.h \
895 $(SRC)/keymap.h \ 983 $(SRC)/atimer.h \
896 $(SRC)/frame.h \ 984 $(SRC)/blockinput.h \
897 $(SRC)/termhooks.h \ 985 $(SRC)/coding.h \
898 $(SRC)/blockinput.h \ 986 $(SRC)/dispextern.h \
899 $(SRC)/dispextern.h \ 987 $(SRC)/frame.h \
900 $(SRC)/w32gui.h \ 988 $(SRC)/keyboard.h \
901 $(SRC)/w32term.h 989 $(SRC)/keymap.h \
990 $(SRC)/menu.h \
991 $(SRC)/systime.h \
992 $(SRC)/termhooks.h \
993 $(SRC)/w32gui.h \
994 $(SRC)/w32term.h
902 995
903$(BLD)/minibuf.$(O) : \ 996$(BLD)/minibuf.$(O) : \
904 $(SRC)/minibuf.c \ 997 $(SRC)/minibuf.c \
905 $(CONFIG_H) \ 998 $(CONFIG_H) \
999 $(EMACS_ROOT)/nt/inc/sys/time.h \
906 $(SRC)/buffer.h \ 1000 $(SRC)/buffer.h \
907 $(SRC)/character.h \ 1001 $(SRC)/character.h \
908 $(SRC)/charset.h \ 1002 $(SRC)/coding.h \
909 $(SRC)/commands.h \ 1003 $(SRC)/commands.h \
910 $(SRC)/composite.h \ 1004 $(SRC)/composite.h \
911 $(SRC)/dispextern.h \ 1005 $(SRC)/dispextern.h \
@@ -914,6 +1008,7 @@ $(BLD)/minibuf.$(O) : \
914 $(SRC)/keyboard.h \ 1008 $(SRC)/keyboard.h \
915 $(SRC)/keymap.h \ 1009 $(SRC)/keymap.h \
916 $(SRC)/syntax.h \ 1010 $(SRC)/syntax.h \
1011 $(SRC)/systime.h \
917 $(SRC)/termhooks.h \ 1012 $(SRC)/termhooks.h \
918 $(SRC)/w32gui.h \ 1013 $(SRC)/w32gui.h \
919 $(SRC)/window.h 1014 $(SRC)/window.h
@@ -921,10 +1016,19 @@ $(BLD)/minibuf.$(O) : \
921$(BLD)/w32.$(O) : \ 1016$(BLD)/w32.$(O) : \
922 $(SRC)/w32.c \ 1017 $(SRC)/w32.c \
923 $(CONFIG_H) \ 1018 $(CONFIG_H) \
1019 $(EMACS_ROOT)/nt/inc/grp.h \
924 $(EMACS_ROOT)/nt/inc/pwd.h \ 1020 $(EMACS_ROOT)/nt/inc/pwd.h \
1021 $(EMACS_ROOT)/nt/inc/unistd.h \
1022 $(EMACS_ROOT)/nt/inc/sys/file.h \
1023 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1024 $(EMACS_ROOT)/nt/inc/sys/time.h \
1025 $(SRC)/coding.h \
1026 $(SRC)/dispextern.h \
925 $(SRC)/ndir.h \ 1027 $(SRC)/ndir.h \
1028 $(SRC)/process.h \
926 $(SRC)/systime.h \ 1029 $(SRC)/systime.h \
927 $(SRC)/w32.h \ 1030 $(SRC)/w32.h \
1031 $(SRC)/w32gui.h \
928 $(SRC)/w32heap.h 1032 $(SRC)/w32heap.h
929 1033
930$(BLD)/w32heap.$(O) : \ 1034$(BLD)/w32heap.$(O) : \
@@ -935,8 +1039,11 @@ $(BLD)/w32heap.$(O) : \
935$(BLD)/w32inevt.$(O) : \ 1039$(BLD)/w32inevt.$(O) : \
936 $(SRC)/w32inevt.c \ 1040 $(SRC)/w32inevt.c \
937 $(CONFIG_H) \ 1041 $(CONFIG_H) \
1042 $(EMACS_ROOT)/nt/inc/sys/time.h \
938 $(SRC)/atimer.h \ 1043 $(SRC)/atimer.h \
939 $(SRC)/blockinput.h \ 1044 $(SRC)/blockinput.h \
1045 $(SRC)/coding.h \
1046 $(SRC)/dispextern.h \
940 $(SRC)/frame.h \ 1047 $(SRC)/frame.h \
941 $(SRC)/keyboard.h \ 1048 $(SRC)/keyboard.h \
942 $(SRC)/systime.h \ 1049 $(SRC)/systime.h \
@@ -950,7 +1057,12 @@ $(BLD)/w32proc.$(O) : \
950 $(CONFIG_H) \ 1057 $(CONFIG_H) \
951 $(EMACS_ROOT)/nt/inc/langinfo.h \ 1058 $(EMACS_ROOT)/nt/inc/langinfo.h \
952 $(EMACS_ROOT)/nt/inc/nl_types.h \ 1059 $(EMACS_ROOT)/nt/inc/nl_types.h \
1060 $(EMACS_ROOT)/nt/inc/unistd.h \
1061 $(EMACS_ROOT)/nt/inc/sys/file.h \
1062 $(EMACS_ROOT)/nt/inc/sys/time.h \
953 $(SRC)/character.h \ 1063 $(SRC)/character.h \
1064 $(SRC)/coding.h \
1065 $(SRC)/dispextern.h \
954 $(SRC)/process.h \ 1066 $(SRC)/process.h \
955 $(SRC)/syssignal.h \ 1067 $(SRC)/syssignal.h \
956 $(SRC)/systime.h \ 1068 $(SRC)/systime.h \
@@ -963,44 +1075,57 @@ $(BLD)/w32proc.$(O) : \
963$(BLD)/w32console.$(O) : \ 1075$(BLD)/w32console.$(O) : \
964 $(SRC)/w32console.c \ 1076 $(SRC)/w32console.c \
965 $(CONFIG_H) \ 1077 $(CONFIG_H) \
966 $(SRC)/ccl.h \
967 $(SRC)/character.h \ 1078 $(SRC)/character.h \
968 $(SRC)/charset.h \
969 $(SRC)/coding.h \ 1079 $(SRC)/coding.h \
970 $(SRC)/dispextern.h \ 1080 $(SRC)/dispextern.h \
971 $(SRC)/disptab.h \ 1081 $(SRC)/disptab.h \
972 $(SRC)/frame.h \ 1082 $(SRC)/frame.h \
1083 $(SRC)/termchar.h \
973 $(SRC)/termhooks.h \ 1084 $(SRC)/termhooks.h \
974 $(SRC)/w32gui.h \ 1085 $(SRC)/w32gui.h \
975 $(SRC)/w32inevt.h 1086 $(SRC)/w32inetv.h
976 1087
977$(BLD)/print.$(O) : \ 1088$(BLD)/print.$(O) : \
978 $(SRC)/print.c \ 1089 $(SRC)/print.c \
979 $(CONFIG_H) \ 1090 $(CONFIG_H) \
1091 $(EMACS_ROOT)/nt/inc/unistd.h \
1092 $(EMACS_ROOT)/nt/inc/sys/time.h \
1093 $(SRC)/atimer.h \
1094 $(SRC)/blockinput.h \
980 $(SRC)/buffer.h \ 1095 $(SRC)/buffer.h \
1096 $(SRC)/ccl.h \
981 $(SRC)/character.h \ 1097 $(SRC)/character.h \
982 $(SRC)/charset.h \ 1098 $(SRC)/charset.h \
1099 $(SRC)/coding.h \
983 $(SRC)/composite.h \ 1100 $(SRC)/composite.h \
984 $(SRC)/dispextern.h \ 1101 $(SRC)/dispextern.h \
1102 $(SRC)/font.h \
985 $(SRC)/frame.h \ 1103 $(SRC)/frame.h \
986 $(SRC)/intervals.h \ 1104 $(SRC)/intervals.h \
987 $(SRC)/keyboard.h \ 1105 $(SRC)/keyboard.h \
988 $(SRC)/process.h \ 1106 $(SRC)/process.h \
1107 $(SRC)/systime.h \
989 $(SRC)/termchar.h \ 1108 $(SRC)/termchar.h \
1109 $(SRC)/termhooks.h \
990 $(SRC)/w32gui.h \ 1110 $(SRC)/w32gui.h \
991 $(SRC)/window.h 1111 $(SRC)/window.h
992 1112
993$(BLD)/process.$(O) : \ 1113$(BLD)/process.$(O) : \
994 $(SRC)/process.c \ 1114 $(SRC)/process.c \
995 $(CONFIG_H) \ 1115 $(CONFIG_H) \
996 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 1116 $(EMACS_ROOT)/nt/inc/grp.h \
1117 $(EMACS_ROOT)/nt/inc/netdb.h \
1118 $(EMACS_ROOT)/nt/inc/pwd.h \
1119 $(EMACS_ROOT)/nt/inc/unistd.h \
1120 $(EMACS_ROOT)/nt/inc/arpa/inet.h \
1121 $(EMACS_ROOT)/nt/inc/netinet/in.h \
997 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1122 $(EMACS_ROOT)/nt/inc/sys/file.h \
1123 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1124 $(EMACS_ROOT)/nt/inc/sys/time.h \
998 $(SRC)/atimer.h \ 1125 $(SRC)/atimer.h \
999 $(SRC)/blockinput.h \ 1126 $(SRC)/blockinput.h \
1000 $(SRC)/buffer.h \ 1127 $(SRC)/buffer.h \
1001 $(SRC)/ccl.h \
1002 $(SRC)/character.h \ 1128 $(SRC)/character.h \
1003 $(SRC)/charset.h \
1004 $(SRC)/coding.h \ 1129 $(SRC)/coding.h \
1005 $(SRC)/commands.h \ 1130 $(SRC)/commands.h \
1006 $(SRC)/composite.h \ 1131 $(SRC)/composite.h \
@@ -1015,14 +1140,19 @@ $(BLD)/process.$(O) : \
1015 $(SRC)/syswait.h \ 1140 $(SRC)/syswait.h \
1016 $(SRC)/termhooks.h \ 1141 $(SRC)/termhooks.h \
1017 $(SRC)/termopts.h \ 1142 $(SRC)/termopts.h \
1143 $(SRC)/w32.h \
1018 $(SRC)/w32gui.h \ 1144 $(SRC)/w32gui.h \
1019 $(SRC)/window.h 1145 $(SRC)/window.h
1020 1146
1021$(BLD)/ralloc.$(O) : \ 1147$(BLD)/ralloc.$(O) : \
1022 $(SRC)/ralloc.c \ 1148 $(SRC)/ralloc.c \
1023 $(CONFIG_H) \ 1149 $(CONFIG_H) \
1024 $(EMACS_ROOT)/nt/inc/sys/param.h \ 1150 $(EMACS_ROOT)/nt/inc/unistd.h \
1025 $(SRC)/getpagesize.h 1151 $(EMACS_ROOT)/nt/inc/sys/time.h \
1152 $(SRC)/atimer.h \
1153 $(SRC)/blockinput.h \
1154 $(SRC)/getpagesize.h \
1155 $(SRC)/systime.h
1026 1156
1027$(BLD)/regex.$(O) : \ 1157$(BLD)/regex.$(O) : \
1028 $(SRC)/regex.c \ 1158 $(SRC)/regex.c \
@@ -1030,7 +1160,6 @@ $(BLD)/regex.$(O) : \
1030 $(SRC)/buffer.h \ 1160 $(SRC)/buffer.h \
1031 $(SRC)/category.h \ 1161 $(SRC)/category.h \
1032 $(SRC)/character.h \ 1162 $(SRC)/character.h \
1033 $(SRC)/charset.h \
1034 $(SRC)/regex.h \ 1163 $(SRC)/regex.h \
1035 $(SRC)/syntax.h 1164 $(SRC)/syntax.h
1036 1165
@@ -1043,9 +1172,12 @@ $(BLD)/region-cache.$(O) : \
1043$(BLD)/scroll.$(O) : \ 1172$(BLD)/scroll.$(O) : \
1044 $(SRC)/scroll.c \ 1173 $(SRC)/scroll.c \
1045 $(CONFIG_H) \ 1174 $(CONFIG_H) \
1175 $(EMACS_ROOT)/nt/inc/sys/time.h \
1176 $(SRC)/coding.h \
1046 $(SRC)/dispextern.h \ 1177 $(SRC)/dispextern.h \
1047 $(SRC)/frame.h \ 1178 $(SRC)/frame.h \
1048 $(SRC)/keyboard.h \ 1179 $(SRC)/keyboard.h \
1180 $(SRC)/systime.h \
1049 $(SRC)/termchar.h \ 1181 $(SRC)/termchar.h \
1050 $(SRC)/termhooks.h \ 1182 $(SRC)/termhooks.h \
1051 $(SRC)/w32gui.h \ 1183 $(SRC)/w32gui.h \
@@ -1054,6 +1186,7 @@ $(BLD)/scroll.$(O) : \
1054$(BLD)/search.$(O) : \ 1186$(BLD)/search.$(O) : \
1055 $(SRC)/search.c \ 1187 $(SRC)/search.c \
1056 $(CONFIG_H) \ 1188 $(CONFIG_H) \
1189 $(EMACS_ROOT)/nt/inc/sys/time.h \
1057 $(SRC)/atimer.h \ 1190 $(SRC)/atimer.h \
1058 $(SRC)/blockinput.h \ 1191 $(SRC)/blockinput.h \
1059 $(SRC)/buffer.h \ 1192 $(SRC)/buffer.h \
@@ -1073,13 +1206,18 @@ $(BLD)/search.$(O) : \
1073$(BLD)/sound.$(O) : \ 1206$(BLD)/sound.$(O) : \
1074 $(SRC)/sound.c \ 1207 $(SRC)/sound.c \
1075 $(CONFIG_H) \ 1208 $(CONFIG_H) \
1076 $(SRC)/dispextern.h \ 1209 $(EMACS_ROOT)/nt/inc/unistd.h \
1210 $(EMACS_ROOT)/nt/inc/sys/time.h \
1077 $(SRC)/atimer.h \ 1211 $(SRC)/atimer.h \
1078 $(SRC)/syssignal.h 1212 $(SRC)/dispextern.h \
1213 $(SRC)/syssignal.h \
1214 $(SRC)/systime.h \
1215 $(SRC)/w32gui.h
1079 1216
1080$(BLD)/strftime.$(O) : \ 1217$(BLD)/strftime.$(O) : \
1081 $(SRC)/strftime.c \ 1218 $(SRC)/strftime.c \
1082 $(CONFIG_H) 1219 $(CONFIG_H) \
1220 $(EMACS_ROOT)/nt/inc/sys/time.h
1083 1221
1084$(BLD)/syntax.$(O) : \ 1222$(BLD)/syntax.$(O) : \
1085 $(SRC)/syntax.c \ 1223 $(SRC)/syntax.c \
@@ -1087,31 +1225,32 @@ $(BLD)/syntax.$(O) : \
1087 $(SRC)/buffer.h \ 1225 $(SRC)/buffer.h \
1088 $(SRC)/category.h \ 1226 $(SRC)/category.h \
1089 $(SRC)/character.h \ 1227 $(SRC)/character.h \
1090 $(SRC)/charset.h \
1091 $(SRC)/commands.h \ 1228 $(SRC)/commands.h \
1092 $(SRC)/composite.h \ 1229 $(SRC)/composite.h \
1093 $(SRC)/dispextern.h \ 1230 $(SRC)/dispextern.h \
1094 $(SRC)/intervals.h \ 1231 $(SRC)/intervals.h \
1095 $(SRC)/keymap.h \ 1232 $(SRC)/keymap.h \
1233 $(SRC)/regex.h \
1096 $(SRC)/syntax.h \ 1234 $(SRC)/syntax.h \
1097 $(SRC)/w32gui.h 1235 $(SRC)/w32gui.h
1098 1236
1099$(BLD)/sysdep.$(O) : \ 1237$(BLD)/sysdep.$(O) : \
1100 $(SRC)/sysdep.c \ 1238 $(SRC)/sysdep.c \
1101 $(CONFIG_H) \ 1239 $(CONFIG_H) \
1102 $(EMACS_ROOT)/nt/inc/sys/param.h \ 1240 $(EMACS_ROOT)/nt/inc/netdb.h \
1241 $(EMACS_ROOT)/nt/inc/unistd.h \
1103 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1242 $(EMACS_ROOT)/nt/inc/sys/file.h \
1104 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 1243 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1105 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1244 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1245 $(EMACS_ROOT)/nt/inc/sys/time.h \
1106 $(SRC)/atimer.h \ 1246 $(SRC)/atimer.h \
1107 $(SRC)/blockinput.h \ 1247 $(SRC)/blockinput.h \
1108 $(SRC)/cm.h \ 1248 $(SRC)/cm.h \
1249 $(SRC)/coding.h \
1109 $(SRC)/dispextern.h \ 1250 $(SRC)/dispextern.h \
1110 $(SRC)/frame.h \ 1251 $(SRC)/frame.h \
1111 $(SRC)/keyboard.h \ 1252 $(SRC)/keyboard.h \
1112 $(SRC)/ndir.h \
1113 $(SRC)/process.h \ 1253 $(SRC)/process.h \
1114 $(SRC)/sysselect.h \
1115 $(SRC)/syssignal.h \ 1254 $(SRC)/syssignal.h \
1116 $(SRC)/systime.h \ 1255 $(SRC)/systime.h \
1117 $(SRC)/systty.h \ 1256 $(SRC)/systty.h \
@@ -1119,22 +1258,33 @@ $(BLD)/sysdep.$(O) : \
1119 $(SRC)/termchar.h \ 1258 $(SRC)/termchar.h \
1120 $(SRC)/termhooks.h \ 1259 $(SRC)/termhooks.h \
1121 $(SRC)/termopts.h \ 1260 $(SRC)/termopts.h \
1261 $(SRC)/w32.h \
1122 $(SRC)/w32gui.h \ 1262 $(SRC)/w32gui.h \
1123 $(SRC)/window.h 1263 $(SRC)/window.h
1124 1264
1125$(BLD)/term.$(O) : \ 1265$(BLD)/term.$(O) : \
1126 $(SRC)/term.c \ 1266 $(SRC)/term.c \
1127 $(CONFIG_H) \ 1267 $(CONFIG_H) \
1128 $(SRC)/ccl.h \ 1268 $(EMACS_ROOT)/nt/inc/unistd.h \
1269 $(EMACS_ROOT)/nt/inc/sys/file.h \
1270 $(EMACS_ROOT)/nt/inc/sys/time.h \
1271 $(SRC)/atimer.h \
1272 $(SRC)/blockinput.h \
1273 $(SRC)/buffer.h \
1129 $(SRC)/character.h \ 1274 $(SRC)/character.h \
1130 $(SRC)/charset.h \ 1275 $(SRC)/charset.h \
1131 $(SRC)/cm.h \ 1276 $(SRC)/cm.h \
1132 $(SRC)/coding.h \ 1277 $(SRC)/coding.h \
1278 $(SRC)/composite.h \
1133 $(SRC)/dispextern.h \ 1279 $(SRC)/dispextern.h \
1134 $(SRC)/disptab.h \ 1280 $(SRC)/disptab.h \
1135 $(SRC)/frame.h \ 1281 $(SRC)/frame.h \
1282 $(SRC)/intervals.h \
1136 $(SRC)/keyboard.h \ 1283 $(SRC)/keyboard.h \
1137 $(SRC)/keymap.h \ 1284 $(SRC)/keymap.h \
1285 $(SRC)/syssignal.h \
1286 $(SRC)/systime.h \
1287 $(SRC)/systty.h \
1138 $(SRC)/termchar.h \ 1288 $(SRC)/termchar.h \
1139 $(SRC)/termhooks.h \ 1289 $(SRC)/termhooks.h \
1140 $(SRC)/termopts.h \ 1290 $(SRC)/termopts.h \
@@ -1144,17 +1294,22 @@ $(BLD)/term.$(O) : \
1144$(BLD)/termcap.$(O) : \ 1294$(BLD)/termcap.$(O) : \
1145 $(SRC)/termcap.c \ 1295 $(SRC)/termcap.c \
1146 $(CONFIG_H) \ 1296 $(CONFIG_H) \
1297 $(EMACS_ROOT)/nt/inc/unistd.h \
1147 $(EMACS_ROOT)/nt/inc/sys/file.h 1298 $(EMACS_ROOT)/nt/inc/sys/file.h
1148 1299
1149$(BLD)/terminal.$(O) : \ 1300$(BLD)/terminal.$(O) : \
1150 $(SRC)/terminal.c \ 1301 $(SRC)/terminal.c \
1151 $(CONFIG_H) \ 1302 $(CONFIG_H) \
1303 $(EMACS_ROOT)/nt/inc/sys/time.h \
1152 $(SRC)/charset.h \ 1304 $(SRC)/charset.h \
1153 $(SRC)/coding.h \ 1305 $(SRC)/coding.h \
1306 $(SRC)/dispextern.h \
1154 $(SRC)/frame.h \ 1307 $(SRC)/frame.h \
1155 $(SRC)/keyboard.h \ 1308 $(SRC)/keyboard.h \
1309 $(SRC)/systime.h \
1156 $(SRC)/termchar.h \ 1310 $(SRC)/termchar.h \
1157 $(SRC)/termhooks.h 1311 $(SRC)/termhooks.h \
1312 $(SRC)/w32gui.h
1158 1313
1159$(BLD)/textprop.$(O) : \ 1314$(BLD)/textprop.$(O) : \
1160 $(SRC)/textprop.c \ 1315 $(SRC)/textprop.c \
@@ -1174,7 +1329,10 @@ $(BLD)/undo.$(O) : \
1174 $(SRC)/undo.c \ 1329 $(SRC)/undo.c \
1175 $(CONFIG_H) \ 1330 $(CONFIG_H) \
1176 $(SRC)/buffer.h \ 1331 $(SRC)/buffer.h \
1177 $(SRC)/commands.h 1332 $(SRC)/commands.h \
1333 $(SRC)/dispextern.h \
1334 $(SRC)/w32gui.h \
1335 $(SRC)/window.h
1178 1336
1179$(BLD)/unexw32.$(O) : \ 1337$(BLD)/unexw32.$(O) : \
1180 $(SRC)/unexw32.c \ 1338 $(SRC)/unexw32.c \
@@ -1189,9 +1347,11 @@ $(BLD)/vm-limit.$(O) : \
1189$(BLD)/window.$(O) : \ 1347$(BLD)/window.$(O) : \
1190 $(SRC)/window.c \ 1348 $(SRC)/window.c \
1191 $(CONFIG_H) \ 1349 $(CONFIG_H) \
1350 $(EMACS_ROOT)/nt/inc/sys/time.h \
1192 $(SRC)/atimer.h \ 1351 $(SRC)/atimer.h \
1193 $(SRC)/blockinput.h \ 1352 $(SRC)/blockinput.h \
1194 $(SRC)/buffer.h \ 1353 $(SRC)/buffer.h \
1354 $(SRC)/coding.h \
1195 $(SRC)/commands.h \ 1355 $(SRC)/commands.h \
1196 $(SRC)/composite.h \ 1356 $(SRC)/composite.h \
1197 $(SRC)/dispextern.h \ 1357 $(SRC)/dispextern.h \
@@ -1203,6 +1363,7 @@ $(BLD)/window.$(O) : \
1203 $(SRC)/keymap.h \ 1363 $(SRC)/keymap.h \
1204 $(SRC)/systime.h \ 1364 $(SRC)/systime.h \
1205 $(SRC)/termchar.h \ 1365 $(SRC)/termchar.h \
1366 $(SRC)/termhooks.h \
1206 $(SRC)/w32gui.h \ 1367 $(SRC)/w32gui.h \
1207 $(SRC)/w32term.h \ 1368 $(SRC)/w32term.h \
1208 $(SRC)/window.h 1369 $(SRC)/window.h
@@ -1210,6 +1371,8 @@ $(BLD)/window.$(O) : \
1210$(BLD)/xdisp.$(O) : \ 1371$(BLD)/xdisp.$(O) : \
1211 $(SRC)/xdisp.c \ 1372 $(SRC)/xdisp.c \
1212 $(CONFIG_H) \ 1373 $(CONFIG_H) \
1374 $(EMACS_ROOT)/nt/inc/unistd.h \
1375 $(EMACS_ROOT)/nt/inc/sys/time.h \
1213 $(SRC)/atimer.h \ 1376 $(SRC)/atimer.h \
1214 $(SRC)/blockinput.h \ 1377 $(SRC)/blockinput.h \
1215 $(SRC)/buffer.h \ 1378 $(SRC)/buffer.h \
@@ -1238,14 +1401,17 @@ $(BLD)/xdisp.$(O) : \
1238 $(SRC)/w32term.h \ 1401 $(SRC)/w32term.h \
1239 $(SRC)/window.h 1402 $(SRC)/window.h
1240 1403
1241$(BLD)/xfaces.$(O): \ 1404$(BLD)/xfaces.$(O) : \
1242 $(SRC)/xfaces.c \ 1405 $(SRC)/xfaces.c \
1243 $(CONFIG_H) \ 1406 $(CONFIG_H) \
1407 $(EMACS_ROOT)/nt/inc/sys/time.h \
1244 $(SRC)/atimer.h \ 1408 $(SRC)/atimer.h \
1245 $(SRC)/blockinput.h \ 1409 $(SRC)/blockinput.h \
1246 $(SRC)/buffer.h \ 1410 $(SRC)/buffer.h \
1411 $(SRC)/ccl.h \
1247 $(SRC)/character.h \ 1412 $(SRC)/character.h \
1248 $(SRC)/charset.h \ 1413 $(SRC)/charset.h \
1414 $(SRC)/coding.h \
1249 $(SRC)/composite.h \ 1415 $(SRC)/composite.h \
1250 $(SRC)/dispextern.h \ 1416 $(SRC)/dispextern.h \
1251 $(SRC)/font.h \ 1417 $(SRC)/font.h \
@@ -1260,9 +1426,10 @@ $(BLD)/xfaces.$(O): \
1260 $(SRC)/w32term.h \ 1426 $(SRC)/w32term.h \
1261 $(SRC)/window.h 1427 $(SRC)/window.h
1262 1428
1263$(BLD)/w32fns.$(O): \ 1429$(BLD)/w32fns.$(O) : \
1264 $(SRC)/w32fns.c \ 1430 $(SRC)/w32fns.c \
1265 $(CONFIG_H) \ 1431 $(CONFIG_H) \
1432 $(EMACS_ROOT)/nt/inc/sys/time.h \
1266 $(SRC)/atimer.h \ 1433 $(SRC)/atimer.h \
1267 $(SRC)/blockinput.h \ 1434 $(SRC)/blockinput.h \
1268 $(SRC)/buffer.h \ 1435 $(SRC)/buffer.h \
@@ -1280,14 +1447,16 @@ $(BLD)/w32fns.$(O): \
1280 $(SRC)/keyboard.h \ 1447 $(SRC)/keyboard.h \
1281 $(SRC)/systime.h \ 1448 $(SRC)/systime.h \
1282 $(SRC)/termhooks.h \ 1449 $(SRC)/termhooks.h \
1450 $(SRC)/w32font.h \
1283 $(SRC)/w32gui.h \ 1451 $(SRC)/w32gui.h \
1284 $(SRC)/w32heap.h \ 1452 $(SRC)/w32heap.h \
1285 $(SRC)/w32term.h \ 1453 $(SRC)/w32term.h \
1286 $(SRC)/window.h 1454 $(SRC)/window.h
1287 1455
1288$(BLD)/w32menu.$(O): \ 1456$(BLD)/w32menu.$(O) : \
1289 $(SRC)/w32menu.c \ 1457 $(SRC)/w32menu.c \
1290 $(CONFIG_H) \ 1458 $(CONFIG_H) \
1459 $(EMACS_ROOT)/nt/inc/sys/time.h \
1291 $(SRC)/atimer.h \ 1460 $(SRC)/atimer.h \
1292 $(SRC)/blockinput.h \ 1461 $(SRC)/blockinput.h \
1293 $(SRC)/buffer.h \ 1462 $(SRC)/buffer.h \
@@ -1304,9 +1473,11 @@ $(BLD)/w32menu.$(O): \
1304 $(SRC)/w32term.h \ 1473 $(SRC)/w32term.h \
1305 $(SRC)/window.h 1474 $(SRC)/window.h
1306 1475
1307$(BLD)/w32term.$(O): \ 1476$(BLD)/w32term.$(O) : \
1308 $(SRC)/w32term.c \ 1477 $(SRC)/w32term.c \
1309 $(CONFIG_H) \ 1478 $(CONFIG_H) \
1479 $(EMACS_ROOT)/nt/inc/unistd.h \
1480 $(EMACS_ROOT)/nt/inc/sys/time.h \
1310 $(SRC)/atimer.h \ 1481 $(SRC)/atimer.h \
1311 $(SRC)/blockinput.h \ 1482 $(SRC)/blockinput.h \
1312 $(SRC)/buffer.h \ 1483 $(SRC)/buffer.h \
@@ -1323,51 +1494,53 @@ $(BLD)/w32term.$(O): \
1323 $(SRC)/intervals.h \ 1494 $(SRC)/intervals.h \
1324 $(SRC)/keyboard.h \ 1495 $(SRC)/keyboard.h \
1325 $(SRC)/keymap.h \ 1496 $(SRC)/keymap.h \
1497 $(SRC)/process.h \
1326 $(SRC)/systime.h \ 1498 $(SRC)/systime.h \
1327 $(SRC)/systty.h \ 1499 $(SRC)/systty.h \
1328 $(SRC)/termchar.h \ 1500 $(SRC)/termchar.h \
1329 $(SRC)/termhooks.h \ 1501 $(SRC)/termhooks.h \
1330 $(SRC)/termopts.h \ 1502 $(SRC)/termopts.h \
1503 $(SRC)/w32font.h \
1331 $(SRC)/w32gui.h \ 1504 $(SRC)/w32gui.h \
1332 $(SRC)/w32heap.h \ 1505 $(SRC)/w32heap.h \
1333 $(SRC)/w32term.h \ 1506 $(SRC)/w32term.h \
1334 $(SRC)/window.h 1507 $(SRC)/window.h
1335 1508
1336$(BLD)/w32select.$(O): \ 1509$(BLD)/w32select.$(O) : \
1337 $(SRC)/w32select.c \ 1510 $(SRC)/w32select.c \
1338 $(CONFIG_H) \ 1511 $(CONFIG_H) \
1512 $(EMACS_ROOT)/nt/inc/sys/time.h \
1339 $(SRC)/atimer.h \ 1513 $(SRC)/atimer.h \
1340 $(SRC)/blockinput.h \ 1514 $(SRC)/blockinput.h \
1341 $(SRC)/buffer.h \
1342 $(SRC)/ccl.h \
1343 $(SRC)/character.h \ 1515 $(SRC)/character.h \
1344 $(SRC)/charset.h \ 1516 $(SRC)/charset.h \
1345 $(SRC)/coding.h \ 1517 $(SRC)/coding.h \
1346 $(SRC)/composite.h \ 1518 $(SRC)/composite.h \
1347 $(SRC)/dispextern.h \
1348 $(SRC)/frame.h \
1349 $(SRC)/keyboard.h \ 1519 $(SRC)/keyboard.h \
1350 $(SRC)/systime.h \ 1520 $(SRC)/systime.h \
1351 $(SRC)/w32gui.h \ 1521 $(SRC)/w32gui.h \
1352 $(SRC)/w32heap.h \ 1522 $(SRC)/w32heap.h \
1353 $(SRC)/w32term.h 1523 $(SRC)/w32term.h
1354 1524
1355$(BLD)/w32reg.$(O): \ 1525$(BLD)/w32reg.$(O) : \
1356 $(SRC)/w32reg.c \ 1526 $(SRC)/w32reg.c \
1357 $(CONFIG_H) \ 1527 $(CONFIG_H) \
1528 $(EMACS_ROOT)/nt/inc/sys/time.h \
1358 $(SRC)/atimer.h \ 1529 $(SRC)/atimer.h \
1359 $(SRC)/blockinput.h \ 1530 $(SRC)/blockinput.h \
1360 $(SRC)/systime.h \ 1531 $(SRC)/systime.h \
1361 $(SRC)/w32gui.h \ 1532 $(SRC)/w32gui.h \
1362 $(SRC)/w32term.h 1533 $(SRC)/w32term.h
1363 1534
1364$(BLD)/w32xfns.$(O): \ 1535$(BLD)/w32xfns.$(O) : \
1365 $(SRC)/w32xfns.c \ 1536 $(SRC)/w32xfns.c \
1366 $(CONFIG_H) \ 1537 $(CONFIG_H) \
1538 $(EMACS_ROOT)/nt/inc/sys/time.h \
1367 $(SRC)/atimer.h \ 1539 $(SRC)/atimer.h \
1368 $(SRC)/blockinput.h \ 1540 $(SRC)/blockinput.h \
1369 $(SRC)/character.h \
1370 $(SRC)/charset.h \ 1541 $(SRC)/charset.h \
1542 $(SRC)/coding.h \
1543 $(SRC)/dispextern.h \
1371 $(SRC)/fontset.h \ 1544 $(SRC)/fontset.h \
1372 $(SRC)/frame.h \ 1545 $(SRC)/frame.h \
1373 $(SRC)/keyboard.h \ 1546 $(SRC)/keyboard.h \
@@ -1375,9 +1548,10 @@ $(BLD)/w32xfns.$(O): \
1375 $(SRC)/w32gui.h \ 1548 $(SRC)/w32gui.h \
1376 $(SRC)/w32term.h 1549 $(SRC)/w32term.h
1377 1550
1378$(BLD)/w32font.$(O): \ 1551$(BLD)/w32font.$(O) : \
1379 $(SRC)/w32font.c \ 1552 $(SRC)/w32font.c \
1380 $(CONFIG_H) \ 1553 $(CONFIG_H) \
1554 $(SRC)/ccl.h \
1381 $(SRC)/character.h \ 1555 $(SRC)/character.h \
1382 $(SRC)/charset.h \ 1556 $(SRC)/charset.h \
1383 $(SRC)/dispextern.h \ 1557 $(SRC)/dispextern.h \
@@ -1388,9 +1562,10 @@ $(BLD)/w32font.$(O): \
1388 $(SRC)/w32gui.h \ 1562 $(SRC)/w32gui.h \
1389 $(SRC)/w32term.h 1563 $(SRC)/w32term.h
1390 1564
1391$(BLD)/w32uniscribe.$(O): \ 1565$(BLD)/w32uniscribe.$(O) : \
1392 $(SRC)/w32uniscribe.c \ 1566 $(SRC)/w32uniscribe.c \
1393 $(CONFIG_H) \ 1567 $(CONFIG_H) \
1568 $(SRC)/ccl.h \
1394 $(SRC)/character.h \ 1569 $(SRC)/character.h \
1395 $(SRC)/charset.h \ 1570 $(SRC)/charset.h \
1396 $(SRC)/composite.h \ 1571 $(SRC)/composite.h \