aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2011-02-04 17:32:34 +0200
committerEli Zaretskii2011-02-04 17:32:34 +0200
commitf90e08f57d06cfbe99afe968c0c8fe9102802624 (patch)
tree95f6e24d7dca3a7c413319fc4d45fb3a2920b180
parent7bc61bb7bf11278dc012b29ff39b10f1d01c27fb (diff)
downloademacs-f90e08f57d06cfbe99afe968c0c8fe9102802624.tar.gz
emacs-f90e08f57d06cfbe99afe968c0c8fe9102802624.zip
Update dependencies in src/makefile.w32-in.
makefile.w32-in (LISP_H, PROCESS_H): New variables. Replace all uses of lisp.h with $(LISP_H), and all uses of process.h with $(PROCESS_H). ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h. ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h. ($(BLD)/sysdep.$(O)): Depend on ../lib/ignore-value.h.
-rw-r--r--src/ChangeLog10
-rw-r--r--src/makefile.w32-in185
2 files changed, 103 insertions, 92 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1b922579fc0..b0edc2c0375 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,10 +1,16 @@
12011-02-04 Eli Zaretskii <eliz@gnu.org> 12011-02-04 Eli Zaretskii <eliz@gnu.org>
2 2
3 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
4 Replace all uses of lisp.h with $(LISP_H), and all uses of
5 process.h with $(PROCESS_H).
6 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
7 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
8
3 * deps.mk: Update for recent changes: gnutls support, gnulib 9 * deps.mk: Update for recent changes: gnutls support, gnulib
4 imports, addition of globals.h. 10 imports, addition of globals.h.
5 11
6 * makefile.w32-in (IGNORE_VALUE_H): New variable. 12 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
7 ($(BLD)/sysdep.$(O)): Depend on $(IGNORE_VALUE_H). 13 ../lib/ignore-value.h.
8 14
92011-02-03 Paul Eggert <eggert@cs.ucla.edu> 152011-02-03 Paul Eggert <eggert@cs.ucla.edu>
10 16
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 2dd00dcc876..54a30f28ff2 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -347,14 +347,15 @@ CONFIG_H = $(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 $(EMACS_ROOT)/nt/inc/sys/stat.h 349 $(EMACS_ROOT)/nt/inc/sys/stat.h
350IGNORE_VALUE_H = $(EMACS_ROOT)/lib/ignore-value.h 350LISP_H = $(SRC)/lisp.h $(SRC)/globals.h
351PROCESS_H = $(SRC)/process.h $(SRC)/gnutls.h
351 352
352$(BLD)/alloc.$(O) : \ 353$(BLD)/alloc.$(O) : \
353 $(SRC)/alloc.c \ 354 $(SRC)/alloc.c \
354 $(CONFIG_H) \ 355 $(CONFIG_H) \
355 $(EMACS_ROOT)/nt/inc/unistd.h \ 356 $(EMACS_ROOT)/nt/inc/unistd.h \
356 $(EMACS_ROOT)/nt/inc/sys/time.h \ 357 $(EMACS_ROOT)/nt/inc/sys/time.h \
357 $(SRC)/lisp.h \ 358 $(LISP_H) \
358 $(SRC)/atimer.h \ 359 $(SRC)/atimer.h \
359 $(SRC)/blockinput.h \ 360 $(SRC)/blockinput.h \
360 $(SRC)/buffer.h \ 361 $(SRC)/buffer.h \
@@ -365,7 +366,7 @@ $(BLD)/alloc.$(O) : \
365 $(SRC)/frame.h \ 366 $(SRC)/frame.h \
366 $(SRC)/intervals.h \ 367 $(SRC)/intervals.h \
367 $(SRC)/keyboard.h \ 368 $(SRC)/keyboard.h \
368 $(SRC)/process.h \ 369 $(PROCESS_H) \
369 $(SRC)/puresize.h \ 370 $(SRC)/puresize.h \
370 $(SRC)/syssignal.h \ 371 $(SRC)/syssignal.h \
371 $(SRC)/systime.h \ 372 $(SRC)/systime.h \
@@ -379,7 +380,7 @@ $(BLD)/atimer.$(O) : \
379 $(CONFIG_H) \ 380 $(CONFIG_H) \
380 $(EMACS_ROOT)/nt/inc/unistd.h \ 381 $(EMACS_ROOT)/nt/inc/unistd.h \
381 $(EMACS_ROOT)/nt/inc/sys/time.h \ 382 $(EMACS_ROOT)/nt/inc/sys/time.h \
382 $(SRC)/lisp.h \ 383 $(LISP_H) \
383 $(SRC)/atimer.h \ 384 $(SRC)/atimer.h \
384 $(SRC)/blockinput.h \ 385 $(SRC)/blockinput.h \
385 $(SRC)/syssignal.h \ 386 $(SRC)/syssignal.h \
@@ -388,7 +389,7 @@ $(BLD)/atimer.$(O) : \
388$(BLD)/bidi.$(O) : \ 389$(BLD)/bidi.$(O) : \
389 $(SRC)/bidi.c \ 390 $(SRC)/bidi.c \
390 $(CONFIG_H) \ 391 $(CONFIG_H) \
391 $(SRC)/lisp.h \ 392 $(LISP_H) \
392 $(SRC)/bidimirror.h \ 393 $(SRC)/bidimirror.h \
393 $(SRC)/biditype.h \ 394 $(SRC)/biditype.h \
394 $(SRC)/buffer.h \ 395 $(SRC)/buffer.h \
@@ -402,7 +403,7 @@ $(BLD)/buffer.$(O) : \
402 $(EMACS_ROOT)/nt/inc/unistd.h \ 403 $(EMACS_ROOT)/nt/inc/unistd.h \
403 $(EMACS_ROOT)/nt/inc/sys/param.h \ 404 $(EMACS_ROOT)/nt/inc/sys/param.h \
404 $(EMACS_ROOT)/nt/inc/sys/time.h \ 405 $(EMACS_ROOT)/nt/inc/sys/time.h \
405 $(SRC)/lisp.h \ 406 $(LISP_H) \
406 $(SRC)/atimer.h \ 407 $(SRC)/atimer.h \
407 $(SRC)/blockinput.h \ 408 $(SRC)/blockinput.h \
408 $(SRC)/buffer.h \ 409 $(SRC)/buffer.h \
@@ -424,7 +425,7 @@ $(BLD)/buffer.$(O) : \
424$(BLD)/bytecode.$(O) : \ 425$(BLD)/bytecode.$(O) : \
425 $(SRC)/bytecode.c \ 426 $(SRC)/bytecode.c \
426 $(CONFIG_H) \ 427 $(CONFIG_H) \
427 $(SRC)/lisp.h \ 428 $(LISP_H) \
428 $(SRC)/buffer.h \ 429 $(SRC)/buffer.h \
429 $(SRC)/character.h \ 430 $(SRC)/character.h \
430 $(SRC)/dispextern.h \ 431 $(SRC)/dispextern.h \
@@ -436,7 +437,7 @@ $(BLD)/callint.$(O) : \
436 $(SRC)/callint.c \ 437 $(SRC)/callint.c \
437 $(CONFIG_H) \ 438 $(CONFIG_H) \
438 $(EMACS_ROOT)/nt/inc/sys/time.h \ 439 $(EMACS_ROOT)/nt/inc/sys/time.h \
439 $(SRC)/lisp.h \ 440 $(LISP_H) \
440 $(SRC)/buffer.h \ 441 $(SRC)/buffer.h \
441 $(SRC)/coding.h \ 442 $(SRC)/coding.h \
442 $(SRC)/commands.h \ 443 $(SRC)/commands.h \
@@ -454,7 +455,7 @@ $(BLD)/callproc.$(O) : \
454 $(EMACS_ROOT)/nt/inc/unistd.h \ 455 $(EMACS_ROOT)/nt/inc/unistd.h \
455 $(EMACS_ROOT)/nt/inc/sys/file.h \ 456 $(EMACS_ROOT)/nt/inc/sys/file.h \
456 $(EMACS_ROOT)/nt/inc/sys/time.h \ 457 $(EMACS_ROOT)/nt/inc/sys/time.h \
457 $(SRC)/lisp.h \ 458 $(LISP_H) \
458 $(SRC)/atimer.h \ 459 $(SRC)/atimer.h \
459 $(SRC)/blockinput.h \ 460 $(SRC)/blockinput.h \
460 $(SRC)/buffer.h \ 461 $(SRC)/buffer.h \
@@ -466,7 +467,7 @@ $(BLD)/callproc.$(O) : \
466 $(SRC)/dispextern.h \ 467 $(SRC)/dispextern.h \
467 $(SRC)/epaths.h \ 468 $(SRC)/epaths.h \
468 $(SRC)/frame.h \ 469 $(SRC)/frame.h \
469 $(SRC)/process.h \ 470 $(PROCESS_H) \
470 $(SRC)/syssignal.h \ 471 $(SRC)/syssignal.h \
471 $(SRC)/systime.h \ 472 $(SRC)/systime.h \
472 $(SRC)/systty.h \ 473 $(SRC)/systty.h \
@@ -477,7 +478,7 @@ $(BLD)/callproc.$(O) : \
477$(BLD)/casefiddle.$(O) : \ 478$(BLD)/casefiddle.$(O) : \
478 $(SRC)/casefiddle.c \ 479 $(SRC)/casefiddle.c \
479 $(CONFIG_H) \ 480 $(CONFIG_H) \
480 $(SRC)/lisp.h \ 481 $(LISP_H) \
481 $(SRC)/buffer.h \ 482 $(SRC)/buffer.h \
482 $(SRC)/character.h \ 483 $(SRC)/character.h \
483 $(SRC)/commands.h \ 484 $(SRC)/commands.h \
@@ -488,14 +489,14 @@ $(BLD)/casefiddle.$(O) : \
488$(BLD)/casetab.$(O) : \ 489$(BLD)/casetab.$(O) : \
489 $(SRC)/casetab.c \ 490 $(SRC)/casetab.c \
490 $(CONFIG_H) \ 491 $(CONFIG_H) \
491 $(SRC)/lisp.h \ 492 $(LISP_H) \
492 $(SRC)/buffer.h \ 493 $(SRC)/buffer.h \
493 $(SRC)/character.h 494 $(SRC)/character.h
494 495
495$(BLD)/category.$(O) : \ 496$(BLD)/category.$(O) : \
496 $(SRC)/category.c \ 497 $(SRC)/category.c \
497 $(CONFIG_H) \ 498 $(CONFIG_H) \
498 $(SRC)/lisp.h \ 499 $(LISP_H) \
499 $(SRC)/buffer.h \ 500 $(SRC)/buffer.h \
500 $(SRC)/category.h \ 501 $(SRC)/category.h \
501 $(SRC)/character.h \ 502 $(SRC)/character.h \
@@ -505,7 +506,7 @@ $(BLD)/category.$(O) : \
505$(BLD)/ccl.$(O) : \ 506$(BLD)/ccl.$(O) : \
506 $(SRC)/ccl.c \ 507 $(SRC)/ccl.c \
507 $(CONFIG_H) \ 508 $(CONFIG_H) \
508 $(SRC)/lisp.h \ 509 $(LISP_H) \
509 $(SRC)/ccl.h \ 510 $(SRC)/ccl.h \
510 $(SRC)/character.h \ 511 $(SRC)/character.h \
511 $(SRC)/charset.h \ 512 $(SRC)/charset.h \
@@ -515,7 +516,7 @@ $(BLD)/ccl.$(O) : \
515$(BLD)/character.$(O) : \ 516$(BLD)/character.$(O) : \
516 $(SRC)/character.c \ 517 $(SRC)/character.c \
517 $(CONFIG_H) \ 518 $(CONFIG_H) \
518 $(SRC)/lisp.h \ 519 $(LISP_H) \
519 $(SRC)/buffer.h \ 520 $(SRC)/buffer.h \
520 $(SRC)/character.h \ 521 $(SRC)/character.h \
521 $(SRC)/charset.h \ 522 $(SRC)/charset.h \
@@ -526,7 +527,7 @@ $(BLD)/charset.$(O) : \
526 $(SRC)/charset.c \ 527 $(SRC)/charset.c \
527 $(CONFIG_H) \ 528 $(CONFIG_H) \
528 $(EMACS_ROOT)/nt/inc/unistd.h \ 529 $(EMACS_ROOT)/nt/inc/unistd.h \
529 $(SRC)/lisp.h \ 530 $(LISP_H) \
530 $(SRC)/buffer.h \ 531 $(SRC)/buffer.h \
531 $(SRC)/character.h \ 532 $(SRC)/character.h \
532 $(SRC)/charset.h \ 533 $(SRC)/charset.h \
@@ -537,7 +538,7 @@ $(BLD)/charset.$(O) : \
537$(BLD)/chartab.$(O) : \ 538$(BLD)/chartab.$(O) : \
538 $(SRC)/chartab.c \ 539 $(SRC)/chartab.c \
539 $(CONFIG_H) \ 540 $(CONFIG_H) \
540 $(SRC)/lisp.h \ 541 $(LISP_H) \
541 $(SRC)/ccl.h \ 542 $(SRC)/ccl.h \
542 $(SRC)/character.h \ 543 $(SRC)/character.h \
543 $(SRC)/charset.h 544 $(SRC)/charset.h
@@ -546,7 +547,7 @@ $(BLD)/cmds.$(O) : \
546 $(SRC)/cmds.c \ 547 $(SRC)/cmds.c \
547 $(CONFIG_H) \ 548 $(CONFIG_H) \
548 $(EMACS_ROOT)/nt/inc/sys/time.h \ 549 $(EMACS_ROOT)/nt/inc/sys/time.h \
549 $(SRC)/lisp.h \ 550 $(LISP_H) \
550 $(SRC)/buffer.h \ 551 $(SRC)/buffer.h \
551 $(SRC)/character.h \ 552 $(SRC)/character.h \
552 $(SRC)/coding.h \ 553 $(SRC)/coding.h \
@@ -564,7 +565,7 @@ $(BLD)/cmds.$(O) : \
564$(BLD)/coding.$(O) : \ 565$(BLD)/coding.$(O) : \
565 $(SRC)/coding.c \ 566 $(SRC)/coding.c \
566 $(CONFIG_H) \ 567 $(CONFIG_H) \
567 $(SRC)/lisp.h \ 568 $(LISP_H) \
568 $(SRC)/buffer.h \ 569 $(SRC)/buffer.h \
569 $(SRC)/ccl.h \ 570 $(SRC)/ccl.h \
570 $(SRC)/character.h \ 571 $(SRC)/character.h \
@@ -580,7 +581,7 @@ $(BLD)/coding.$(O) : \
580$(BLD)/composite.$(O) : \ 581$(BLD)/composite.$(O) : \
581 $(SRC)/composite.c \ 582 $(SRC)/composite.c \
582 $(CONFIG_H) \ 583 $(CONFIG_H) \
583 $(SRC)/lisp.h \ 584 $(LISP_H) \
584 $(SRC)/buffer.h \ 585 $(SRC)/buffer.h \
585 $(SRC)/ccl.h \ 586 $(SRC)/ccl.h \
586 $(SRC)/character.h \ 587 $(SRC)/character.h \
@@ -598,7 +599,7 @@ $(BLD)/data.$(O) : \
598 $(SRC)/data.c \ 599 $(SRC)/data.c \
599 $(CONFIG_H) \ 600 $(CONFIG_H) \
600 $(EMACS_ROOT)/nt/inc/sys/time.h \ 601 $(EMACS_ROOT)/nt/inc/sys/time.h \
601 $(SRC)/lisp.h \ 602 $(LISP_H) \
602 $(SRC)/buffer.h \ 603 $(SRC)/buffer.h \
603 $(SRC)/ccl.h \ 604 $(SRC)/ccl.h \
604 $(SRC)/character.h \ 605 $(SRC)/character.h \
@@ -622,7 +623,7 @@ $(BLD)/dired.$(O) : \
622 $(EMACS_ROOT)/nt/inc/unistd.h \ 623 $(EMACS_ROOT)/nt/inc/unistd.h \
623 $(EMACS_ROOT)/nt/inc/sys/dir.h \ 624 $(EMACS_ROOT)/nt/inc/sys/dir.h \
624 $(EMACS_ROOT)/nt/inc/sys/time.h \ 625 $(EMACS_ROOT)/nt/inc/sys/time.h \
625 $(SRC)/lisp.h \ 626 $(LISP_H) \
626 $(SRC)/atimer.h \ 627 $(SRC)/atimer.h \
627 $(SRC)/blockinput.h \ 628 $(SRC)/blockinput.h \
628 $(SRC)/buffer.h \ 629 $(SRC)/buffer.h \
@@ -640,7 +641,7 @@ $(BLD)/dispnew.$(O) : \
640 $(CONFIG_H) \ 641 $(CONFIG_H) \
641 $(EMACS_ROOT)/nt/inc/unistd.h \ 642 $(EMACS_ROOT)/nt/inc/unistd.h \
642 $(EMACS_ROOT)/nt/inc/sys/time.h \ 643 $(EMACS_ROOT)/nt/inc/sys/time.h \
643 $(SRC)/lisp.h \ 644 $(LISP_H) \
644 $(SRC)/atimer.h \ 645 $(SRC)/atimer.h \
645 $(SRC)/blockinput.h \ 646 $(SRC)/blockinput.h \
646 $(SRC)/buffer.h \ 647 $(SRC)/buffer.h \
@@ -655,7 +656,7 @@ $(BLD)/dispnew.$(O) : \
655 $(SRC)/indent.h \ 656 $(SRC)/indent.h \
656 $(SRC)/intervals.h \ 657 $(SRC)/intervals.h \
657 $(SRC)/keyboard.h \ 658 $(SRC)/keyboard.h \
658 $(SRC)/process.h \ 659 $(PROCESS_H) \
659 $(SRC)/syssignal.h \ 660 $(SRC)/syssignal.h \
660 $(SRC)/systime.h \ 661 $(SRC)/systime.h \
661 $(SRC)/termchar.h \ 662 $(SRC)/termchar.h \
@@ -672,7 +673,7 @@ $(BLD)/doc.$(O) : \
672 $(EMACS_ROOT)/nt/inc/unistd.h \ 673 $(EMACS_ROOT)/nt/inc/unistd.h \
673 $(EMACS_ROOT)/nt/inc/sys/file.h \ 674 $(EMACS_ROOT)/nt/inc/sys/file.h \
674 $(EMACS_ROOT)/nt/inc/sys/time.h \ 675 $(EMACS_ROOT)/nt/inc/sys/time.h \
675 $(SRC)/lisp.h \ 676 $(LISP_H) \
676 $(SRC)/buffer.h \ 677 $(SRC)/buffer.h \
677 $(SRC)/character.h \ 678 $(SRC)/character.h \
678 $(SRC)/coding.h \ 679 $(SRC)/coding.h \
@@ -685,7 +686,7 @@ $(BLD)/doprnt.$(O) : \
685 $(SRC)/doprnt.c \ 686 $(SRC)/doprnt.c \
686 $(CONFIG_H) \ 687 $(CONFIG_H) \
687 $(EMACS_ROOT)/nt/inc/unistd.h \ 688 $(EMACS_ROOT)/nt/inc/unistd.h \
688 $(SRC)/lisp.h \ 689 $(LISP_H) \
689 $(SRC)/character.h 690 $(SRC)/character.h
690 691
691$(BLD)/editfns.$(O) : \ 692$(BLD)/editfns.$(O) : \
@@ -694,7 +695,8 @@ $(BLD)/editfns.$(O) : \
694 $(EMACS_ROOT)/nt/inc/pwd.h \ 695 $(EMACS_ROOT)/nt/inc/pwd.h \
695 $(EMACS_ROOT)/nt/inc/unistd.h \ 696 $(EMACS_ROOT)/nt/inc/unistd.h \
696 $(EMACS_ROOT)/nt/inc/sys/time.h \ 697 $(EMACS_ROOT)/nt/inc/sys/time.h \
697 $(SRC)/lisp.h \ 698 $(EMACS_ROOT)/lib/strftime.h \
699 $(LISP_H) \
698 $(SRC)/atimer.h \ 700 $(SRC)/atimer.h \
699 $(SRC)/blockinput.h \ 701 $(SRC)/blockinput.h \
700 $(SRC)/buffer.h \ 702 $(SRC)/buffer.h \
@@ -714,7 +716,7 @@ $(BLD)/emacs.$(O) : \
714 $(EMACS_ROOT)/nt/inc/unistd.h \ 716 $(EMACS_ROOT)/nt/inc/unistd.h \
715 $(EMACS_ROOT)/nt/inc/sys/file.h \ 717 $(EMACS_ROOT)/nt/inc/sys/file.h \
716 $(EMACS_ROOT)/nt/inc/sys/time.h \ 718 $(EMACS_ROOT)/nt/inc/sys/time.h \
717 $(SRC)/lisp.h \ 719 $(LISP_H) \
718 $(SRC)/atimer.h \ 720 $(SRC)/atimer.h \
719 $(SRC)/blockinput.h \ 721 $(SRC)/blockinput.h \
720 $(SRC)/buffer.h \ 722 $(SRC)/buffer.h \
@@ -723,10 +725,11 @@ $(BLD)/emacs.$(O) : \
723 $(SRC)/composite.h \ 725 $(SRC)/composite.h \
724 $(SRC)/dispextern.h \ 726 $(SRC)/dispextern.h \
725 $(SRC)/frame.h \ 727 $(SRC)/frame.h \
728 $(SRC)/gnutls.h \
726 $(SRC)/intervals.h \ 729 $(SRC)/intervals.h \
727 $(SRC)/keyboard.h \ 730 $(SRC)/keyboard.h \
728 $(SRC)/keymap.h \ 731 $(SRC)/keymap.h \
729 $(SRC)/process.h \ 732 $(PROCESS_H) \
730 $(SRC)/syssignal.h \ 733 $(SRC)/syssignal.h \
731 $(SRC)/systime.h \ 734 $(SRC)/systime.h \
732 $(SRC)/systty.h \ 735 $(SRC)/systty.h \
@@ -740,7 +743,7 @@ $(BLD)/eval.$(O) : \
740 $(SRC)/eval.c \ 743 $(SRC)/eval.c \
741 $(CONFIG_H) \ 744 $(CONFIG_H) \
742 $(EMACS_ROOT)/nt/inc/sys/time.h \ 745 $(EMACS_ROOT)/nt/inc/sys/time.h \
743 $(SRC)/lisp.h \ 746 $(LISP_H) \
744 $(SRC)/atimer.h \ 747 $(SRC)/atimer.h \
745 $(SRC)/blockinput.h \ 748 $(SRC)/blockinput.h \
746 $(SRC)/coding.h \ 749 $(SRC)/coding.h \
@@ -758,7 +761,7 @@ $(BLD)/fileio.$(O) : \
758 $(EMACS_ROOT)/nt/inc/pwd.h \ 761 $(EMACS_ROOT)/nt/inc/pwd.h \
759 $(EMACS_ROOT)/nt/inc/unistd.h \ 762 $(EMACS_ROOT)/nt/inc/unistd.h \
760 $(EMACS_ROOT)/nt/inc/sys/time.h \ 763 $(EMACS_ROOT)/nt/inc/sys/time.h \
761 $(SRC)/lisp.h \ 764 $(LISP_H) \
762 $(SRC)/atimer.h \ 765 $(SRC)/atimer.h \
763 $(SRC)/blockinput.h \ 766 $(SRC)/blockinput.h \
764 $(SRC)/buffer.h \ 767 $(SRC)/buffer.h \
@@ -780,7 +783,7 @@ $(BLD)/filelock.$(O) : \
780 $(EMACS_ROOT)/nt/inc/unistd.h \ 783 $(EMACS_ROOT)/nt/inc/unistd.h \
781 $(EMACS_ROOT)/nt/inc/sys/file.h \ 784 $(EMACS_ROOT)/nt/inc/sys/file.h \
782 $(EMACS_ROOT)/nt/inc/sys/time.h \ 785 $(EMACS_ROOT)/nt/inc/sys/time.h \
783 $(SRC)/lisp.h \ 786 $(LISP_H) \
784 $(SRC)/buffer.h \ 787 $(SRC)/buffer.h \
785 $(SRC)/character.h \ 788 $(SRC)/character.h \
786 $(SRC)/coding.h \ 789 $(SRC)/coding.h \
@@ -798,7 +801,7 @@ $(BLD)/firstfile.$(O) : \
798$(BLD)/floatfns.$(O) : \ 801$(BLD)/floatfns.$(O) : \
799 $(SRC)/floatfns.c \ 802 $(SRC)/floatfns.c \
800 $(CONFIG_H) \ 803 $(CONFIG_H) \
801 $(SRC)/lisp.h \ 804 $(LISP_H) \
802 $(SRC)/syssignal.h 805 $(SRC)/syssignal.h
803 806
804$(BLD)/fns.$(O) : \ 807$(BLD)/fns.$(O) : \
@@ -808,7 +811,7 @@ $(BLD)/fns.$(O) : \
808 $(EMACS_ROOT)/nt/inc/nl_types.h \ 811 $(EMACS_ROOT)/nt/inc/nl_types.h \
809 $(EMACS_ROOT)/nt/inc/unistd.h \ 812 $(EMACS_ROOT)/nt/inc/unistd.h \
810 $(EMACS_ROOT)/nt/inc/sys/time.h \ 813 $(EMACS_ROOT)/nt/inc/sys/time.h \
811 $(SRC)/lisp.h \ 814 $(LISP_H) \
812 $(SRC)/atimer.h \ 815 $(SRC)/atimer.h \
813 $(SRC)/blockinput.h \ 816 $(SRC)/blockinput.h \
814 $(SRC)/buffer.h \ 817 $(SRC)/buffer.h \
@@ -829,7 +832,7 @@ $(BLD)/fns.$(O) : \
829$(BLD)/font.$(O) : \ 832$(BLD)/font.$(O) : \
830 $(SRC)/font.c \ 833 $(SRC)/font.c \
831 $(CONFIG_H) \ 834 $(CONFIG_H) \
832 $(SRC)/lisp.h \ 835 $(LISP_H) \
833 $(SRC)/buffer.h \ 836 $(SRC)/buffer.h \
834 $(SRC)/ccl.h \ 837 $(SRC)/ccl.h \
835 $(SRC)/character.h \ 838 $(SRC)/character.h \
@@ -847,7 +850,7 @@ $(BLD)/fontset.$(O) : \
847 $(SRC)/fontset.c \ 850 $(SRC)/fontset.c \
848 $(CONFIG_H) \ 851 $(CONFIG_H) \
849 $(EMACS_ROOT)/nt/inc/sys/time.h \ 852 $(EMACS_ROOT)/nt/inc/sys/time.h \
850 $(SRC)/lisp.h \ 853 $(LISP_H) \
851 $(SRC)/atimer.h \ 854 $(SRC)/atimer.h \
852 $(SRC)/blockinput.h \ 855 $(SRC)/blockinput.h \
853 $(SRC)/buffer.h \ 856 $(SRC)/buffer.h \
@@ -872,7 +875,7 @@ $(BLD)/frame.$(O) : \
872 $(SRC)/frame.c \ 875 $(SRC)/frame.c \
873 $(CONFIG_H) \ 876 $(CONFIG_H) \
874 $(EMACS_ROOT)/nt/inc/sys/time.h \ 877 $(EMACS_ROOT)/nt/inc/sys/time.h \
875 $(SRC)/lisp.h \ 878 $(LISP_H) \
876 $(SRC)/atimer.h \ 879 $(SRC)/atimer.h \
877 $(SRC)/blockinput.h \ 880 $(SRC)/blockinput.h \
878 $(SRC)/buffer.h \ 881 $(SRC)/buffer.h \
@@ -897,7 +900,7 @@ $(BLD)/fringe.$(O) : \
897 $(SRC)/fringe.c \ 900 $(SRC)/fringe.c \
898 $(CONFIG_H) \ 901 $(CONFIG_H) \
899 $(EMACS_ROOT)/nt/inc/sys/time.h \ 902 $(EMACS_ROOT)/nt/inc/sys/time.h \
900 $(SRC)/lisp.h \ 903 $(LISP_H) \
901 $(SRC)/atimer.h \ 904 $(SRC)/atimer.h \
902 $(SRC)/blockinput.h \ 905 $(SRC)/blockinput.h \
903 $(SRC)/buffer.h \ 906 $(SRC)/buffer.h \
@@ -919,7 +922,7 @@ $(BLD)/image.$(O) : \
919 $(CONFIG_H) \ 922 $(CONFIG_H) \
920 $(EMACS_ROOT)/nt/inc/unistd.h \ 923 $(EMACS_ROOT)/nt/inc/unistd.h \
921 $(EMACS_ROOT)/nt/inc/sys/time.h \ 924 $(EMACS_ROOT)/nt/inc/sys/time.h \
922 $(SRC)/lisp.h \ 925 $(LISP_H) \
923 $(SRC)/atimer.h \ 926 $(SRC)/atimer.h \
924 $(SRC)/blockinput.h \ 927 $(SRC)/blockinput.h \
925 $(SRC)/ccl.h \ 928 $(SRC)/ccl.h \
@@ -940,7 +943,7 @@ $(BLD)/indent.$(O) : \
940 $(SRC)/indent.c \ 943 $(SRC)/indent.c \
941 $(CONFIG_H) \ 944 $(CONFIG_H) \
942 $(EMACS_ROOT)/nt/inc/sys/time.h \ 945 $(EMACS_ROOT)/nt/inc/sys/time.h \
943 $(SRC)/lisp.h \ 946 $(LISP_H) \
944 $(SRC)/buffer.h \ 947 $(SRC)/buffer.h \
945 $(SRC)/category.h \ 948 $(SRC)/category.h \
946 $(SRC)/character.h \ 949 $(SRC)/character.h \
@@ -963,7 +966,7 @@ $(BLD)/insdel.$(O) : \
963 $(SRC)/insdel.c \ 966 $(SRC)/insdel.c \
964 $(CONFIG_H) \ 967 $(CONFIG_H) \
965 $(EMACS_ROOT)/nt/inc/sys/time.h \ 968 $(EMACS_ROOT)/nt/inc/sys/time.h \
966 $(SRC)/lisp.h \ 969 $(LISP_H) \
967 $(SRC)/atimer.h \ 970 $(SRC)/atimer.h \
968 $(SRC)/blockinput.h \ 971 $(SRC)/blockinput.h \
969 $(SRC)/buffer.h \ 972 $(SRC)/buffer.h \
@@ -980,7 +983,7 @@ $(BLD)/intervals.$(O) : \
980 $(SRC)/intervals.c \ 983 $(SRC)/intervals.c \
981 $(CONFIG_H) \ 984 $(CONFIG_H) \
982 $(EMACS_ROOT)/nt/inc/sys/time.h \ 985 $(EMACS_ROOT)/nt/inc/sys/time.h \
983 $(SRC)/lisp.h \ 986 $(LISP_H) \
984 $(SRC)/buffer.h \ 987 $(SRC)/buffer.h \
985 $(SRC)/coding.h \ 988 $(SRC)/coding.h \
986 $(SRC)/composite.h \ 989 $(SRC)/composite.h \
@@ -998,7 +1001,7 @@ $(BLD)/keyboard.$(O) : \
998 $(EMACS_ROOT)/nt/inc/unistd.h \ 1001 $(EMACS_ROOT)/nt/inc/unistd.h \
999 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \ 1002 $(EMACS_ROOT)/nt/inc/sys/ioctl.h \
1000 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1003 $(EMACS_ROOT)/nt/inc/sys/time.h \
1001 $(SRC)/lisp.h \ 1004 $(LISP_H) \
1002 $(SRC)/atimer.h \ 1005 $(SRC)/atimer.h \
1003 $(SRC)/blockinput.h \ 1006 $(SRC)/blockinput.h \
1004 $(SRC)/buffer.h \ 1007 $(SRC)/buffer.h \
@@ -1013,7 +1016,7 @@ $(BLD)/keyboard.$(O) : \
1013 $(SRC)/keyboard.h \ 1016 $(SRC)/keyboard.h \
1014 $(SRC)/keymap.h \ 1017 $(SRC)/keymap.h \
1015 $(SRC)/macros.h \ 1018 $(SRC)/macros.h \
1016 $(SRC)/process.h \ 1019 $(PROCESS_H) \
1017 $(SRC)/puresize.h \ 1020 $(SRC)/puresize.h \
1018 $(SRC)/syntax.h \ 1021 $(SRC)/syntax.h \
1019 $(SRC)/syssignal.h \ 1022 $(SRC)/syssignal.h \
@@ -1029,7 +1032,7 @@ $(BLD)/keymap.$(O) : \
1029 $(SRC)/keymap.c \ 1032 $(SRC)/keymap.c \
1030 $(CONFIG_H) \ 1033 $(CONFIG_H) \
1031 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1034 $(EMACS_ROOT)/nt/inc/sys/time.h \
1032 $(SRC)/lisp.h \ 1035 $(LISP_H) \
1033 $(SRC)/atimer.h \ 1036 $(SRC)/atimer.h \
1034 $(SRC)/blockinput.h \ 1037 $(SRC)/blockinput.h \
1035 $(SRC)/buffer.h \ 1038 $(SRC)/buffer.h \
@@ -1059,7 +1062,7 @@ $(BLD)/lread.$(O) : \
1059 $(EMACS_ROOT)/nt/inc/unistd.h \ 1062 $(EMACS_ROOT)/nt/inc/unistd.h \
1060 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1063 $(EMACS_ROOT)/nt/inc/sys/file.h \
1061 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1064 $(EMACS_ROOT)/nt/inc/sys/time.h \
1062 $(SRC)/lisp.h \ 1065 $(LISP_H) \
1063 $(SRC)/atimer.h \ 1066 $(SRC)/atimer.h \
1064 $(SRC)/blockinput.h \ 1067 $(SRC)/blockinput.h \
1065 $(SRC)/buffer.h \ 1068 $(SRC)/buffer.h \
@@ -1081,7 +1084,7 @@ $(BLD)/macros.$(O) : \
1081 $(SRC)/macros.c \ 1084 $(SRC)/macros.c \
1082 $(CONFIG_H) \ 1085 $(CONFIG_H) \
1083 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1086 $(EMACS_ROOT)/nt/inc/sys/time.h \
1084 $(SRC)/lisp.h \ 1087 $(LISP_H) \
1085 $(SRC)/buffer.h \ 1088 $(SRC)/buffer.h \
1086 $(SRC)/coding.h \ 1089 $(SRC)/coding.h \
1087 $(SRC)/commands.h \ 1090 $(SRC)/commands.h \
@@ -1096,7 +1099,7 @@ $(BLD)/macros.$(O) : \
1096$(BLD)/marker.$(O) : \ 1099$(BLD)/marker.$(O) : \
1097 $(SRC)/marker.c \ 1100 $(SRC)/marker.c \
1098 $(CONFIG_H) \ 1101 $(CONFIG_H) \
1099 $(SRC)/lisp.h \ 1102 $(LISP_H) \
1100 $(SRC)/buffer.h \ 1103 $(SRC)/buffer.h \
1101 $(SRC)/character.h 1104 $(SRC)/character.h
1102 1105
@@ -1109,7 +1112,7 @@ $(BLD)/menu.$(O) : \
1109 $(SRC)/menu.c \ 1112 $(SRC)/menu.c \
1110 $(CONFIG_H) \ 1113 $(CONFIG_H) \
1111 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1114 $(EMACS_ROOT)/nt/inc/sys/time.h \
1112 $(SRC)/lisp.h \ 1115 $(LISP_H) \
1113 $(SRC)/atimer.h \ 1116 $(SRC)/atimer.h \
1114 $(SRC)/blockinput.h \ 1117 $(SRC)/blockinput.h \
1115 $(SRC)/coding.h \ 1118 $(SRC)/coding.h \
@@ -1129,7 +1132,7 @@ $(BLD)/minibuf.$(O) : \
1129 $(SRC)/minibuf.c \ 1132 $(SRC)/minibuf.c \
1130 $(CONFIG_H) \ 1133 $(CONFIG_H) \
1131 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1134 $(EMACS_ROOT)/nt/inc/sys/time.h \
1132 $(SRC)/lisp.h \ 1135 $(LISP_H) \
1133 $(SRC)/buffer.h \ 1136 $(SRC)/buffer.h \
1134 $(SRC)/character.h \ 1137 $(SRC)/character.h \
1135 $(SRC)/coding.h \ 1138 $(SRC)/coding.h \
@@ -1155,12 +1158,12 @@ $(BLD)/w32.$(O) : \
1155 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1158 $(EMACS_ROOT)/nt/inc/sys/file.h \
1156 $(EMACS_ROOT)/nt/inc/sys/socket.h \ 1159 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1157 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1160 $(EMACS_ROOT)/nt/inc/sys/time.h \
1158 $(SRC)/lisp.h \ 1161 $(LISP_H) \
1159 $(SRC)/coding.h \ 1162 $(SRC)/coding.h \
1160 $(SRC)/composite.h \ 1163 $(SRC)/composite.h \
1161 $(SRC)/dispextern.h \ 1164 $(SRC)/dispextern.h \
1162 $(SRC)/ndir.h \ 1165 $(SRC)/ndir.h \
1163 $(SRC)/process.h \ 1166 $(PROCESS_H) \
1164 $(SRC)/systime.h \ 1167 $(SRC)/systime.h \
1165 $(SRC)/w32.h \ 1168 $(SRC)/w32.h \
1166 $(SRC)/w32gui.h \ 1169 $(SRC)/w32gui.h \
@@ -1169,14 +1172,14 @@ $(BLD)/w32.$(O) : \
1169$(BLD)/w32heap.$(O) : \ 1172$(BLD)/w32heap.$(O) : \
1170 $(SRC)/w32heap.c \ 1173 $(SRC)/w32heap.c \
1171 $(CONFIG_H) \ 1174 $(CONFIG_H) \
1172 $(SRC)/lisp.h \ 1175 $(LISP_H) \
1173 $(SRC)/w32heap.h 1176 $(SRC)/w32heap.h
1174 1177
1175$(BLD)/w32inevt.$(O) : \ 1178$(BLD)/w32inevt.$(O) : \
1176 $(SRC)/w32inevt.c \ 1179 $(SRC)/w32inevt.c \
1177 $(CONFIG_H) \ 1180 $(CONFIG_H) \
1178 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1181 $(EMACS_ROOT)/nt/inc/sys/time.h \
1179 $(SRC)/lisp.h \ 1182 $(LISP_H) \
1180 $(SRC)/atimer.h \ 1183 $(SRC)/atimer.h \
1181 $(SRC)/blockinput.h \ 1184 $(SRC)/blockinput.h \
1182 $(SRC)/coding.h \ 1185 $(SRC)/coding.h \
@@ -1198,12 +1201,12 @@ $(BLD)/w32proc.$(O) : \
1198 $(EMACS_ROOT)/nt/inc/unistd.h \ 1201 $(EMACS_ROOT)/nt/inc/unistd.h \
1199 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1202 $(EMACS_ROOT)/nt/inc/sys/file.h \
1200 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1203 $(EMACS_ROOT)/nt/inc/sys/time.h \
1201 $(SRC)/lisp.h \ 1204 $(LISP_H) \
1202 $(SRC)/character.h \ 1205 $(SRC)/character.h \
1203 $(SRC)/coding.h \ 1206 $(SRC)/coding.h \
1204 $(SRC)/composite.h \ 1207 $(SRC)/composite.h \
1205 $(SRC)/dispextern.h \ 1208 $(SRC)/dispextern.h \
1206 $(SRC)/process.h \ 1209 $(PROCESS_H) \
1207 $(SRC)/syssignal.h \ 1210 $(SRC)/syssignal.h \
1208 $(SRC)/systime.h \ 1211 $(SRC)/systime.h \
1209 $(SRC)/syswait.h \ 1212 $(SRC)/syswait.h \
@@ -1215,7 +1218,7 @@ $(BLD)/w32proc.$(O) : \
1215$(BLD)/w32console.$(O) : \ 1218$(BLD)/w32console.$(O) : \
1216 $(SRC)/w32console.c \ 1219 $(SRC)/w32console.c \
1217 $(CONFIG_H) \ 1220 $(CONFIG_H) \
1218 $(SRC)/lisp.h \ 1221 $(LISP_H) \
1219 $(SRC)/character.h \ 1222 $(SRC)/character.h \
1220 $(SRC)/coding.h \ 1223 $(SRC)/coding.h \
1221 $(SRC)/composite.h \ 1224 $(SRC)/composite.h \
@@ -1232,7 +1235,9 @@ $(BLD)/print.$(O) : \
1232 $(CONFIG_H) \ 1235 $(CONFIG_H) \
1233 $(EMACS_ROOT)/nt/inc/unistd.h \ 1236 $(EMACS_ROOT)/nt/inc/unistd.h \
1234 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1237 $(EMACS_ROOT)/nt/inc/sys/time.h \
1235 $(SRC)/lisp.h \ 1238 $(EMACS_ROOT)/lib/ftoastr.h \
1239 $(EMACS_ROOT)/lib/intprops.h \
1240 $(LISP_H) \
1236 $(SRC)/atimer.h \ 1241 $(SRC)/atimer.h \
1237 $(SRC)/blockinput.h \ 1242 $(SRC)/blockinput.h \
1238 $(SRC)/buffer.h \ 1243 $(SRC)/buffer.h \
@@ -1246,7 +1251,7 @@ $(BLD)/print.$(O) : \
1246 $(SRC)/frame.h \ 1251 $(SRC)/frame.h \
1247 $(SRC)/intervals.h \ 1252 $(SRC)/intervals.h \
1248 $(SRC)/keyboard.h \ 1253 $(SRC)/keyboard.h \
1249 $(SRC)/process.h \ 1254 $(PROCESS_H) \
1250 $(SRC)/systime.h \ 1255 $(SRC)/systime.h \
1251 $(SRC)/termchar.h \ 1256 $(SRC)/termchar.h \
1252 $(SRC)/termhooks.h \ 1257 $(SRC)/termhooks.h \
@@ -1263,7 +1268,7 @@ $(BLD)/process.$(O) : \
1263 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1268 $(EMACS_ROOT)/nt/inc/sys/file.h \
1264 $(EMACS_ROOT)/nt/inc/sys/socket.h \ 1269 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1265 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1270 $(EMACS_ROOT)/nt/inc/sys/time.h \
1266 $(SRC)/lisp.h \ 1271 $(LISP_H) \
1267 $(SRC)/atimer.h \ 1272 $(SRC)/atimer.h \
1268 $(SRC)/blockinput.h \ 1273 $(SRC)/blockinput.h \
1269 $(SRC)/buffer.h \ 1274 $(SRC)/buffer.h \
@@ -1274,7 +1279,7 @@ $(BLD)/process.$(O) : \
1274 $(SRC)/dispextern.h \ 1279 $(SRC)/dispextern.h \
1275 $(SRC)/frame.h \ 1280 $(SRC)/frame.h \
1276 $(SRC)/keyboard.h \ 1281 $(SRC)/keyboard.h \
1277 $(SRC)/process.h \ 1282 $(PROCESS_H) \
1278 $(SRC)/sysselect.h \ 1283 $(SRC)/sysselect.h \
1279 $(SRC)/syssignal.h \ 1284 $(SRC)/syssignal.h \
1280 $(SRC)/systime.h \ 1285 $(SRC)/systime.h \
@@ -1291,7 +1296,7 @@ $(BLD)/ralloc.$(O) : \
1291 $(CONFIG_H) \ 1296 $(CONFIG_H) \
1292 $(EMACS_ROOT)/nt/inc/unistd.h \ 1297 $(EMACS_ROOT)/nt/inc/unistd.h \
1293 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1298 $(EMACS_ROOT)/nt/inc/sys/time.h \
1294 $(SRC)/lisp.h \ 1299 $(LISP_H) \
1295 $(SRC)/atimer.h \ 1300 $(SRC)/atimer.h \
1296 $(SRC)/blockinput.h \ 1301 $(SRC)/blockinput.h \
1297 $(SRC)/getpagesize.h \ 1302 $(SRC)/getpagesize.h \
@@ -1300,7 +1305,7 @@ $(BLD)/ralloc.$(O) : \
1300$(BLD)/regex.$(O) : \ 1305$(BLD)/regex.$(O) : \
1301 $(SRC)/regex.c \ 1306 $(SRC)/regex.c \
1302 $(CONFIG_H) \ 1307 $(CONFIG_H) \
1303 $(SRC)/lisp.h \ 1308 $(LISP_H) \
1304 $(SRC)/buffer.h \ 1309 $(SRC)/buffer.h \
1305 $(SRC)/category.h \ 1310 $(SRC)/category.h \
1306 $(SRC)/character.h \ 1311 $(SRC)/character.h \
@@ -1310,7 +1315,7 @@ $(BLD)/regex.$(O) : \
1310$(BLD)/region-cache.$(O) : \ 1315$(BLD)/region-cache.$(O) : \
1311 $(SRC)/region-cache.c \ 1316 $(SRC)/region-cache.c \
1312 $(CONFIG_H) \ 1317 $(CONFIG_H) \
1313 $(SRC)/lisp.h \ 1318 $(LISP_H) \
1314 $(SRC)/buffer.h \ 1319 $(SRC)/buffer.h \
1315 $(SRC)/region-cache.h 1320 $(SRC)/region-cache.h
1316 1321
@@ -1318,7 +1323,7 @@ $(BLD)/scroll.$(O) : \
1318 $(SRC)/scroll.c \ 1323 $(SRC)/scroll.c \
1319 $(CONFIG_H) \ 1324 $(CONFIG_H) \
1320 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1325 $(EMACS_ROOT)/nt/inc/sys/time.h \
1321 $(SRC)/lisp.h \ 1326 $(LISP_H) \
1322 $(SRC)/coding.h \ 1327 $(SRC)/coding.h \
1323 $(SRC)/composite.h \ 1328 $(SRC)/composite.h \
1324 $(SRC)/dispextern.h \ 1329 $(SRC)/dispextern.h \
@@ -1334,7 +1339,7 @@ $(BLD)/search.$(O) : \
1334 $(SRC)/search.c \ 1339 $(SRC)/search.c \
1335 $(CONFIG_H) \ 1340 $(CONFIG_H) \
1336 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1341 $(EMACS_ROOT)/nt/inc/sys/time.h \
1337 $(SRC)/lisp.h \ 1342 $(LISP_H) \
1338 $(SRC)/atimer.h \ 1343 $(SRC)/atimer.h \
1339 $(SRC)/blockinput.h \ 1344 $(SRC)/blockinput.h \
1340 $(SRC)/buffer.h \ 1345 $(SRC)/buffer.h \
@@ -1356,7 +1361,7 @@ $(BLD)/sound.$(O) : \
1356 $(CONFIG_H) \ 1361 $(CONFIG_H) \
1357 $(EMACS_ROOT)/nt/inc/unistd.h \ 1362 $(EMACS_ROOT)/nt/inc/unistd.h \
1358 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1363 $(EMACS_ROOT)/nt/inc/sys/time.h \
1359 $(SRC)/lisp.h \ 1364 $(LISP_H) \
1360 $(SRC)/atimer.h \ 1365 $(SRC)/atimer.h \
1361 $(SRC)/dispextern.h \ 1366 $(SRC)/dispextern.h \
1362 $(SRC)/syssignal.h \ 1367 $(SRC)/syssignal.h \
@@ -1366,7 +1371,7 @@ $(BLD)/sound.$(O) : \
1366$(BLD)/syntax.$(O) : \ 1371$(BLD)/syntax.$(O) : \
1367 $(SRC)/syntax.c \ 1372 $(SRC)/syntax.c \
1368 $(CONFIG_H) \ 1373 $(CONFIG_H) \
1369 $(SRC)/lisp.h \ 1374 $(LISP_H) \
1370 $(SRC)/buffer.h \ 1375 $(SRC)/buffer.h \
1371 $(SRC)/category.h \ 1376 $(SRC)/category.h \
1372 $(SRC)/character.h \ 1377 $(SRC)/character.h \
@@ -1389,8 +1394,8 @@ $(BLD)/sysdep.$(O) : \
1389 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1394 $(EMACS_ROOT)/nt/inc/sys/file.h \
1390 $(EMACS_ROOT)/nt/inc/sys/socket.h \ 1395 $(EMACS_ROOT)/nt/inc/sys/socket.h \
1391 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1396 $(EMACS_ROOT)/nt/inc/sys/time.h \
1392 $(IGNORE_VALUE_H) \ 1397 $(EMACS_ROOT)/lib/ignore-value.h \
1393 $(SRC)/lisp.h \ 1398 $(LISP_H) \
1394 $(SRC)/atimer.h \ 1399 $(SRC)/atimer.h \
1395 $(SRC)/blockinput.h \ 1400 $(SRC)/blockinput.h \
1396 $(SRC)/cm.h \ 1401 $(SRC)/cm.h \
@@ -1399,7 +1404,7 @@ $(BLD)/sysdep.$(O) : \
1399 $(SRC)/dispextern.h \ 1404 $(SRC)/dispextern.h \
1400 $(SRC)/frame.h \ 1405 $(SRC)/frame.h \
1401 $(SRC)/keyboard.h \ 1406 $(SRC)/keyboard.h \
1402 $(SRC)/process.h \ 1407 $(PROCESS_H) \
1403 $(SRC)/sysselect.h \ 1408 $(SRC)/sysselect.h \
1404 $(SRC)/syssignal.h \ 1409 $(SRC)/syssignal.h \
1405 $(SRC)/systime.h \ 1410 $(SRC)/systime.h \
@@ -1418,7 +1423,7 @@ $(BLD)/term.$(O) : \
1418 $(EMACS_ROOT)/nt/inc/unistd.h \ 1423 $(EMACS_ROOT)/nt/inc/unistd.h \
1419 $(EMACS_ROOT)/nt/inc/sys/file.h \ 1424 $(EMACS_ROOT)/nt/inc/sys/file.h \
1420 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1425 $(EMACS_ROOT)/nt/inc/sys/time.h \
1421 $(SRC)/lisp.h \ 1426 $(LISP_H) \
1422 $(SRC)/atimer.h \ 1427 $(SRC)/atimer.h \
1423 $(SRC)/blockinput.h \ 1428 $(SRC)/blockinput.h \
1424 $(SRC)/buffer.h \ 1429 $(SRC)/buffer.h \
@@ -1446,7 +1451,7 @@ $(BLD)/terminal.$(O) : \
1446 $(SRC)/terminal.c \ 1451 $(SRC)/terminal.c \
1447 $(CONFIG_H) \ 1452 $(CONFIG_H) \
1448 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1453 $(EMACS_ROOT)/nt/inc/sys/time.h \
1449 $(SRC)/lisp.h \ 1454 $(LISP_H) \
1450 $(SRC)/charset.h \ 1455 $(SRC)/charset.h \
1451 $(SRC)/coding.h \ 1456 $(SRC)/coding.h \
1452 $(SRC)/composite.h \ 1457 $(SRC)/composite.h \
@@ -1461,7 +1466,7 @@ $(BLD)/terminal.$(O) : \
1461$(BLD)/textprop.$(O) : \ 1466$(BLD)/textprop.$(O) : \
1462 $(SRC)/textprop.c \ 1467 $(SRC)/textprop.c \
1463 $(CONFIG_H) \ 1468 $(CONFIG_H) \
1464 $(SRC)/lisp.h \ 1469 $(LISP_H) \
1465 $(SRC)/buffer.h \ 1470 $(SRC)/buffer.h \
1466 $(SRC)/composite.h \ 1471 $(SRC)/composite.h \
1467 $(SRC)/dispextern.h \ 1472 $(SRC)/dispextern.h \
@@ -1472,12 +1477,12 @@ $(BLD)/textprop.$(O) : \
1472$(BLD)/tparam.$(O) : \ 1477$(BLD)/tparam.$(O) : \
1473 $(SRC)/tparam.c \ 1478 $(SRC)/tparam.c \
1474 $(CONFIG_H) \ 1479 $(CONFIG_H) \
1475 $(SRC)/lisp.h 1480 $(LISP_H)
1476 1481
1477$(BLD)/undo.$(O) : \ 1482$(BLD)/undo.$(O) : \
1478 $(SRC)/undo.c \ 1483 $(SRC)/undo.c \
1479 $(CONFIG_H) \ 1484 $(CONFIG_H) \
1480 $(SRC)/lisp.h \ 1485 $(LISP_H) \
1481 $(SRC)/buffer.h \ 1486 $(SRC)/buffer.h \
1482 $(SRC)/commands.h \ 1487 $(SRC)/commands.h \
1483 $(SRC)/dispextern.h \ 1488 $(SRC)/dispextern.h \
@@ -1492,14 +1497,14 @@ $(BLD)/unexw32.$(O) : \
1492$(BLD)/vm-limit.$(O) : \ 1497$(BLD)/vm-limit.$(O) : \
1493 $(SRC)/vm-limit.c \ 1498 $(SRC)/vm-limit.c \
1494 $(CONFIG_H) \ 1499 $(CONFIG_H) \
1495 $(SRC)/lisp.h \ 1500 $(LISP_H) \
1496 $(SRC)/mem-limits.h 1501 $(SRC)/mem-limits.h
1497 1502
1498$(BLD)/window.$(O) : \ 1503$(BLD)/window.$(O) : \
1499 $(SRC)/window.c \ 1504 $(SRC)/window.c \
1500 $(CONFIG_H) \ 1505 $(CONFIG_H) \
1501 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1506 $(EMACS_ROOT)/nt/inc/sys/time.h \
1502 $(SRC)/lisp.h \ 1507 $(LISP_H) \
1503 $(SRC)/atimer.h \ 1508 $(SRC)/atimer.h \
1504 $(SRC)/blockinput.h \ 1509 $(SRC)/blockinput.h \
1505 $(SRC)/buffer.h \ 1510 $(SRC)/buffer.h \
@@ -1525,7 +1530,7 @@ $(BLD)/xdisp.$(O) : \
1525 $(CONFIG_H) \ 1530 $(CONFIG_H) \
1526 $(EMACS_ROOT)/nt/inc/unistd.h \ 1531 $(EMACS_ROOT)/nt/inc/unistd.h \
1527 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1532 $(EMACS_ROOT)/nt/inc/sys/time.h \
1528 $(SRC)/lisp.h \ 1533 $(LISP_H) \
1529 $(SRC)/atimer.h \ 1534 $(SRC)/atimer.h \
1530 $(SRC)/blockinput.h \ 1535 $(SRC)/blockinput.h \
1531 $(SRC)/buffer.h \ 1536 $(SRC)/buffer.h \
@@ -1545,7 +1550,7 @@ $(BLD)/xdisp.$(O) : \
1545 $(SRC)/keyboard.h \ 1550 $(SRC)/keyboard.h \
1546 $(SRC)/keymap.h \ 1551 $(SRC)/keymap.h \
1547 $(SRC)/macros.h \ 1552 $(SRC)/macros.h \
1548 $(SRC)/process.h \ 1553 $(PROCESS_H) \
1549 $(SRC)/region-cache.h \ 1554 $(SRC)/region-cache.h \
1550 $(SRC)/systime.h \ 1555 $(SRC)/systime.h \
1551 $(SRC)/termchar.h \ 1556 $(SRC)/termchar.h \
@@ -1559,7 +1564,7 @@ $(BLD)/xfaces.$(O) : \
1559 $(SRC)/xfaces.c \ 1564 $(SRC)/xfaces.c \
1560 $(CONFIG_H) \ 1565 $(CONFIG_H) \
1561 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1566 $(EMACS_ROOT)/nt/inc/sys/time.h \
1562 $(SRC)/lisp.h \ 1567 $(LISP_H) \
1563 $(SRC)/atimer.h \ 1568 $(SRC)/atimer.h \
1564 $(SRC)/blockinput.h \ 1569 $(SRC)/blockinput.h \
1565 $(SRC)/buffer.h \ 1570 $(SRC)/buffer.h \
@@ -1585,7 +1590,7 @@ $(BLD)/w32fns.$(O) : \
1585 $(SRC)/w32fns.c \ 1590 $(SRC)/w32fns.c \
1586 $(CONFIG_H) \ 1591 $(CONFIG_H) \
1587 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1592 $(EMACS_ROOT)/nt/inc/sys/time.h \
1588 $(SRC)/lisp.h \ 1593 $(LISP_H) \
1589 $(SRC)/atimer.h \ 1594 $(SRC)/atimer.h \
1590 $(SRC)/blockinput.h \ 1595 $(SRC)/blockinput.h \
1591 $(SRC)/buffer.h \ 1596 $(SRC)/buffer.h \
@@ -1614,7 +1619,7 @@ $(BLD)/w32menu.$(O) : \
1614 $(SRC)/w32menu.c \ 1619 $(SRC)/w32menu.c \
1615 $(CONFIG_H) \ 1620 $(CONFIG_H) \
1616 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1621 $(EMACS_ROOT)/nt/inc/sys/time.h \
1617 $(SRC)/lisp.h \ 1622 $(LISP_H) \
1618 $(SRC)/atimer.h \ 1623 $(SRC)/atimer.h \
1619 $(SRC)/blockinput.h \ 1624 $(SRC)/blockinput.h \
1620 $(SRC)/buffer.h \ 1625 $(SRC)/buffer.h \
@@ -1638,7 +1643,7 @@ $(BLD)/w32term.$(O) : \
1638 $(CONFIG_H) \ 1643 $(CONFIG_H) \
1639 $(EMACS_ROOT)/nt/inc/unistd.h \ 1644 $(EMACS_ROOT)/nt/inc/unistd.h \
1640 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1645 $(EMACS_ROOT)/nt/inc/sys/time.h \
1641 $(SRC)/lisp.h \ 1646 $(LISP_H) \
1642 $(SRC)/atimer.h \ 1647 $(SRC)/atimer.h \
1643 $(SRC)/blockinput.h \ 1648 $(SRC)/blockinput.h \
1644 $(SRC)/buffer.h \ 1649 $(SRC)/buffer.h \
@@ -1655,7 +1660,7 @@ $(BLD)/w32term.$(O) : \
1655 $(SRC)/intervals.h \ 1660 $(SRC)/intervals.h \
1656 $(SRC)/keyboard.h \ 1661 $(SRC)/keyboard.h \
1657 $(SRC)/keymap.h \ 1662 $(SRC)/keymap.h \
1658 $(SRC)/process.h \ 1663 $(PROCESS_H) \
1659 $(SRC)/systime.h \ 1664 $(SRC)/systime.h \
1660 $(SRC)/systty.h \ 1665 $(SRC)/systty.h \
1661 $(SRC)/termchar.h \ 1666 $(SRC)/termchar.h \
@@ -1671,7 +1676,7 @@ $(BLD)/w32select.$(O) : \
1671 $(SRC)/w32select.c \ 1676 $(SRC)/w32select.c \
1672 $(CONFIG_H) \ 1677 $(CONFIG_H) \
1673 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1678 $(EMACS_ROOT)/nt/inc/sys/time.h \
1674 $(SRC)/lisp.h \ 1679 $(LISP_H) \
1675 $(SRC)/atimer.h \ 1680 $(SRC)/atimer.h \
1676 $(SRC)/blockinput.h \ 1681 $(SRC)/blockinput.h \
1677 $(SRC)/character.h \ 1682 $(SRC)/character.h \
@@ -1688,7 +1693,7 @@ $(BLD)/w32reg.$(O) : \
1688 $(SRC)/w32reg.c \ 1693 $(SRC)/w32reg.c \
1689 $(CONFIG_H) \ 1694 $(CONFIG_H) \
1690 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1695 $(EMACS_ROOT)/nt/inc/sys/time.h \
1691 $(SRC)/lisp.h \ 1696 $(LISP_H) \
1692 $(SRC)/atimer.h \ 1697 $(SRC)/atimer.h \
1693 $(SRC)/blockinput.h \ 1698 $(SRC)/blockinput.h \
1694 $(SRC)/systime.h \ 1699 $(SRC)/systime.h \
@@ -1699,7 +1704,7 @@ $(BLD)/w32xfns.$(O) : \
1699 $(SRC)/w32xfns.c \ 1704 $(SRC)/w32xfns.c \
1700 $(CONFIG_H) \ 1705 $(CONFIG_H) \
1701 $(EMACS_ROOT)/nt/inc/sys/time.h \ 1706 $(EMACS_ROOT)/nt/inc/sys/time.h \
1702 $(SRC)/lisp.h \ 1707 $(LISP_H) \
1703 $(SRC)/atimer.h \ 1708 $(SRC)/atimer.h \
1704 $(SRC)/blockinput.h \ 1709 $(SRC)/blockinput.h \
1705 $(SRC)/charset.h \ 1710 $(SRC)/charset.h \
@@ -1716,7 +1721,7 @@ $(BLD)/w32xfns.$(O) : \
1716$(BLD)/w32font.$(O) : \ 1721$(BLD)/w32font.$(O) : \
1717 $(SRC)/w32font.c \ 1722 $(SRC)/w32font.c \
1718 $(CONFIG_H) \ 1723 $(CONFIG_H) \
1719 $(SRC)/lisp.h \ 1724 $(LISP_H) \
1720 $(SRC)/ccl.h \ 1725 $(SRC)/ccl.h \
1721 $(SRC)/character.h \ 1726 $(SRC)/character.h \
1722 $(SRC)/charset.h \ 1727 $(SRC)/charset.h \
@@ -1733,7 +1738,7 @@ $(BLD)/w32font.$(O) : \
1733$(BLD)/w32uniscribe.$(O) : \ 1738$(BLD)/w32uniscribe.$(O) : \
1734 $(SRC)/w32uniscribe.c \ 1739 $(SRC)/w32uniscribe.c \
1735 $(CONFIG_H) \ 1740 $(CONFIG_H) \
1736 $(SRC)/lisp.h \ 1741 $(LISP_H) \
1737 $(SRC)/ccl.h \ 1742 $(SRC)/ccl.h \
1738 $(SRC)/character.h \ 1743 $(SRC)/character.h \
1739 $(SRC)/charset.h \ 1744 $(SRC)/charset.h \