aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2012-06-23 21:28:01 +0200
committerJuanma Barranquero2012-06-23 21:28:01 +0200
commit049ec95ba5b2c54fb16aaee9d89057f87249c42e (patch)
tree7680b28abda7a20429d5b85c456e56122e4dc480 /src
parent10b6eb0d9df9373e204775a807c400ae11bb35e6 (diff)
downloademacs-049ec95ba5b2c54fb16aaee9d89057f87249c42e.tar.gz
emacs-049ec95ba5b2c54fb16aaee9d89057f87249c42e.zip
src/makefile.w32-in: Update dependencies.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/makefile.w32-in121
2 files changed, 70 insertions, 53 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f1099c6ef90..d0b6f145227 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12012-06-23 Juanma Barranquero <lekktu@gmail.com> 12012-06-23 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * makefile.w32-in: Update dependencies.
4
3 * w32.c (ltime): Add return type and declare static. 5 * w32.c (ltime): Add return type and declare static.
4 (w32_get_internal_run_time): Remove usused variable `time_100ns'. 6 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
5 7
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index be9d4a3361c..963d9329e49 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -390,12 +390,16 @@ EMACS_ROOT = ..
390GNU_LIB = $(EMACS_ROOT)/lib 390GNU_LIB = $(EMACS_ROOT)/lib
391NT_INC = $(EMACS_ROOT)/nt/inc 391NT_INC = $(EMACS_ROOT)/nt/inc
392 392
393SYSTIME_H = $(SRC)/systime.h \ 393TIMESPEC_H = $(GNU_LIB)/timespec.h \
394 $(NT_INC)/sys/time.h 394 $(NT_INC)/sys/time.h
395SYSTIME_H = $(SRC)/systime.h \
396 $(TIMESPEC_H)
395ATIMER_H = $(SRC)/atimer.h \ 397ATIMER_H = $(SRC)/atimer.h \
396 $(SYSTIME_H) 398 $(SYSTIME_H)
397BLOCKINPUT_H = $(SRC)/blockinput.h \ 399BLOCKINPUT_H = $(SRC)/blockinput.h \
398 $(ATIMER_H) 400 $(ATIMER_H)
401BUFFER_H = $(SRC)/buffer.h \
402 $(SYSTIME_H)
399CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \ 403CAREADLINKAT_H = $(GNU_LIB)/careadlinkat.h \
400 $(NT_INC)/unistd.h 404 $(NT_INC)/unistd.h
401CHARACTER_H = $(SRC)/character.h \ 405CHARACTER_H = $(SRC)/character.h \
@@ -413,6 +417,7 @@ DIR_H = $(NT_INC)/sys/dir.h \
413W32GUI_H = $(SRC)/w32gui.h \ 417W32GUI_H = $(SRC)/w32gui.h \
414 $(SYSTIME_H) 418 $(SYSTIME_H)
415DISPEXTERN_H = $(SRC)/dispextern.h \ 419DISPEXTERN_H = $(SRC)/dispextern.h \
420 $(SYSTIME_H) \
416 $(W32GUI_H) 421 $(W32GUI_H)
417FILEMODE_H = $(GNU_LIB)/filemode.h \ 422FILEMODE_H = $(GNU_LIB)/filemode.h \
418 $(NT_INC)/sys/stat.h 423 $(NT_INC)/sys/stat.h
@@ -455,11 +460,16 @@ SHA512_H = $(GNU_LIB)/sha512.h \
455 $(U64_H) 460 $(U64_H)
456SOCKET_H = $(NT_INC)/sys/socket.h \ 461SOCKET_H = $(NT_INC)/sys/socket.h \
457 $(SRC)/w32.h 462 $(SRC)/w32.h
463STAT_TIME_H = $(GNU_LIB)/stat-time.h \
464 $(NT_INC)/sys/stat.h \
465 $(NT_INC)/sys/time.h
458SYSTTY_H = $(SRC)/systty.h \ 466SYSTTY_H = $(SRC)/systty.h \
459 $(NT_INC)/sys/ioctl.h \ 467 $(NT_INC)/sys/ioctl.h \
460 $(NT_INC)/unistd.h 468 $(NT_INC)/unistd.h
461TERMHOOKS_H = $(SRC)/termhooks.h \ 469TERMHOOKS_H = $(SRC)/termhooks.h \
462 $(SYSTIME_H) 470 $(SYSTIME_H)
471UTIMENS_H = $(GNU_LIB)/utimens.h \
472 $(NT_INC)/sys/time.h
463W32TERM_H = $(SRC)/w32term.h \ 473W32TERM_H = $(SRC)/w32term.h \
464 $(W32GUI_H) 474 $(W32GUI_H)
465WINDOW_H = $(SRC)/window.h \ 475WINDOW_H = $(SRC)/window.h \
@@ -467,13 +477,13 @@ WINDOW_H = $(SRC)/window.h \
467 477
468$(BLD)/alloc.$(O) : \ 478$(BLD)/alloc.$(O) : \
469 $(SRC)/alloc.c \ 479 $(SRC)/alloc.c \
470 $(SRC)/buffer.h \
471 $(SRC)/puresize.h \ 480 $(SRC)/puresize.h \
472 $(SRC)/syssignal.h \ 481 $(SRC)/syssignal.h \
473 $(SRC)/w32.h \ 482 $(SRC)/w32.h \
474 $(NT_INC)/unistd.h \ 483 $(NT_INC)/unistd.h \
475 $(GNU_LIB)/verify.h \ 484 $(GNU_LIB)/verify.h \
476 $(BLOCKINPUT_H) \ 485 $(BLOCKINPUT_H) \
486 $(BUFFER_H) \
477 $(CHARACTER_H) \ 487 $(CHARACTER_H) \
478 $(CONFIG_H) \ 488 $(CONFIG_H) \
479 $(FRAME_H) \ 489 $(FRAME_H) \
@@ -497,7 +507,7 @@ $(BLD)/atimer.$(O) : \
497 507
498$(BLD)/bidi.$(O) : \ 508$(BLD)/bidi.$(O) : \
499 $(SRC)/bidi.c \ 509 $(SRC)/bidi.c \
500 $(SRC)/buffer.h \ 510 $(BUFFER_H) \
501 $(CHARACTER_H) \ 511 $(CHARACTER_H) \
502 $(CONFIG_H) \ 512 $(CONFIG_H) \
503 $(DISPEXTERN_H) \ 513 $(DISPEXTERN_H) \
@@ -505,7 +515,6 @@ $(BLD)/bidi.$(O) : \
505 515
506$(BLD)/buffer.$(O) : \ 516$(BLD)/buffer.$(O) : \
507 $(SRC)/buffer.c \ 517 $(SRC)/buffer.c \
508 $(SRC)/buffer.h \
509 $(SRC)/commands.h \ 518 $(SRC)/commands.h \
510 $(SRC)/indent.h \ 519 $(SRC)/indent.h \
511 $(SRC)/keymap.h \ 520 $(SRC)/keymap.h \
@@ -515,6 +524,7 @@ $(BLD)/buffer.$(O) : \
515 $(NT_INC)/unistd.h \ 524 $(NT_INC)/unistd.h \
516 $(GNU_LIB)/verify.h \ 525 $(GNU_LIB)/verify.h \
517 $(BLOCKINPUT_H) \ 526 $(BLOCKINPUT_H) \
527 $(BUFFER_H) \
518 $(CHARACTER_H) \ 528 $(CHARACTER_H) \
519 $(CONFIG_H) \ 529 $(CONFIG_H) \
520 $(FRAME_H) \ 530 $(FRAME_H) \
@@ -525,8 +535,8 @@ $(BLD)/buffer.$(O) : \
525 535
526$(BLD)/bytecode.$(O) : \ 536$(BLD)/bytecode.$(O) : \
527 $(SRC)/bytecode.c \ 537 $(SRC)/bytecode.c \
528 $(SRC)/buffer.h \
529 $(SRC)/syntax.h \ 538 $(SRC)/syntax.h \
539 $(BUFFER_H) \
530 $(CHARACTER_H) \ 540 $(CHARACTER_H) \
531 $(CONFIG_H) \ 541 $(CONFIG_H) \
532 $(LISP_H) \ 542 $(LISP_H) \
@@ -534,9 +544,9 @@ $(BLD)/bytecode.$(O) : \
534 544
535$(BLD)/callint.$(O) : \ 545$(BLD)/callint.$(O) : \
536 $(SRC)/callint.c \ 546 $(SRC)/callint.c \
537 $(SRC)/buffer.h \
538 $(SRC)/commands.h \ 547 $(SRC)/commands.h \
539 $(SRC)/keymap.h \ 548 $(SRC)/keymap.h \
549 $(BUFFER_H) \
540 $(CHARACTER_H) \ 550 $(CHARACTER_H) \
541 $(CONFIG_H) \ 551 $(CONFIG_H) \
542 $(KEYBOARD_H) \ 552 $(KEYBOARD_H) \
@@ -545,7 +555,6 @@ $(BLD)/callint.$(O) : \
545 555
546$(BLD)/callproc.$(O) : \ 556$(BLD)/callproc.$(O) : \
547 $(SRC)/callproc.c \ 557 $(SRC)/callproc.c \
548 $(SRC)/buffer.h \
549 $(SRC)/ccl.h \ 558 $(SRC)/ccl.h \
550 $(SRC)/commands.h \ 559 $(SRC)/commands.h \
551 $(SRC)/composite.h \ 560 $(SRC)/composite.h \
@@ -555,6 +564,7 @@ $(BLD)/callproc.$(O) : \
555 $(NT_INC)/sys/file.h \ 564 $(NT_INC)/sys/file.h \
556 $(NT_INC)/unistd.h \ 565 $(NT_INC)/unistd.h \
557 $(BLOCKINPUT_H) \ 566 $(BLOCKINPUT_H) \
567 $(BUFFER_H) \
558 $(CHARACTER_H) \ 568 $(CHARACTER_H) \
559 $(CODING_H) \ 569 $(CODING_H) \
560 $(CONFIG_H) \ 570 $(CONFIG_H) \
@@ -566,27 +576,27 @@ $(BLD)/callproc.$(O) : \
566 576
567$(BLD)/casefiddle.$(O) : \ 577$(BLD)/casefiddle.$(O) : \
568 $(SRC)/casefiddle.c \ 578 $(SRC)/casefiddle.c \
569 $(SRC)/buffer.h \
570 $(SRC)/commands.h \ 579 $(SRC)/commands.h \
571 $(SRC)/composite.h \ 580 $(SRC)/composite.h \
572 $(SRC)/keymap.h \ 581 $(SRC)/keymap.h \
573 $(SRC)/syntax.h \ 582 $(SRC)/syntax.h \
583 $(BUFFER_H) \
574 $(CHARACTER_H) \ 584 $(CHARACTER_H) \
575 $(CONFIG_H) \ 585 $(CONFIG_H) \
576 $(LISP_H) 586 $(LISP_H)
577 587
578$(BLD)/casetab.$(O) : \ 588$(BLD)/casetab.$(O) : \
579 $(SRC)/casetab.c \ 589 $(SRC)/casetab.c \
580 $(SRC)/buffer.h \ 590 $(BUFFER_H) \
581 $(CHARACTER_H) \ 591 $(CHARACTER_H) \
582 $(CONFIG_H) \ 592 $(CONFIG_H) \
583 $(LISP_H) 593 $(LISP_H)
584 594
585$(BLD)/category.$(O) : \ 595$(BLD)/category.$(O) : \
586 $(SRC)/category.c \ 596 $(SRC)/category.c \
587 $(SRC)/buffer.h \
588 $(SRC)/category.h \ 597 $(SRC)/category.h \
589 $(SRC)/keymap.h \ 598 $(SRC)/keymap.h \
599 $(BUFFER_H) \
590 $(CHARACTER_H) \ 600 $(CHARACTER_H) \
591 $(CHARSET_H) \ 601 $(CHARSET_H) \
592 $(CONFIG_H) \ 602 $(CONFIG_H) \
@@ -603,10 +613,10 @@ $(BLD)/ccl.$(O) : \
603 613
604$(BLD)/character.$(O) : \ 614$(BLD)/character.$(O) : \
605 $(SRC)/character.c \ 615 $(SRC)/character.c \
606 $(SRC)/buffer.h \
607 $(SRC)/composite.h \ 616 $(SRC)/composite.h \
608 $(SRC)/disptab.h \ 617 $(SRC)/disptab.h \
609 $(GNU_LIB)/intprops.h \ 618 $(GNU_LIB)/intprops.h \
619 $(BUFFER_H) \
610 $(CHARACTER_H) \ 620 $(CHARACTER_H) \
611 $(CHARSET_H) \ 621 $(CHARSET_H) \
612 $(CONFIG_H) \ 622 $(CONFIG_H) \
@@ -614,9 +624,9 @@ $(BLD)/character.$(O) : \
614 624
615$(BLD)/charset.$(O) : \ 625$(BLD)/charset.$(O) : \
616 $(SRC)/charset.c \ 626 $(SRC)/charset.c \
617 $(SRC)/buffer.h \
618 $(SRC)/disptab.h \ 627 $(SRC)/disptab.h \
619 $(NT_INC)/unistd.h \ 628 $(NT_INC)/unistd.h \
629 $(BUFFER_H) \
620 $(CHARACTER_H) \ 630 $(CHARACTER_H) \
621 $(CHARSET_H) \ 631 $(CHARSET_H) \
622 $(CODING_H) \ 632 $(CODING_H) \
@@ -633,10 +643,10 @@ $(BLD)/chartab.$(O) : \
633 643
634$(BLD)/cmds.$(O) : \ 644$(BLD)/cmds.$(O) : \
635 $(SRC)/cmds.c \ 645 $(SRC)/cmds.c \
636 $(SRC)/buffer.h \
637 $(SRC)/commands.h \ 646 $(SRC)/commands.h \
638 $(SRC)/keymap.h \ 647 $(SRC)/keymap.h \
639 $(SRC)/syntax.h \ 648 $(SRC)/syntax.h \
649 $(BUFFER_H) \
640 $(CHARACTER_H) \ 650 $(CHARACTER_H) \
641 $(CONFIG_H) \ 651 $(CONFIG_H) \
642 $(DISPEXTERN_H) \ 652 $(DISPEXTERN_H) \
@@ -647,9 +657,9 @@ $(BLD)/cmds.$(O) : \
647 657
648$(BLD)/coding.$(O) : \ 658$(BLD)/coding.$(O) : \
649 $(SRC)/coding.c \ 659 $(SRC)/coding.c \
650 $(SRC)/buffer.h \
651 $(SRC)/ccl.h \ 660 $(SRC)/ccl.h \
652 $(SRC)/composite.h \ 661 $(SRC)/composite.h \
662 $(BUFFER_H) \
653 $(CHARACTER_H) \ 663 $(CHARACTER_H) \
654 $(CHARSET_H) \ 664 $(CHARSET_H) \
655 $(CODING_H) \ 665 $(CODING_H) \
@@ -661,7 +671,7 @@ $(BLD)/coding.$(O) : \
661 671
662$(BLD)/composite.$(O) : \ 672$(BLD)/composite.$(O) : \
663 $(SRC)/composite.c \ 673 $(SRC)/composite.c \
664 $(SRC)/buffer.h \ 674 $(BUFFER_H) \
665 $(CHARACTER_H) \ 675 $(CHARACTER_H) \
666 $(CODING_H) \ 676 $(CODING_H) \
667 $(CONFIG_H) \ 677 $(CONFIG_H) \
@@ -675,11 +685,11 @@ $(BLD)/composite.$(O) : \
675 685
676$(BLD)/data.$(O) : \ 686$(BLD)/data.$(O) : \
677 $(SRC)/data.c \ 687 $(SRC)/data.c \
678 $(SRC)/buffer.h \
679 $(SRC)/keymap.h \ 688 $(SRC)/keymap.h \
680 $(SRC)/puresize.h \ 689 $(SRC)/puresize.h \
681 $(SRC)/syssignal.h \ 690 $(SRC)/syssignal.h \
682 $(GNU_LIB)/intprops.h \ 691 $(GNU_LIB)/intprops.h \
692 $(BUFFER_H) \
683 $(CHARACTER_H) \ 693 $(CHARACTER_H) \
684 $(CONFIG_H) \ 694 $(CONFIG_H) \
685 $(FONT_H) \ 695 $(FONT_H) \
@@ -690,13 +700,13 @@ $(BLD)/data.$(O) : \
690 700
691$(BLD)/dired.$(O) : \ 701$(BLD)/dired.$(O) : \
692 $(SRC)/dired.c \ 702 $(SRC)/dired.c \
693 $(SRC)/buffer.h \
694 $(SRC)/commands.h \ 703 $(SRC)/commands.h \
695 $(SRC)/regex.h \ 704 $(SRC)/regex.h \
696 $(NT_INC)/pwd.h \ 705 $(NT_INC)/pwd.h \
697 $(NT_INC)/sys/stat.h \ 706 $(NT_INC)/sys/stat.h \
698 $(NT_INC)/unistd.h \ 707 $(NT_INC)/unistd.h \
699 $(BLOCKINPUT_H) \ 708 $(BLOCKINPUT_H) \
709 $(BUFFER_H) \
700 $(CHARACTER_H) \ 710 $(CHARACTER_H) \
701 $(CHARSET_H) \ 711 $(CHARSET_H) \
702 $(CODING_H) \ 712 $(CODING_H) \
@@ -705,11 +715,11 @@ $(BLD)/dired.$(O) : \
705 $(FILEMODE_H) \ 715 $(FILEMODE_H) \
706 $(GRP_H) \ 716 $(GRP_H) \
707 $(LISP_H) \ 717 $(LISP_H) \
718 $(STAT-TIME_H) \
708 $(SYSTIME_H) 719 $(SYSTIME_H)
709 720
710$(BLD)/dispnew.$(O) : \ 721$(BLD)/dispnew.$(O) : \
711 $(SRC)/dispnew.c \ 722 $(SRC)/dispnew.c \
712 $(SRC)/buffer.h \
713 $(SRC)/cm.h \ 723 $(SRC)/cm.h \
714 $(SRC)/commands.h \ 724 $(SRC)/commands.h \
715 $(SRC)/disptab.h \ 725 $(SRC)/disptab.h \
@@ -719,6 +729,7 @@ $(BLD)/dispnew.$(O) : \
719 $(SRC)/termopts.h \ 729 $(SRC)/termopts.h \
720 $(NT_INC)/unistd.h \ 730 $(NT_INC)/unistd.h \
721 $(BLOCKINPUT_H) \ 731 $(BLOCKINPUT_H) \
732 $(BUFFER_H) \
722 $(CHARACTER_H) \ 733 $(CHARACTER_H) \
723 $(CONFIG_H) \ 734 $(CONFIG_H) \
724 $(DISPEXTERN_H) \ 735 $(DISPEXTERN_H) \
@@ -734,11 +745,11 @@ $(BLD)/dispnew.$(O) : \
734 745
735$(BLD)/doc.$(O) : \ 746$(BLD)/doc.$(O) : \
736 $(SRC)/doc.c \ 747 $(SRC)/doc.c \
737 $(SRC)/buffer.h \
738 $(SRC)/buildobj.h \ 748 $(SRC)/buildobj.h \
739 $(SRC)/keymap.h \ 749 $(SRC)/keymap.h \
740 $(NT_INC)/sys/file.h \ 750 $(NT_INC)/sys/file.h \
741 $(NT_INC)/unistd.h \ 751 $(NT_INC)/unistd.h \
752 $(BUFFER_H) \
742 $(CHARACTER_H) \ 753 $(CHARACTER_H) \
743 $(CONFIG_H) \ 754 $(CONFIG_H) \
744 $(KEYBOARD_H) \ 755 $(KEYBOARD_H) \
@@ -753,13 +764,13 @@ $(BLD)/doprnt.$(O) : \
753 764
754$(BLD)/editfns.$(O) : \ 765$(BLD)/editfns.$(O) : \
755 $(SRC)/editfns.c \ 766 $(SRC)/editfns.c \
756 $(SRC)/buffer.h \
757 $(NT_INC)/pwd.h \ 767 $(NT_INC)/pwd.h \
758 $(NT_INC)/unistd.h \ 768 $(NT_INC)/unistd.h \
759 $(GNU_LIB)/intprops.h \ 769 $(GNU_LIB)/intprops.h \
760 $(GNU_LIB)/strftime.h \ 770 $(GNU_LIB)/strftime.h \
761 $(GNU_LIB)/verify.h \ 771 $(GNU_LIB)/verify.h \
762 $(BLOCKINPUT_H) \ 772 $(BLOCKINPUT_H) \
773 $(BUFFER_H) \
763 $(CHARACTER_H) \ 774 $(CHARACTER_H) \
764 $(CODING_H) \ 775 $(CODING_H) \
765 $(CONFIG_H) \ 776 $(CONFIG_H) \
@@ -771,7 +782,6 @@ $(BLD)/editfns.$(O) : \
771 782
772$(BLD)/emacs.$(O) : \ 783$(BLD)/emacs.$(O) : \
773 $(SRC)/emacs.c \ 784 $(SRC)/emacs.c \
774 $(SRC)/buffer.h \
775 $(SRC)/commands.h \ 785 $(SRC)/commands.h \
776 $(SRC)/gnutls.h \ 786 $(SRC)/gnutls.h \
777 $(SRC)/keymap.h \ 787 $(SRC)/keymap.h \
@@ -782,6 +792,7 @@ $(BLD)/emacs.$(O) : \
782 $(NT_INC)/sys/file.h \ 792 $(NT_INC)/sys/file.h \
783 $(NT_INC)/unistd.h \ 793 $(NT_INC)/unistd.h \
784 $(BLOCKINPUT_H) \ 794 $(BLOCKINPUT_H) \
795 $(BUFFER_H) \
785 $(CHARACTER_H) \ 796 $(CHARACTER_H) \
786 $(CONFIG_H) \ 797 $(CONFIG_H) \
787 $(FRAME_H) \ 798 $(FRAME_H) \
@@ -805,12 +816,12 @@ $(BLD)/eval.$(O) : \
805 816
806$(BLD)/fileio.$(O) : \ 817$(BLD)/fileio.$(O) : \
807 $(SRC)/fileio.c \ 818 $(SRC)/fileio.c \
808 $(SRC)/buffer.h \
809 $(SRC)/commands.h \ 819 $(SRC)/commands.h \
810 $(NT_INC)/pwd.h \ 820 $(NT_INC)/pwd.h \
811 $(NT_INC)/sys/stat.h \ 821 $(NT_INC)/sys/stat.h \
812 $(NT_INC)/unistd.h \ 822 $(NT_INC)/unistd.h \
813 $(BLOCKINPUT_H) \ 823 $(BLOCKINPUT_H) \
824 $(BUFFER_H) \
814 $(CHARACTER_H) \ 825 $(CHARACTER_H) \
815 $(CODING_H) \ 826 $(CODING_H) \
816 $(CONFIG_H) \ 827 $(CONFIG_H) \
@@ -818,16 +829,17 @@ $(BLD)/fileio.$(O) : \
818 $(FRAME_H) \ 829 $(FRAME_H) \
819 $(INTERVALS_H) \ 830 $(INTERVALS_H) \
820 $(LISP_H) \ 831 $(LISP_H) \
832 $(STAT-TIME_H) \
821 $(SYSTIME_H) \ 833 $(SYSTIME_H) \
822 $(WINDOW_H) 834 $(WINDOW_H)
823 835
824$(BLD)/filelock.$(O) : \ 836$(BLD)/filelock.$(O) : \
825 $(SRC)/filelock.c \ 837 $(SRC)/filelock.c \
826 $(SRC)/buffer.h \
827 $(NT_INC)/pwd.h \ 838 $(NT_INC)/pwd.h \
828 $(NT_INC)/sys/file.h \ 839 $(NT_INC)/sys/file.h \
829 $(NT_INC)/sys/stat.h \ 840 $(NT_INC)/sys/stat.h \
830 $(NT_INC)/unistd.h \ 841 $(NT_INC)/unistd.h \
842 $(BUFFER_H) \
831 $(CHARACTER_H) \ 843 $(CHARACTER_H) \
832 $(CODING_H) \ 844 $(CODING_H) \
833 $(CONFIG_H) \ 845 $(CONFIG_H) \
@@ -846,12 +858,12 @@ $(BLD)/floatfns.$(O) : \
846 858
847$(BLD)/fns.$(O) : \ 859$(BLD)/fns.$(O) : \
848 $(SRC)/fns.c \ 860 $(SRC)/fns.c \
849 $(SRC)/buffer.h \
850 $(SRC)/commands.h \ 861 $(SRC)/commands.h \
851 $(SRC)/keymap.h \ 862 $(SRC)/keymap.h \
852 $(NT_INC)/unistd.h \ 863 $(NT_INC)/unistd.h \
853 $(GNU_LIB)/intprops.h \ 864 $(GNU_LIB)/intprops.h \
854 $(BLOCKINPUT_H) \ 865 $(BLOCKINPUT_H) \
866 $(BUFFER_H) \
855 $(CHARACTER_H) \ 867 $(CHARACTER_H) \
856 $(CODING_H) \ 868 $(CODING_H) \
857 $(CONFIG_H) \ 869 $(CONFIG_H) \
@@ -868,9 +880,9 @@ $(BLD)/fns.$(O) : \
868 880
869$(BLD)/font.$(O) : \ 881$(BLD)/font.$(O) : \
870 $(SRC)/font.c \ 882 $(SRC)/font.c \
871 $(SRC)/buffer.h \
872 $(SRC)/composite.h \ 883 $(SRC)/composite.h \
873 $(SRC)/fontset.h \ 884 $(SRC)/fontset.h \
885 $(BUFFER_H) \
874 $(CHARACTER_H) \ 886 $(CHARACTER_H) \
875 $(CHARSET_H) \ 887 $(CHARSET_H) \
876 $(CONFIG_H) \ 888 $(CONFIG_H) \
@@ -883,10 +895,10 @@ $(BLD)/font.$(O) : \
883 895
884$(BLD)/fontset.$(O) : \ 896$(BLD)/fontset.$(O) : \
885 $(SRC)/fontset.c \ 897 $(SRC)/fontset.c \
886 $(SRC)/buffer.h \
887 $(SRC)/ccl.h \ 898 $(SRC)/ccl.h \
888 $(SRC)/fontset.h \ 899 $(SRC)/fontset.h \
889 $(BLOCKINPUT_H) \ 900 $(BLOCKINPUT_H) \
901 $(BUFFER_H) \
890 $(CHARACTER_H) \ 902 $(CHARACTER_H) \
891 $(CHARSET_H) \ 903 $(CHARSET_H) \
892 $(CONFIG_H) \ 904 $(CONFIG_H) \
@@ -902,11 +914,11 @@ $(BLD)/fontset.$(O) : \
902 914
903$(BLD)/frame.$(O) : \ 915$(BLD)/frame.$(O) : \
904 $(SRC)/frame.c \ 916 $(SRC)/frame.c \
905 $(SRC)/buffer.h \
906 $(SRC)/commands.h \ 917 $(SRC)/commands.h \
907 $(SRC)/fontset.h \ 918 $(SRC)/fontset.h \
908 $(SRC)/termchar.h \ 919 $(SRC)/termchar.h \
909 $(BLOCKINPUT_H) \ 920 $(BLOCKINPUT_H) \
921 $(BUFFER_H) \
910 $(CHARACTER_H) \ 922 $(CHARACTER_H) \
911 $(CONFIG_H) \ 923 $(CONFIG_H) \
912 $(DISPEXTERN_H) \ 924 $(DISPEXTERN_H) \
@@ -920,8 +932,8 @@ $(BLD)/frame.$(O) : \
920 932
921$(BLD)/fringe.$(O) : \ 933$(BLD)/fringe.$(O) : \
922 $(SRC)/fringe.c \ 934 $(SRC)/fringe.c \
923 $(SRC)/buffer.h \
924 $(BLOCKINPUT_H) \ 935 $(BLOCKINPUT_H) \
936 $(BUFFER_H) \
925 $(CHARACTER_H) \ 937 $(CHARACTER_H) \
926 $(CONFIG_H) \ 938 $(CONFIG_H) \
927 $(DISPEXTERN_H) \ 939 $(DISPEXTERN_H) \
@@ -945,8 +957,8 @@ $(BLD)/gnutls.$(O) : \
945 957
946$(BLD)/xml.$(O) : \ 958$(BLD)/xml.$(O) : \
947 $(SRC)/xml.c \ 959 $(SRC)/xml.c \
948 $(SRC)/buffer.h \
949 $(SRC)/w32.h \ 960 $(SRC)/w32.h \
961 $(BUFFER_H) \
950 $(CHARACTER_H) \ 962 $(CHARACTER_H) \
951 $(CONFIG_H) \ 963 $(CONFIG_H) \
952 $(LISP_H) 964 $(LISP_H)
@@ -971,7 +983,6 @@ $(BLD)/image.$(O) : \
971 983
972$(BLD)/indent.$(O) : \ 984$(BLD)/indent.$(O) : \
973 $(SRC)/indent.c \ 985 $(SRC)/indent.c \
974 $(SRC)/buffer.h \
975 $(SRC)/category.h \ 986 $(SRC)/category.h \
976 $(SRC)/composite.h \ 987 $(SRC)/composite.h \
977 $(SRC)/disptab.h \ 988 $(SRC)/disptab.h \
@@ -979,6 +990,7 @@ $(BLD)/indent.$(O) : \
979 $(SRC)/region-cache.h \ 990 $(SRC)/region-cache.h \
980 $(SRC)/termchar.h \ 991 $(SRC)/termchar.h \
981 $(SRC)/termopts.h \ 992 $(SRC)/termopts.h \
993 $(BUFFER_H) \
982 $(CHARACTER_H) \ 994 $(CHARACTER_H) \
983 $(CONFIG_H) \ 995 $(CONFIG_H) \
984 $(DISPEXTERN_H) \ 996 $(DISPEXTERN_H) \
@@ -990,10 +1002,10 @@ $(BLD)/indent.$(O) : \
990 1002
991$(BLD)/insdel.$(O) : \ 1003$(BLD)/insdel.$(O) : \
992 $(SRC)/insdel.c \ 1004 $(SRC)/insdel.c \
993 $(SRC)/buffer.h \
994 $(SRC)/region-cache.h \ 1005 $(SRC)/region-cache.h \
995 $(GNU_LIB)/intprops.h \ 1006 $(GNU_LIB)/intprops.h \
996 $(BLOCKINPUT_H) \ 1007 $(BLOCKINPUT_H) \
1008 $(BUFFER_H) \
997 $(CHARACTER_H) \ 1009 $(CHARACTER_H) \
998 $(CONFIG_H) \ 1010 $(CONFIG_H) \
999 $(INTERVALS_H) \ 1011 $(INTERVALS_H) \
@@ -1002,10 +1014,10 @@ $(BLD)/insdel.$(O) : \
1002 1014
1003$(BLD)/intervals.$(O) : \ 1015$(BLD)/intervals.$(O) : \
1004 $(SRC)/intervals.c \ 1016 $(SRC)/intervals.c \
1005 $(SRC)/buffer.h \
1006 $(SRC)/keymap.h \ 1017 $(SRC)/keymap.h \
1007 $(SRC)/puresize.h \ 1018 $(SRC)/puresize.h \
1008 $(GNU_LIB)/intprops.h \ 1019 $(GNU_LIB)/intprops.h \
1020 $(BUFFER_H) \
1009 $(CHARACTER_H) \ 1021 $(CHARACTER_H) \
1010 $(CONFIG_H) \ 1022 $(CONFIG_H) \
1011 $(INTERVALS_H) \ 1023 $(INTERVALS_H) \
@@ -1014,7 +1026,6 @@ $(BLD)/intervals.$(O) : \
1014 1026
1015$(BLD)/keyboard.$(O) : \ 1027$(BLD)/keyboard.$(O) : \
1016 $(SRC)/keyboard.c \ 1028 $(SRC)/keyboard.c \
1017 $(SRC)/buffer.h \
1018 $(SRC)/commands.h \ 1029 $(SRC)/commands.h \
1019 $(SRC)/disptab.h \ 1030 $(SRC)/disptab.h \
1020 $(SRC)/keymap.h \ 1031 $(SRC)/keymap.h \
@@ -1028,6 +1039,7 @@ $(BLD)/keyboard.$(O) : \
1028 $(NT_INC)/unistd.h \ 1039 $(NT_INC)/unistd.h \
1029 $(ATIMER_H) \ 1040 $(ATIMER_H) \
1030 $(BLOCKINPUT_H) \ 1041 $(BLOCKINPUT_H) \
1042 $(BUFFER_H) \
1031 $(CHARACTER_H) \ 1043 $(CHARACTER_H) \
1032 $(CONFIG_H) \ 1044 $(CONFIG_H) \
1033 $(DISPEXTERN_H) \ 1045 $(DISPEXTERN_H) \
@@ -1043,11 +1055,11 @@ $(BLD)/keyboard.$(O) : \
1043 1055
1044$(BLD)/keymap.$(O) : \ 1056$(BLD)/keymap.$(O) : \
1045 $(SRC)/keymap.c \ 1057 $(SRC)/keymap.c \
1046 $(SRC)/buffer.h \
1047 $(SRC)/commands.h \ 1058 $(SRC)/commands.h \
1048 $(SRC)/keymap.h \ 1059 $(SRC)/keymap.h \
1049 $(SRC)/puresize.h \ 1060 $(SRC)/puresize.h \
1050 $(BLOCKINPUT_H) \ 1061 $(BLOCKINPUT_H) \
1062 $(BUFFER_H) \
1051 $(CHARACTER_H) \ 1063 $(CHARACTER_H) \
1052 $(CHARSET_H) \ 1064 $(CHARSET_H) \
1053 $(CONFIG_H) \ 1065 $(CONFIG_H) \
@@ -1064,13 +1076,13 @@ $(BLD)/lastfile.$(O) : \
1064 1076
1065$(BLD)/lread.$(O) : \ 1077$(BLD)/lread.$(O) : \
1066 $(SRC)/lread.c \ 1078 $(SRC)/lread.c \
1067 $(SRC)/buffer.h \
1068 $(SRC)/commands.h \ 1079 $(SRC)/commands.h \
1069 $(SRC)/epaths.h \ 1080 $(SRC)/epaths.h \
1070 $(NT_INC)/sys/file.h \ 1081 $(NT_INC)/sys/file.h \
1071 $(NT_INC)/sys/stat.h \ 1082 $(NT_INC)/sys/stat.h \
1072 $(NT_INC)/unistd.h \ 1083 $(NT_INC)/unistd.h \
1073 $(BLOCKINPUT_H) \ 1084 $(BLOCKINPUT_H) \
1085 $(BUFFER_H) \
1074 $(CHARACTER_H) \ 1086 $(CHARACTER_H) \
1075 $(CHARSET_H) \ 1087 $(CHARSET_H) \
1076 $(CODING_H) \ 1088 $(CODING_H) \
@@ -1083,9 +1095,9 @@ $(BLD)/lread.$(O) : \
1083 1095
1084$(BLD)/macros.$(O) : \ 1096$(BLD)/macros.$(O) : \
1085 $(SRC)/macros.c \ 1097 $(SRC)/macros.c \
1086 $(SRC)/buffer.h \
1087 $(SRC)/commands.h \ 1098 $(SRC)/commands.h \
1088 $(SRC)/macros.h \ 1099 $(SRC)/macros.h \
1100 $(BUFFER_H) \
1089 $(CHARACTER_H) \ 1101 $(CHARACTER_H) \
1090 $(CONFIG_H) \ 1102 $(CONFIG_H) \
1091 $(KEYBOARD_H) \ 1103 $(KEYBOARD_H) \
@@ -1094,7 +1106,7 @@ $(BLD)/macros.$(O) : \
1094 1106
1095$(BLD)/marker.$(O) : \ 1107$(BLD)/marker.$(O) : \
1096 $(SRC)/marker.c \ 1108 $(SRC)/marker.c \
1097 $(SRC)/buffer.h \ 1109 $(BUFFER_H) \
1098 $(CHARACTER_H) \ 1110 $(CHARACTER_H) \
1099 $(CONFIG_H) \ 1111 $(CONFIG_H) \
1100 $(LISP_H) 1112 $(LISP_H)
@@ -1115,10 +1127,10 @@ $(BLD)/menu.$(O) : \
1115 1127
1116$(BLD)/minibuf.$(O) : \ 1128$(BLD)/minibuf.$(O) : \
1117 $(SRC)/minibuf.c \ 1129 $(SRC)/minibuf.c \
1118 $(SRC)/buffer.h \
1119 $(SRC)/commands.h \ 1130 $(SRC)/commands.h \
1120 $(SRC)/keymap.h \ 1131 $(SRC)/keymap.h \
1121 $(SRC)/syntax.h \ 1132 $(SRC)/syntax.h \
1133 $(BUFFER_H) \
1122 $(CHARACTER_H) \ 1134 $(CHARACTER_H) \
1123 $(CONFIG_H) \ 1135 $(CONFIG_H) \
1124 $(DISPEXTERN_H) \ 1136 $(DISPEXTERN_H) \
@@ -1201,9 +1213,9 @@ $(BLD)/w32console.$(O) : \
1201 1213
1202$(BLD)/print.$(O) : \ 1214$(BLD)/print.$(O) : \
1203 $(SRC)/print.c \ 1215 $(SRC)/print.c \
1204 $(SRC)/buffer.h \
1205 $(SRC)/termchar.h \ 1216 $(SRC)/termchar.h \
1206 $(BLOCKINPUT_H) \ 1217 $(BLOCKINPUT_H) \
1218 $(BUFFER_H) \
1207 $(CHARACTER_H) \ 1219 $(CHARACTER_H) \
1208 $(CHARSET_H) \ 1220 $(CHARSET_H) \
1209 $(CONFIG_H) \ 1221 $(CONFIG_H) \
@@ -1220,7 +1232,6 @@ $(BLD)/print.$(O) : \
1220 1232
1221$(BLD)/process.$(O) : \ 1233$(BLD)/process.$(O) : \
1222 $(SRC)/process.c \ 1234 $(SRC)/process.c \
1223 $(SRC)/buffer.h \
1224 $(SRC)/commands.h \ 1235 $(SRC)/commands.h \
1225 $(SRC)/composite.h \ 1236 $(SRC)/composite.h \
1226 $(SRC)/gnutls.h \ 1237 $(SRC)/gnutls.h \
@@ -1237,6 +1248,7 @@ $(BLD)/process.$(O) : \
1237 $(NT_INC)/unistd.h \ 1248 $(NT_INC)/unistd.h \
1238 $(ATIMER_H) \ 1249 $(ATIMER_H) \
1239 $(BLOCKINPUT_H) \ 1250 $(BLOCKINPUT_H) \
1251 $(BUFFER_H) \
1240 $(CHARACTER_H) \ 1252 $(CHARACTER_H) \
1241 $(CODING_H) \ 1253 $(CODING_H) \
1242 $(CONFIG_H) \ 1254 $(CONFIG_H) \
@@ -1261,18 +1273,19 @@ $(BLD)/ralloc.$(O) : \
1261 1273
1262$(BLD)/regex.$(O) : \ 1274$(BLD)/regex.$(O) : \
1263 $(SRC)/regex.c \ 1275 $(SRC)/regex.c \
1264 $(SRC)/buffer.h \
1265 $(SRC)/category.h \ 1276 $(SRC)/category.h \
1266 $(SRC)/regex.h \ 1277 $(SRC)/regex.h \
1267 $(SRC)/syntax.h \ 1278 $(SRC)/syntax.h \
1279 $(NT_INC)/unistd.h \
1280 $(BUFFER_H) \
1268 $(CHARACTER_H) \ 1281 $(CHARACTER_H) \
1269 $(CONFIG_H) \ 1282 $(CONFIG_H) \
1270 $(LISP_H) 1283 $(LISP_H)
1271 1284
1272$(BLD)/region-cache.$(O) : \ 1285$(BLD)/region-cache.$(O) : \
1273 $(SRC)/region-cache.c \ 1286 $(SRC)/region-cache.c \
1274 $(SRC)/buffer.h \
1275 $(SRC)/region-cache.h \ 1287 $(SRC)/region-cache.h \
1288 $(BUFFER_H) \
1276 $(CHARACTER_H) \ 1289 $(CHARACTER_H) \
1277 $(CONFIG_H) \ 1290 $(CONFIG_H) \
1278 $(LISP_H) 1291 $(LISP_H)
@@ -1290,13 +1303,13 @@ $(BLD)/scroll.$(O) : \
1290 1303
1291$(BLD)/search.$(O) : \ 1304$(BLD)/search.$(O) : \
1292 $(SRC)/search.c \ 1305 $(SRC)/search.c \
1293 $(SRC)/buffer.h \
1294 $(SRC)/category.h \ 1306 $(SRC)/category.h \
1295 $(SRC)/commands.h \ 1307 $(SRC)/commands.h \
1296 $(SRC)/regex.h \ 1308 $(SRC)/regex.h \
1297 $(SRC)/region-cache.h \ 1309 $(SRC)/region-cache.h \
1298 $(SRC)/syntax.h \ 1310 $(SRC)/syntax.h \
1299 $(BLOCKINPUT_H) \ 1311 $(BLOCKINPUT_H) \
1312 $(BUFFER_H) \
1300 $(CHARACTER_H) \ 1313 $(CHARACTER_H) \
1301 $(CHARSET_H) \ 1314 $(CHARSET_H) \
1302 $(CONFIG_H) \ 1315 $(CONFIG_H) \
@@ -1314,12 +1327,12 @@ $(BLD)/sound.$(O) : \
1314 1327
1315$(BLD)/syntax.$(O) : \ 1328$(BLD)/syntax.$(O) : \
1316 $(SRC)/syntax.c \ 1329 $(SRC)/syntax.c \
1317 $(SRC)/buffer.h \
1318 $(SRC)/category.h \ 1330 $(SRC)/category.h \
1319 $(SRC)/commands.h \ 1331 $(SRC)/commands.h \
1320 $(SRC)/keymap.h \ 1332 $(SRC)/keymap.h \
1321 $(SRC)/regex.h \ 1333 $(SRC)/regex.h \
1322 $(SRC)/syntax.h \ 1334 $(SRC)/syntax.h \
1335 $(BUFFER_H) \
1323 $(CHARACTER_H) \ 1336 $(CHARACTER_H) \
1324 $(CONFIG_H) \ 1337 $(CONFIG_H) \
1325 $(INTERVALS_H) \ 1338 $(INTERVALS_H) \
@@ -1353,11 +1366,11 @@ $(BLD)/sysdep.$(O) : \
1353 $(SYSTIME_H) \ 1366 $(SYSTIME_H) \
1354 $(SYSTTY_H) \ 1367 $(SYSTTY_H) \
1355 $(TERMHOOKS_H) \ 1368 $(TERMHOOKS_H) \
1369 $(UTIMENS_H) \
1356 $(WINDOW_H) 1370 $(WINDOW_H)
1357 1371
1358$(BLD)/term.$(O) : \ 1372$(BLD)/term.$(O) : \
1359 $(SRC)/term.c \ 1373 $(SRC)/term.c \
1360 $(SRC)/buffer.h \
1361 $(SRC)/cm.h \ 1374 $(SRC)/cm.h \
1362 $(SRC)/composite.h \ 1375 $(SRC)/composite.h \
1363 $(SRC)/disptab.h \ 1376 $(SRC)/disptab.h \
@@ -1367,8 +1380,10 @@ $(BLD)/term.$(O) : \
1367 $(SRC)/termopts.h \ 1380 $(SRC)/termopts.h \
1368 $(SRC)/tparam.h \ 1381 $(SRC)/tparam.h \
1369 $(NT_INC)/sys/file.h \ 1382 $(NT_INC)/sys/file.h \
1383 $(NT_INC)/sys/time.h \
1370 $(NT_INC)/unistd.h \ 1384 $(NT_INC)/unistd.h \
1371 $(BLOCKINPUT_H) \ 1385 $(BLOCKINPUT_H) \
1386 $(BUFFER_H) \
1372 $(CHARACTER_H) \ 1387 $(CHARACTER_H) \
1373 $(CHARSET_H) \ 1388 $(CHARSET_H) \
1374 $(CODING_H) \ 1389 $(CODING_H) \
@@ -1395,7 +1410,7 @@ $(BLD)/terminal.$(O) : \
1395 1410
1396$(BLD)/textprop.$(O) : \ 1411$(BLD)/textprop.$(O) : \
1397 $(SRC)/textprop.c \ 1412 $(SRC)/textprop.c \
1398 $(SRC)/buffer.h \ 1413 $(BUFFER_H) \
1399 $(CHARACTER_H) \ 1414 $(CHARACTER_H) \
1400 $(CONFIG_H) \ 1415 $(CONFIG_H) \
1401 $(INTERVALS_H) \ 1416 $(INTERVALS_H) \
@@ -1410,8 +1425,8 @@ $(BLD)/tparam.$(O) : \
1410 1425
1411$(BLD)/undo.$(O) : \ 1426$(BLD)/undo.$(O) : \
1412 $(SRC)/undo.c \ 1427 $(SRC)/undo.c \
1413 $(SRC)/buffer.h \
1414 $(SRC)/commands.h \ 1428 $(SRC)/commands.h \
1429 $(BUFFER_H) \
1415 $(CHARACTER_H) \ 1430 $(CHARACTER_H) \
1416 $(CONFIG_H) \ 1431 $(CONFIG_H) \
1417 $(LISP_H) \ 1432 $(LISP_H) \
@@ -1431,13 +1446,13 @@ $(BLD)/vm-limit.$(O) : \
1431 1446
1432$(BLD)/window.$(O) : \ 1447$(BLD)/window.$(O) : \
1433 $(SRC)/window.c \ 1448 $(SRC)/window.c \
1434 $(SRC)/buffer.h \
1435 $(SRC)/commands.h \ 1449 $(SRC)/commands.h \
1436 $(SRC)/disptab.h \ 1450 $(SRC)/disptab.h \
1437 $(SRC)/indent.h \ 1451 $(SRC)/indent.h \
1438 $(SRC)/keymap.h \ 1452 $(SRC)/keymap.h \
1439 $(SRC)/termchar.h \ 1453 $(SRC)/termchar.h \
1440 $(BLOCKINPUT_H) \ 1454 $(BLOCKINPUT_H) \
1455 $(BUFFER_H) \
1441 $(CHARACTER_H) \ 1456 $(CHARACTER_H) \
1442 $(CONFIG_H) \ 1457 $(CONFIG_H) \
1443 $(DISPEXTERN_H) \ 1458 $(DISPEXTERN_H) \
@@ -1451,7 +1466,6 @@ $(BLD)/window.$(O) : \
1451 1466
1452$(BLD)/xdisp.$(O) : \ 1467$(BLD)/xdisp.$(O) : \
1453 $(SRC)/xdisp.c \ 1468 $(SRC)/xdisp.c \
1454 $(SRC)/buffer.h \
1455 $(SRC)/commands.h \ 1469 $(SRC)/commands.h \
1456 $(SRC)/disptab.h \ 1470 $(SRC)/disptab.h \
1457 $(SRC)/fontset.h \ 1471 $(SRC)/fontset.h \
@@ -1462,6 +1476,7 @@ $(BLD)/xdisp.$(O) : \
1462 $(SRC)/termchar.h \ 1476 $(SRC)/termchar.h \
1463 $(SRC)/termopts.h \ 1477 $(SRC)/termopts.h \
1464 $(BLOCKINPUT_H) \ 1478 $(BLOCKINPUT_H) \
1479 $(BUFFER_H) \
1465 $(CHARACTER_H) \ 1480 $(CHARACTER_H) \
1466 $(CHARSET_H) \ 1481 $(CHARSET_H) \
1467 $(CODING_H) \ 1482 $(CODING_H) \
@@ -1479,11 +1494,11 @@ $(BLD)/xdisp.$(O) : \
1479 1494
1480$(BLD)/xfaces.$(O) : \ 1495$(BLD)/xfaces.$(O) : \
1481 $(SRC)/xfaces.c \ 1496 $(SRC)/xfaces.c \
1482 $(SRC)/buffer.h \
1483 $(SRC)/fontset.h \ 1497 $(SRC)/fontset.h \
1484 $(SRC)/termchar.h \ 1498 $(SRC)/termchar.h \
1485 $(NT_INC)/sys/stat.h \ 1499 $(NT_INC)/sys/stat.h \
1486 $(BLOCKINPUT_H) \ 1500 $(BLOCKINPUT_H) \
1501 $(BUFFER_H) \
1487 $(CHARACTER_H) \ 1502 $(CHARACTER_H) \
1488 $(CHARSET_H) \ 1503 $(CHARSET_H) \
1489 $(CONFIG_H) \ 1504 $(CONFIG_H) \
@@ -1499,7 +1514,6 @@ $(BLD)/xfaces.$(O) : \
1499 1514
1500$(BLD)/w32fns.$(O) : \ 1515$(BLD)/w32fns.$(O) : \
1501 $(SRC)/w32fns.c \ 1516 $(SRC)/w32fns.c \
1502 $(SRC)/buffer.h \
1503 $(SRC)/ccl.h \ 1517 $(SRC)/ccl.h \
1504 $(SRC)/epaths.h \ 1518 $(SRC)/epaths.h \
1505 $(SRC)/fontset.h \ 1519 $(SRC)/fontset.h \
@@ -1507,6 +1521,7 @@ $(BLD)/w32fns.$(O) : \
1507 $(SRC)/w32font.h \ 1521 $(SRC)/w32font.h \
1508 $(SRC)/w32heap.h \ 1522 $(SRC)/w32heap.h \
1509 $(BLOCKINPUT_H) \ 1523 $(BLOCKINPUT_H) \
1524 $(BUFFER_H) \
1510 $(CHARACTER_H) \ 1525 $(CHARACTER_H) \
1511 $(CHARSET_H) \ 1526 $(CHARSET_H) \
1512 $(CODING_H) \ 1527 $(CODING_H) \
@@ -1524,10 +1539,10 @@ $(BLD)/w32fns.$(O) : \
1524 1539
1525$(BLD)/w32menu.$(O) : \ 1540$(BLD)/w32menu.$(O) : \
1526 $(SRC)/w32menu.c \ 1541 $(SRC)/w32menu.c \
1527 $(SRC)/buffer.h \
1528 $(SRC)/keymap.h \ 1542 $(SRC)/keymap.h \
1529 $(SRC)/w32heap.h \ 1543 $(SRC)/w32heap.h \
1530 $(BLOCKINPUT_H) \ 1544 $(BLOCKINPUT_H) \
1545 $(BUFFER_H) \
1531 $(CHARACTER_H) \ 1546 $(CHARACTER_H) \
1532 $(CHARSET_H) \ 1547 $(CHARSET_H) \
1533 $(CODING_H) \ 1548 $(CODING_H) \
@@ -1543,7 +1558,6 @@ $(BLD)/w32menu.$(O) : \
1543 1558
1544$(BLD)/w32term.$(O) : \ 1559$(BLD)/w32term.$(O) : \
1545 $(SRC)/w32term.c \ 1560 $(SRC)/w32term.c \
1546 $(SRC)/buffer.h \
1547 $(SRC)/ccl.h \ 1561 $(SRC)/ccl.h \
1548 $(SRC)/disptab.h \ 1562 $(SRC)/disptab.h \
1549 $(SRC)/fontset.h \ 1563 $(SRC)/fontset.h \
@@ -1555,6 +1569,7 @@ $(BLD)/w32term.$(O) : \
1555 $(NT_INC)/sys/stat.h \ 1569 $(NT_INC)/sys/stat.h \
1556 $(ATIMER_H) \ 1570 $(ATIMER_H) \
1557 $(BLOCKINPUT_H) \ 1571 $(BLOCKINPUT_H) \
1572 $(BUFFER_H) \
1558 $(CHARACTER_H) \ 1573 $(CHARACTER_H) \
1559 $(CHARSET_H) \ 1574 $(CHARSET_H) \
1560 $(CODING_H) \ 1575 $(CODING_H) \