diff options
| author | Juanma Barranquero | 2012-09-23 20:03:48 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-09-23 20:03:48 +0200 |
| commit | af0e9f75ea016190896133353f49596754e3dc73 (patch) | |
| tree | b052256e909a6bb892bb4b55fe2e93f1d180591f | |
| parent | 5101529e98c333b07d17dc891ba0a2e1669d82ac (diff) | |
| download | emacs-af0e9f75ea016190896133353f49596754e3dc73.tar.gz emacs-af0e9f75ea016190896133353f49596754e3dc73.zip | |
src/makefile.w32-in: Update dependencies.
| -rw-r--r-- | src/ChangeLog | 19 | ||||
| -rw-r--r-- | src/makefile.w32-in | 104 |
2 files changed, 72 insertions, 51 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a55a2f5514c..b17cb9ab60d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,22 @@ | |||
| 1 | 2012-09-23 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * makefile.w32-in (BLOCKINPUT_H): Remove. | ||
| 4 | (SYSSIGNAL_H): New macro. | ||
| 5 | ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O)) | ||
| 6 | ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O)) | ||
| 7 | ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O)) | ||
| 8 | ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O)) | ||
| 9 | ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O)) | ||
| 10 | ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O)) | ||
| 11 | ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O)) | ||
| 12 | ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O)) | ||
| 13 | ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O)) | ||
| 14 | ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O)) | ||
| 15 | ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O)) | ||
| 16 | ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O)) | ||
| 17 | ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O)) | ||
| 18 | ($(BLD)/w32xfns.$(O)): Update dependencies. | ||
| 19 | |||
| 1 | 2012-09-23 Eli Zaretskii <eliz@gnu.org> | 20 | 2012-09-23 Eli Zaretskii <eliz@gnu.org> |
| 2 | 21 | ||
| 3 | * .gdbinit: Set breakpoint on terminate_due_to_signal, not on | 22 | * .gdbinit: Set breakpoint on terminate_due_to_signal, not on |
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 24ecb2676da..f58ec1bb279 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -392,8 +392,6 @@ SYSTIME_H = $(SRC)/systime.h \ | |||
| 392 | ATIMER_H = $(SRC)/atimer.h \ | 392 | ATIMER_H = $(SRC)/atimer.h \ |
| 393 | $(NT_INC)/stdbool.h \ | 393 | $(NT_INC)/stdbool.h \ |
| 394 | $(SYSTIME_H) | 394 | $(SYSTIME_H) |
| 395 | BLOCKINPUT_H = $(SRC)/blockinput.h \ | ||
| 396 | $(ATIMER_H) | ||
| 397 | BUFFER_H = $(SRC)/buffer.h \ | 395 | BUFFER_H = $(SRC)/buffer.h \ |
| 398 | $(SYSTIME_H) | 396 | $(SYSTIME_H) |
| 399 | C_CTYPE_H = $(GNU_LIB)/c-ctype.h \ | 397 | C_CTYPE_H = $(GNU_LIB)/c-ctype.h \ |
| @@ -467,6 +465,8 @@ SOCKET_H = $(NT_INC)/sys/socket.h \ | |||
| 467 | $(SRC)/w32.h | 465 | $(SRC)/w32.h |
| 468 | STAT_TIME_H = $(GNU_LIB)/stat-time.h \ | 466 | STAT_TIME_H = $(GNU_LIB)/stat-time.h \ |
| 469 | $(NT_INC)/sys/stat.h | 467 | $(NT_INC)/sys/stat.h |
| 468 | SYSSIGNAL_H = $(SRC)/syssignal.h \ | ||
| 469 | $(NT_INC)/stdbool.h | ||
| 470 | SYSTTY_H = $(SRC)/systty.h \ | 470 | SYSTTY_H = $(SRC)/systty.h \ |
| 471 | $(NT_INC)/sys/ioctl.h \ | 471 | $(NT_INC)/sys/ioctl.h \ |
| 472 | $(NT_INC)/unistd.h | 472 | $(NT_INC)/unistd.h |
| @@ -481,11 +481,11 @@ WINDOW_H = $(SRC)/window.h \ | |||
| 481 | 481 | ||
| 482 | $(BLD)/alloc.$(O) : \ | 482 | $(BLD)/alloc.$(O) : \ |
| 483 | $(SRC)/alloc.c \ | 483 | $(SRC)/alloc.c \ |
| 484 | $(SRC)/blockinput.h \ | ||
| 484 | $(SRC)/puresize.h \ | 485 | $(SRC)/puresize.h \ |
| 485 | $(SRC)/w32.h \ | 486 | $(SRC)/w32.h \ |
| 486 | $(NT_INC)/unistd.h \ | 487 | $(NT_INC)/unistd.h \ |
| 487 | $(GNU_LIB)/verify.h \ | 488 | $(GNU_LIB)/verify.h \ |
| 488 | $(BLOCKINPUT_H) \ | ||
| 489 | $(BUFFER_H) \ | 489 | $(BUFFER_H) \ |
| 490 | $(CHARACTER_H) \ | 490 | $(CHARACTER_H) \ |
| 491 | $(CONFIG_H) \ | 491 | $(CONFIG_H) \ |
| @@ -499,12 +499,12 @@ $(BLD)/alloc.$(O) : \ | |||
| 499 | 499 | ||
| 500 | $(BLD)/atimer.$(O) : \ | 500 | $(BLD)/atimer.$(O) : \ |
| 501 | $(SRC)/atimer.c \ | 501 | $(SRC)/atimer.c \ |
| 502 | $(SRC)/syssignal.h \ | 502 | $(SRC)/blockinput.h \ |
| 503 | $(NT_INC)/unistd.h \ | 503 | $(NT_INC)/unistd.h \ |
| 504 | $(ATIMER_H) \ | 504 | $(ATIMER_H) \ |
| 505 | $(BLOCKINPUT_H) \ | ||
| 506 | $(CONFIG_H) \ | 505 | $(CONFIG_H) \ |
| 507 | $(LISP_H) \ | 506 | $(LISP_H) \ |
| 507 | $(SYSSIGNAL_H) \ | ||
| 508 | $(SYSTIME_H) | 508 | $(SYSTIME_H) |
| 509 | 509 | ||
| 510 | $(BLD)/bidi.$(O) : \ | 510 | $(BLD)/bidi.$(O) : \ |
| @@ -517,6 +517,7 @@ $(BLD)/bidi.$(O) : \ | |||
| 517 | 517 | ||
| 518 | $(BLD)/buffer.$(O) : \ | 518 | $(BLD)/buffer.$(O) : \ |
| 519 | $(SRC)/buffer.c \ | 519 | $(SRC)/buffer.c \ |
| 520 | $(SRC)/blockinput.h \ | ||
| 520 | $(SRC)/commands.h \ | 521 | $(SRC)/commands.h \ |
| 521 | $(SRC)/indent.h \ | 522 | $(SRC)/indent.h \ |
| 522 | $(SRC)/keymap.h \ | 523 | $(SRC)/keymap.h \ |
| @@ -525,7 +526,6 @@ $(BLD)/buffer.$(O) : \ | |||
| 525 | $(NT_INC)/sys/stat.h \ | 526 | $(NT_INC)/sys/stat.h \ |
| 526 | $(NT_INC)/unistd.h \ | 527 | $(NT_INC)/unistd.h \ |
| 527 | $(GNU_LIB)/verify.h \ | 528 | $(GNU_LIB)/verify.h \ |
| 528 | $(BLOCKINPUT_H) \ | ||
| 529 | $(BUFFER_H) \ | 529 | $(BUFFER_H) \ |
| 530 | $(CHARACTER_H) \ | 530 | $(CHARACTER_H) \ |
| 531 | $(CONFIG_H) \ | 531 | $(CONFIG_H) \ |
| @@ -557,14 +557,13 @@ $(BLD)/callint.$(O) : \ | |||
| 557 | 557 | ||
| 558 | $(BLD)/callproc.$(O) : \ | 558 | $(BLD)/callproc.$(O) : \ |
| 559 | $(SRC)/callproc.c \ | 559 | $(SRC)/callproc.c \ |
| 560 | $(SRC)/blockinput.h \ | ||
| 560 | $(SRC)/commands.h \ | 561 | $(SRC)/commands.h \ |
| 561 | $(SRC)/composite.h \ | 562 | $(SRC)/composite.h \ |
| 562 | $(SRC)/epaths.h \ | 563 | $(SRC)/epaths.h \ |
| 563 | $(SRC)/syssignal.h \ | ||
| 564 | $(SRC)/w32.h \ | 564 | $(SRC)/w32.h \ |
| 565 | $(NT_INC)/sys/file.h \ | 565 | $(NT_INC)/sys/file.h \ |
| 566 | $(NT_INC)/unistd.h \ | 566 | $(NT_INC)/unistd.h \ |
| 567 | $(BLOCKINPUT_H) \ | ||
| 568 | $(BUFFER_H) \ | 567 | $(BUFFER_H) \ |
| 569 | $(CCL_H) \ | 568 | $(CCL_H) \ |
| 570 | $(CHARACTER_H) \ | 569 | $(CHARACTER_H) \ |
| @@ -573,6 +572,7 @@ $(BLD)/callproc.$(O) : \ | |||
| 573 | $(FRAME_H) \ | 572 | $(FRAME_H) \ |
| 574 | $(LISP_H) \ | 573 | $(LISP_H) \ |
| 575 | $(PROCESS_H) \ | 574 | $(PROCESS_H) \ |
| 575 | $(SYSSIGNAL_H) \ | ||
| 576 | $(SYSTTY_H) \ | 576 | $(SYSTTY_H) \ |
| 577 | $(TERMHOOKS_H) | 577 | $(TERMHOOKS_H) |
| 578 | 578 | ||
| @@ -690,7 +690,6 @@ $(BLD)/data.$(O) : \ | |||
| 690 | $(SRC)/data.c \ | 690 | $(SRC)/data.c \ |
| 691 | $(SRC)/keymap.h \ | 691 | $(SRC)/keymap.h \ |
| 692 | $(SRC)/puresize.h \ | 692 | $(SRC)/puresize.h \ |
| 693 | $(SRC)/syssignal.h \ | ||
| 694 | $(GNU_LIB)/intprops.h \ | 693 | $(GNU_LIB)/intprops.h \ |
| 695 | $(BUFFER_H) \ | 694 | $(BUFFER_H) \ |
| 696 | $(CHARACTER_H) \ | 695 | $(CHARACTER_H) \ |
| @@ -699,16 +698,17 @@ $(BLD)/data.$(O) : \ | |||
| 699 | $(FRAME_H) \ | 698 | $(FRAME_H) \ |
| 700 | $(KEYBOARD_H) \ | 699 | $(KEYBOARD_H) \ |
| 701 | $(LISP_H) \ | 700 | $(LISP_H) \ |
| 701 | $(SYSSIGNAL_H) \ | ||
| 702 | $(TERMHOOKS_H) | 702 | $(TERMHOOKS_H) |
| 703 | 703 | ||
| 704 | $(BLD)/dired.$(O) : \ | 704 | $(BLD)/dired.$(O) : \ |
| 705 | $(SRC)/dired.c \ | 705 | $(SRC)/dired.c \ |
| 706 | $(SRC)/blockinput.h \ | ||
| 706 | $(SRC)/commands.h \ | 707 | $(SRC)/commands.h \ |
| 707 | $(SRC)/regex.h \ | 708 | $(SRC)/regex.h \ |
| 708 | $(NT_INC)/pwd.h \ | 709 | $(NT_INC)/pwd.h \ |
| 709 | $(NT_INC)/sys/stat.h \ | 710 | $(NT_INC)/sys/stat.h \ |
| 710 | $(NT_INC)/unistd.h \ | 711 | $(NT_INC)/unistd.h \ |
| 711 | $(BLOCKINPUT_H) \ | ||
| 712 | $(BUFFER_H) \ | 712 | $(BUFFER_H) \ |
| 713 | $(CHARACTER_H) \ | 713 | $(CHARACTER_H) \ |
| 714 | $(CHARSET_H) \ | 714 | $(CHARSET_H) \ |
| @@ -723,15 +723,14 @@ $(BLD)/dired.$(O) : \ | |||
| 723 | 723 | ||
| 724 | $(BLD)/dispnew.$(O) : \ | 724 | $(BLD)/dispnew.$(O) : \ |
| 725 | $(SRC)/dispnew.c \ | 725 | $(SRC)/dispnew.c \ |
| 726 | $(SRC)/blockinput.h \ | ||
| 726 | $(SRC)/cm.h \ | 727 | $(SRC)/cm.h \ |
| 727 | $(SRC)/commands.h \ | 728 | $(SRC)/commands.h \ |
| 728 | $(SRC)/disptab.h \ | 729 | $(SRC)/disptab.h \ |
| 729 | $(SRC)/indent.h \ | 730 | $(SRC)/indent.h \ |
| 730 | $(SRC)/syssignal.h \ | ||
| 731 | $(SRC)/termchar.h \ | 731 | $(SRC)/termchar.h \ |
| 732 | $(SRC)/termopts.h \ | 732 | $(SRC)/termopts.h \ |
| 733 | $(NT_INC)/unistd.h \ | 733 | $(NT_INC)/unistd.h \ |
| 734 | $(BLOCKINPUT_H) \ | ||
| 735 | $(BUFFER_H) \ | 734 | $(BUFFER_H) \ |
| 736 | $(CHARACTER_H) \ | 735 | $(CHARACTER_H) \ |
| 737 | $(CONFIG_H) \ | 736 | $(CONFIG_H) \ |
| @@ -741,6 +740,7 @@ $(BLD)/dispnew.$(O) : \ | |||
| 741 | $(KEYBOARD_H) \ | 740 | $(KEYBOARD_H) \ |
| 742 | $(LISP_H) \ | 741 | $(LISP_H) \ |
| 743 | $(PROCESS_H) \ | 742 | $(PROCESS_H) \ |
| 743 | $(SYSSIGNAL_H) \ | ||
| 744 | $(SYSTIME_H) \ | 744 | $(SYSTIME_H) \ |
| 745 | $(TERMHOOKS_H) \ | 745 | $(TERMHOOKS_H) \ |
| 746 | $(W32TERM_H) \ | 746 | $(W32TERM_H) \ |
| @@ -768,12 +768,12 @@ $(BLD)/doprnt.$(O) : \ | |||
| 768 | 768 | ||
| 769 | $(BLD)/editfns.$(O) : \ | 769 | $(BLD)/editfns.$(O) : \ |
| 770 | $(SRC)/editfns.c \ | 770 | $(SRC)/editfns.c \ |
| 771 | $(SRC)/blockinput.h \ | ||
| 771 | $(NT_INC)/pwd.h \ | 772 | $(NT_INC)/pwd.h \ |
| 772 | $(NT_INC)/unistd.h \ | 773 | $(NT_INC)/unistd.h \ |
| 773 | $(GNU_LIB)/intprops.h \ | 774 | $(GNU_LIB)/intprops.h \ |
| 774 | $(GNU_LIB)/strftime.h \ | 775 | $(GNU_LIB)/strftime.h \ |
| 775 | $(GNU_LIB)/verify.h \ | 776 | $(GNU_LIB)/verify.h \ |
| 776 | $(BLOCKINPUT_H) \ | ||
| 777 | $(BUFFER_H) \ | 777 | $(BUFFER_H) \ |
| 778 | $(CHARACTER_H) \ | 778 | $(CHARACTER_H) \ |
| 779 | $(CODING_H) \ | 779 | $(CODING_H) \ |
| @@ -786,16 +786,17 @@ $(BLD)/editfns.$(O) : \ | |||
| 786 | 786 | ||
| 787 | $(BLD)/emacs.$(O) : \ | 787 | $(BLD)/emacs.$(O) : \ |
| 788 | $(SRC)/emacs.c \ | 788 | $(SRC)/emacs.c \ |
| 789 | $(SRC)/blockinput.h \ | ||
| 789 | $(SRC)/commands.h \ | 790 | $(SRC)/commands.h \ |
| 790 | $(SRC)/gnutls.h \ | 791 | $(SRC)/gnutls.h \ |
| 791 | $(SRC)/keymap.h \ | 792 | $(SRC)/keymap.h \ |
| 792 | $(SRC)/syssignal.h \ | ||
| 793 | $(SRC)/unexec.h \ | 793 | $(SRC)/unexec.h \ |
| 794 | $(SRC)/w32.h \ | 794 | $(SRC)/w32.h \ |
| 795 | $(SRC)/w32heap.h \ | 795 | $(SRC)/w32heap.h \ |
| 796 | $(NT_INC)/sys/file.h \ | 796 | $(NT_INC)/sys/file.h \ |
| 797 | $(NT_INC)/unistd.h \ | 797 | $(NT_INC)/unistd.h \ |
| 798 | $(BLOCKINPUT_H) \ | 798 | $(GNU_LIB)/ignore-value.h \ |
| 799 | $(ATIMER_H) \ | ||
| 799 | $(BUFFER_H) \ | 800 | $(BUFFER_H) \ |
| 800 | $(CHARACTER_H) \ | 801 | $(CHARACTER_H) \ |
| 801 | $(CONFIG_H) \ | 802 | $(CONFIG_H) \ |
| @@ -804,6 +805,7 @@ $(BLD)/emacs.$(O) : \ | |||
| 804 | $(KEYBOARD_H) \ | 805 | $(KEYBOARD_H) \ |
| 805 | $(LISP_H) \ | 806 | $(LISP_H) \ |
| 806 | $(PROCESS_H) \ | 807 | $(PROCESS_H) \ |
| 808 | $(SYSSIGNAL_H) \ | ||
| 807 | $(SYSTTY_H) \ | 809 | $(SYSTTY_H) \ |
| 808 | $(TERMHOOKS_H) \ | 810 | $(TERMHOOKS_H) \ |
| 809 | $(W32TERM_H) \ | 811 | $(W32TERM_H) \ |
| @@ -811,8 +813,8 @@ $(BLD)/emacs.$(O) : \ | |||
| 811 | 813 | ||
| 812 | $(BLD)/eval.$(O) : \ | 814 | $(BLD)/eval.$(O) : \ |
| 813 | $(SRC)/eval.c \ | 815 | $(SRC)/eval.c \ |
| 816 | $(SRC)/blockinput.h \ | ||
| 814 | $(SRC)/commands.h \ | 817 | $(SRC)/commands.h \ |
| 815 | $(BLOCKINPUT_H) \ | ||
| 816 | $(CONFIG_H) \ | 818 | $(CONFIG_H) \ |
| 817 | $(DISPEXTERN_H) \ | 819 | $(DISPEXTERN_H) \ |
| 818 | $(FRAME_H) \ | 820 | $(FRAME_H) \ |
| @@ -821,11 +823,11 @@ $(BLD)/eval.$(O) : \ | |||
| 821 | 823 | ||
| 822 | $(BLD)/fileio.$(O) : \ | 824 | $(BLD)/fileio.$(O) : \ |
| 823 | $(SRC)/fileio.c \ | 825 | $(SRC)/fileio.c \ |
| 826 | $(SRC)/blockinput.h \ | ||
| 824 | $(SRC)/commands.h \ | 827 | $(SRC)/commands.h \ |
| 825 | $(NT_INC)/pwd.h \ | 828 | $(NT_INC)/pwd.h \ |
| 826 | $(NT_INC)/sys/stat.h \ | 829 | $(NT_INC)/sys/stat.h \ |
| 827 | $(NT_INC)/unistd.h \ | 830 | $(NT_INC)/unistd.h \ |
| 828 | $(BLOCKINPUT_H) \ | ||
| 829 | $(BUFFER_H) \ | 831 | $(BUFFER_H) \ |
| 830 | $(CHARACTER_H) \ | 832 | $(CHARACTER_H) \ |
| 831 | $(CODING_H) \ | 833 | $(CODING_H) \ |
| @@ -858,17 +860,16 @@ $(BLD)/firstfile.$(O) : \ | |||
| 858 | 860 | ||
| 859 | $(BLD)/floatfns.$(O) : \ | 861 | $(BLD)/floatfns.$(O) : \ |
| 860 | $(SRC)/floatfns.c \ | 862 | $(SRC)/floatfns.c \ |
| 861 | $(SRC)/syssignal.h \ | ||
| 862 | $(CONFIG_H) \ | 863 | $(CONFIG_H) \ |
| 863 | $(LISP_H) | 864 | $(LISP_H) |
| 864 | 865 | ||
| 865 | $(BLD)/fns.$(O) : \ | 866 | $(BLD)/fns.$(O) : \ |
| 866 | $(SRC)/fns.c \ | 867 | $(SRC)/fns.c \ |
| 868 | $(SRC)/blockinput.h \ | ||
| 867 | $(SRC)/commands.h \ | 869 | $(SRC)/commands.h \ |
| 868 | $(SRC)/keymap.h \ | 870 | $(SRC)/keymap.h \ |
| 869 | $(NT_INC)/unistd.h \ | 871 | $(NT_INC)/unistd.h \ |
| 870 | $(GNU_LIB)/intprops.h \ | 872 | $(GNU_LIB)/intprops.h \ |
| 871 | $(BLOCKINPUT_H) \ | ||
| 872 | $(BUFFER_H) \ | 873 | $(BUFFER_H) \ |
| 873 | $(CHARACTER_H) \ | 874 | $(CHARACTER_H) \ |
| 874 | $(CODING_H) \ | 875 | $(CODING_H) \ |
| @@ -902,8 +903,8 @@ $(BLD)/font.$(O) : \ | |||
| 902 | 903 | ||
| 903 | $(BLD)/fontset.$(O) : \ | 904 | $(BLD)/fontset.$(O) : \ |
| 904 | $(SRC)/fontset.c \ | 905 | $(SRC)/fontset.c \ |
| 906 | $(SRC)/blockinput.h \ | ||
| 905 | $(SRC)/fontset.h \ | 907 | $(SRC)/fontset.h \ |
| 906 | $(BLOCKINPUT_H) \ | ||
| 907 | $(BUFFER_H) \ | 908 | $(BUFFER_H) \ |
| 908 | $(CCL_H) \ | 909 | $(CCL_H) \ |
| 909 | $(CHARACTER_H) \ | 910 | $(CHARACTER_H) \ |
| @@ -921,10 +922,10 @@ $(BLD)/fontset.$(O) : \ | |||
| 921 | 922 | ||
| 922 | $(BLD)/frame.$(O) : \ | 923 | $(BLD)/frame.$(O) : \ |
| 923 | $(SRC)/frame.c \ | 924 | $(SRC)/frame.c \ |
| 925 | $(SRC)/blockinput.h \ | ||
| 924 | $(SRC)/commands.h \ | 926 | $(SRC)/commands.h \ |
| 925 | $(SRC)/fontset.h \ | 927 | $(SRC)/fontset.h \ |
| 926 | $(SRC)/termchar.h \ | 928 | $(SRC)/termchar.h \ |
| 927 | $(BLOCKINPUT_H) \ | ||
| 928 | $(BUFFER_H) \ | 929 | $(BUFFER_H) \ |
| 929 | $(CHARACTER_H) \ | 930 | $(CHARACTER_H) \ |
| 930 | $(CONFIG_H) \ | 931 | $(CONFIG_H) \ |
| @@ -940,7 +941,7 @@ $(BLD)/frame.$(O) : \ | |||
| 940 | 941 | ||
| 941 | $(BLD)/fringe.$(O) : \ | 942 | $(BLD)/fringe.$(O) : \ |
| 942 | $(SRC)/fringe.c \ | 943 | $(SRC)/fringe.c \ |
| 943 | $(BLOCKINPUT_H) \ | 944 | $(SRC)/blockinput.h \ |
| 944 | $(BUFFER_H) \ | 945 | $(BUFFER_H) \ |
| 945 | $(CHARACTER_H) \ | 946 | $(CHARACTER_H) \ |
| 946 | $(CONFIG_H) \ | 947 | $(CONFIG_H) \ |
| @@ -973,10 +974,10 @@ $(BLD)/xml.$(O) : \ | |||
| 973 | 974 | ||
| 974 | $(BLD)/image.$(O) : \ | 975 | $(BLD)/image.$(O) : \ |
| 975 | $(SRC)/image.c \ | 976 | $(SRC)/image.c \ |
| 977 | $(SRC)/blockinput.h \ | ||
| 976 | $(SRC)/epaths.h \ | 978 | $(SRC)/epaths.h \ |
| 977 | $(SRC)/w32.h \ | 979 | $(SRC)/w32.h \ |
| 978 | $(NT_INC)/unistd.h \ | 980 | $(NT_INC)/unistd.h \ |
| 979 | $(BLOCKINPUT_H) \ | ||
| 980 | $(CHARACTER_H) \ | 981 | $(CHARACTER_H) \ |
| 981 | $(CODING_H) \ | 982 | $(CODING_H) \ |
| 982 | $(CONFIG_H) \ | 983 | $(CONFIG_H) \ |
| @@ -1011,9 +1012,9 @@ $(BLD)/indent.$(O) : \ | |||
| 1011 | 1012 | ||
| 1012 | $(BLD)/insdel.$(O) : \ | 1013 | $(BLD)/insdel.$(O) : \ |
| 1013 | $(SRC)/insdel.c \ | 1014 | $(SRC)/insdel.c \ |
| 1015 | $(SRC)/blockinput.h \ | ||
| 1014 | $(SRC)/region-cache.h \ | 1016 | $(SRC)/region-cache.h \ |
| 1015 | $(GNU_LIB)/intprops.h \ | 1017 | $(GNU_LIB)/intprops.h \ |
| 1016 | $(BLOCKINPUT_H) \ | ||
| 1017 | $(BUFFER_H) \ | 1018 | $(BUFFER_H) \ |
| 1018 | $(CHARACTER_H) \ | 1019 | $(CHARACTER_H) \ |
| 1019 | $(CONFIG_H) \ | 1020 | $(CONFIG_H) \ |
| @@ -1035,19 +1036,18 @@ $(BLD)/intervals.$(O) : \ | |||
| 1035 | 1036 | ||
| 1036 | $(BLD)/keyboard.$(O) : \ | 1037 | $(BLD)/keyboard.$(O) : \ |
| 1037 | $(SRC)/keyboard.c \ | 1038 | $(SRC)/keyboard.c \ |
| 1039 | $(SRC)/blockinput.h \ | ||
| 1038 | $(SRC)/commands.h \ | 1040 | $(SRC)/commands.h \ |
| 1039 | $(SRC)/disptab.h \ | 1041 | $(SRC)/disptab.h \ |
| 1040 | $(SRC)/keymap.h \ | 1042 | $(SRC)/keymap.h \ |
| 1041 | $(SRC)/macros.h \ | 1043 | $(SRC)/macros.h \ |
| 1042 | $(SRC)/puresize.h \ | 1044 | $(SRC)/puresize.h \ |
| 1043 | $(SRC)/syntax.h \ | 1045 | $(SRC)/syntax.h \ |
| 1044 | $(SRC)/syssignal.h \ | ||
| 1045 | $(SRC)/termchar.h \ | 1046 | $(SRC)/termchar.h \ |
| 1046 | $(SRC)/termopts.h \ | 1047 | $(SRC)/termopts.h \ |
| 1047 | $(NT_INC)/sys/ioctl.h \ | 1048 | $(NT_INC)/sys/ioctl.h \ |
| 1048 | $(NT_INC)/unistd.h \ | 1049 | $(NT_INC)/unistd.h \ |
| 1049 | $(ATIMER_H) \ | 1050 | $(ATIMER_H) \ |
| 1050 | $(BLOCKINPUT_H) \ | ||
| 1051 | $(BUFFER_H) \ | 1051 | $(BUFFER_H) \ |
| 1052 | $(CHARACTER_H) \ | 1052 | $(CHARACTER_H) \ |
| 1053 | $(CONFIG_H) \ | 1053 | $(CONFIG_H) \ |
| @@ -1057,6 +1057,7 @@ $(BLD)/keyboard.$(O) : \ | |||
| 1057 | $(KEYBOARD_H) \ | 1057 | $(KEYBOARD_H) \ |
| 1058 | $(LISP_H) \ | 1058 | $(LISP_H) \ |
| 1059 | $(PROCESS_H) \ | 1059 | $(PROCESS_H) \ |
| 1060 | $(SYSSIGNAL_H) \ | ||
| 1060 | $(SYSTIME_H) \ | 1061 | $(SYSTIME_H) \ |
| 1061 | $(TERMHOOKS_H) \ | 1062 | $(TERMHOOKS_H) \ |
| 1062 | $(W32TERM_H) \ | 1063 | $(W32TERM_H) \ |
| @@ -1064,10 +1065,10 @@ $(BLD)/keyboard.$(O) : \ | |||
| 1064 | 1065 | ||
| 1065 | $(BLD)/keymap.$(O) : \ | 1066 | $(BLD)/keymap.$(O) : \ |
| 1066 | $(SRC)/keymap.c \ | 1067 | $(SRC)/keymap.c \ |
| 1068 | $(SRC)/blockinput.h \ | ||
| 1067 | $(SRC)/commands.h \ | 1069 | $(SRC)/commands.h \ |
| 1068 | $(SRC)/keymap.h \ | 1070 | $(SRC)/keymap.h \ |
| 1069 | $(SRC)/puresize.h \ | 1071 | $(SRC)/puresize.h \ |
| 1070 | $(BLOCKINPUT_H) \ | ||
| 1071 | $(BUFFER_H) \ | 1072 | $(BUFFER_H) \ |
| 1072 | $(CHARACTER_H) \ | 1073 | $(CHARACTER_H) \ |
| 1073 | $(CHARSET_H) \ | 1074 | $(CHARSET_H) \ |
| @@ -1085,12 +1086,12 @@ $(BLD)/lastfile.$(O) : \ | |||
| 1085 | 1086 | ||
| 1086 | $(BLD)/lread.$(O) : \ | 1087 | $(BLD)/lread.$(O) : \ |
| 1087 | $(SRC)/lread.c \ | 1088 | $(SRC)/lread.c \ |
| 1089 | $(SRC)/blockinput.h \ | ||
| 1088 | $(SRC)/commands.h \ | 1090 | $(SRC)/commands.h \ |
| 1089 | $(SRC)/epaths.h \ | 1091 | $(SRC)/epaths.h \ |
| 1090 | $(NT_INC)/sys/file.h \ | 1092 | $(NT_INC)/sys/file.h \ |
| 1091 | $(NT_INC)/sys/stat.h \ | 1093 | $(NT_INC)/sys/stat.h \ |
| 1092 | $(NT_INC)/unistd.h \ | 1094 | $(NT_INC)/unistd.h \ |
| 1093 | $(BLOCKINPUT_H) \ | ||
| 1094 | $(BUFFER_H) \ | 1095 | $(BUFFER_H) \ |
| 1095 | $(CHARACTER_H) \ | 1096 | $(CHARACTER_H) \ |
| 1096 | $(CHARSET_H) \ | 1097 | $(CHARSET_H) \ |
| @@ -1123,8 +1124,8 @@ $(BLD)/marker.$(O) : \ | |||
| 1123 | 1124 | ||
| 1124 | $(BLD)/menu.$(O) : \ | 1125 | $(BLD)/menu.$(O) : \ |
| 1125 | $(SRC)/menu.c \ | 1126 | $(SRC)/menu.c \ |
| 1127 | $(SRC)/blockinput.h \ | ||
| 1126 | $(SRC)/keymap.h \ | 1128 | $(SRC)/keymap.h \ |
| 1127 | $(BLOCKINPUT_H) \ | ||
| 1128 | $(CONFIG_H) \ | 1129 | $(CONFIG_H) \ |
| 1129 | $(DISPEXTERN_H) \ | 1130 | $(DISPEXTERN_H) \ |
| 1130 | $(FRAME_H) \ | 1131 | $(FRAME_H) \ |
| @@ -1178,10 +1179,10 @@ $(BLD)/w32heap.$(O) : \ | |||
| 1178 | 1179 | ||
| 1179 | $(BLD)/w32inevt.$(O) : \ | 1180 | $(BLD)/w32inevt.$(O) : \ |
| 1180 | $(SRC)/w32inevt.c \ | 1181 | $(SRC)/w32inevt.c \ |
| 1182 | $(SRC)/blockinput.h \ | ||
| 1181 | $(SRC)/termchar.h \ | 1183 | $(SRC)/termchar.h \ |
| 1182 | $(SRC)/w32heap.h \ | 1184 | $(SRC)/w32heap.h \ |
| 1183 | $(SRC)/w32inevt.h \ | 1185 | $(SRC)/w32inevt.h \ |
| 1184 | $(BLOCKINPUT_H) \ | ||
| 1185 | $(CONFIG_H) \ | 1186 | $(CONFIG_H) \ |
| 1186 | $(DISPEXTERN_H) \ | 1187 | $(DISPEXTERN_H) \ |
| 1187 | $(FRAME_H) \ | 1188 | $(FRAME_H) \ |
| @@ -1193,7 +1194,6 @@ $(BLD)/w32inevt.$(O) : \ | |||
| 1193 | 1194 | ||
| 1194 | $(BLD)/w32proc.$(O) : \ | 1195 | $(BLD)/w32proc.$(O) : \ |
| 1195 | $(SRC)/w32proc.c \ | 1196 | $(SRC)/w32proc.c \ |
| 1196 | $(SRC)/syssignal.h \ | ||
| 1197 | $(SRC)/syswait.h \ | 1197 | $(SRC)/syswait.h \ |
| 1198 | $(SRC)/w32.h \ | 1198 | $(SRC)/w32.h \ |
| 1199 | $(SRC)/w32heap.h \ | 1199 | $(SRC)/w32heap.h \ |
| @@ -1205,6 +1205,7 @@ $(BLD)/w32proc.$(O) : \ | |||
| 1205 | $(LANGINFO_H) \ | 1205 | $(LANGINFO_H) \ |
| 1206 | $(LISP_H) \ | 1206 | $(LISP_H) \ |
| 1207 | $(PROCESS_H) \ | 1207 | $(PROCESS_H) \ |
| 1208 | $(SYSSIGNAL_H) \ | ||
| 1208 | $(SYSTIME_H) \ | 1209 | $(SYSTIME_H) \ |
| 1209 | $(W32TERM_H) | 1210 | $(W32TERM_H) |
| 1210 | 1211 | ||
| @@ -1225,8 +1226,8 @@ $(BLD)/w32console.$(O) : \ | |||
| 1225 | 1226 | ||
| 1226 | $(BLD)/print.$(O) : \ | 1227 | $(BLD)/print.$(O) : \ |
| 1227 | $(SRC)/print.c \ | 1228 | $(SRC)/print.c \ |
| 1229 | $(SRC)/blockinput.h \ | ||
| 1228 | $(SRC)/termchar.h \ | 1230 | $(SRC)/termchar.h \ |
| 1229 | $(BLOCKINPUT_H) \ | ||
| 1230 | $(BUFFER_H) \ | 1231 | $(BUFFER_H) \ |
| 1231 | $(CHARACTER_H) \ | 1232 | $(CHARACTER_H) \ |
| 1232 | $(CHARSET_H) \ | 1233 | $(CHARSET_H) \ |
| @@ -1244,11 +1245,11 @@ $(BLD)/print.$(O) : \ | |||
| 1244 | 1245 | ||
| 1245 | $(BLD)/process.$(O) : \ | 1246 | $(BLD)/process.$(O) : \ |
| 1246 | $(SRC)/process.c \ | 1247 | $(SRC)/process.c \ |
| 1248 | $(SRC)/blockinput.h \ | ||
| 1247 | $(SRC)/commands.h \ | 1249 | $(SRC)/commands.h \ |
| 1248 | $(SRC)/composite.h \ | 1250 | $(SRC)/composite.h \ |
| 1249 | $(SRC)/gnutls.h \ | 1251 | $(SRC)/gnutls.h \ |
| 1250 | $(SRC)/sysselect.h \ | 1252 | $(SRC)/sysselect.h \ |
| 1251 | $(SRC)/syssignal.h \ | ||
| 1252 | $(SRC)/syswait.h \ | 1253 | $(SRC)/syswait.h \ |
| 1253 | $(SRC)/termopts.h \ | 1254 | $(SRC)/termopts.h \ |
| 1254 | $(NT_INC)/arpa/inet.h \ | 1255 | $(NT_INC)/arpa/inet.h \ |
| @@ -1259,7 +1260,6 @@ $(BLD)/process.$(O) : \ | |||
| 1259 | $(NT_INC)/sys/stat.h \ | 1260 | $(NT_INC)/sys/stat.h \ |
| 1260 | $(NT_INC)/unistd.h \ | 1261 | $(NT_INC)/unistd.h \ |
| 1261 | $(ATIMER_H) \ | 1262 | $(ATIMER_H) \ |
| 1262 | $(BLOCKINPUT_H) \ | ||
| 1263 | $(BUFFER_H) \ | 1263 | $(BUFFER_H) \ |
| 1264 | $(CHARACTER_H) \ | 1264 | $(CHARACTER_H) \ |
| 1265 | $(CODING_H) \ | 1265 | $(CODING_H) \ |
| @@ -1270,6 +1270,7 @@ $(BLD)/process.$(O) : \ | |||
| 1270 | $(LISP_H) \ | 1270 | $(LISP_H) \ |
| 1271 | $(PROCESS_H) \ | 1271 | $(PROCESS_H) \ |
| 1272 | $(SOCKET_H) \ | 1272 | $(SOCKET_H) \ |
| 1273 | $(SYSSIGNAL_H) \ | ||
| 1273 | $(SYSTIME_H) \ | 1274 | $(SYSTIME_H) \ |
| 1274 | $(SYSTTY_H) \ | 1275 | $(SYSTTY_H) \ |
| 1275 | $(TERMHOOKS_H) \ | 1276 | $(TERMHOOKS_H) \ |
| @@ -1278,9 +1279,9 @@ $(BLD)/process.$(O) : \ | |||
| 1278 | 1279 | ||
| 1279 | $(BLD)/ralloc.$(O) : \ | 1280 | $(BLD)/ralloc.$(O) : \ |
| 1280 | $(SRC)/ralloc.c \ | 1281 | $(SRC)/ralloc.c \ |
| 1282 | $(SRC)/blockinput.h \ | ||
| 1281 | $(SRC)/getpagesize.h \ | 1283 | $(SRC)/getpagesize.h \ |
| 1282 | $(NT_INC)/unistd.h \ | 1284 | $(NT_INC)/unistd.h \ |
| 1283 | $(BLOCKINPUT_H) \ | ||
| 1284 | $(CONFIG_H) \ | 1285 | $(CONFIG_H) \ |
| 1285 | $(LISP_H) | 1286 | $(LISP_H) |
| 1286 | 1287 | ||
| @@ -1315,12 +1316,12 @@ $(BLD)/scroll.$(O) : \ | |||
| 1315 | 1316 | ||
| 1316 | $(BLD)/search.$(O) : \ | 1317 | $(BLD)/search.$(O) : \ |
| 1317 | $(SRC)/search.c \ | 1318 | $(SRC)/search.c \ |
| 1319 | $(SRC)/blockinput.h \ | ||
| 1318 | $(SRC)/category.h \ | 1320 | $(SRC)/category.h \ |
| 1319 | $(SRC)/commands.h \ | 1321 | $(SRC)/commands.h \ |
| 1320 | $(SRC)/regex.h \ | 1322 | $(SRC)/regex.h \ |
| 1321 | $(SRC)/region-cache.h \ | 1323 | $(SRC)/region-cache.h \ |
| 1322 | $(SRC)/syntax.h \ | 1324 | $(SRC)/syntax.h \ |
| 1323 | $(BLOCKINPUT_H) \ | ||
| 1324 | $(BUFFER_H) \ | 1325 | $(BUFFER_H) \ |
| 1325 | $(CHARACTER_H) \ | 1326 | $(CHARACTER_H) \ |
| 1326 | $(CHARSET_H) \ | 1327 | $(CHARSET_H) \ |
| @@ -1330,12 +1331,12 @@ $(BLD)/search.$(O) : \ | |||
| 1330 | 1331 | ||
| 1331 | $(BLD)/sound.$(O) : \ | 1332 | $(BLD)/sound.$(O) : \ |
| 1332 | $(SRC)/sound.c \ | 1333 | $(SRC)/sound.c \ |
| 1333 | $(SRC)/syssignal.h \ | ||
| 1334 | $(NT_INC)/unistd.h \ | 1334 | $(NT_INC)/unistd.h \ |
| 1335 | $(ATIMER_H) \ | 1335 | $(ATIMER_H) \ |
| 1336 | $(CONFIG_H) \ | 1336 | $(CONFIG_H) \ |
| 1337 | $(DISPEXTERN_H) \ | 1337 | $(DISPEXTERN_H) \ |
| 1338 | $(LISP_H) | 1338 | $(LISP_H) \ |
| 1339 | $(SYSSIGNAL_H) | ||
| 1339 | 1340 | ||
| 1340 | $(BLD)/syntax.$(O) : \ | 1341 | $(BLD)/syntax.$(O) : \ |
| 1341 | $(SRC)/syntax.c \ | 1342 | $(SRC)/syntax.c \ |
| @@ -1352,9 +1353,9 @@ $(BLD)/syntax.$(O) : \ | |||
| 1352 | 1353 | ||
| 1353 | $(BLD)/sysdep.$(O) : \ | 1354 | $(BLD)/sysdep.$(O) : \ |
| 1354 | $(SRC)/sysdep.c \ | 1355 | $(SRC)/sysdep.c \ |
| 1356 | $(SRC)/blockinput.h \ | ||
| 1355 | $(SRC)/cm.h \ | 1357 | $(SRC)/cm.h \ |
| 1356 | $(SRC)/sysselect.h \ | 1358 | $(SRC)/sysselect.h \ |
| 1357 | $(SRC)/syssignal.h \ | ||
| 1358 | $(SRC)/syswait.h \ | 1359 | $(SRC)/syswait.h \ |
| 1359 | $(SRC)/termchar.h \ | 1360 | $(SRC)/termchar.h \ |
| 1360 | $(SRC)/termopts.h \ | 1361 | $(SRC)/termopts.h \ |
| @@ -1367,7 +1368,6 @@ $(BLD)/sysdep.$(O) : \ | |||
| 1367 | $(GNU_LIB)/execinfo.h \ | 1368 | $(GNU_LIB)/execinfo.h \ |
| 1368 | $(GNU_LIB)/ignore-value.h \ | 1369 | $(GNU_LIB)/ignore-value.h \ |
| 1369 | $(GNU_LIB)/utimens.h \ | 1370 | $(GNU_LIB)/utimens.h \ |
| 1370 | $(BLOCKINPUT_H) \ | ||
| 1371 | $(CAREADLINKAT_H) \ | 1371 | $(CAREADLINKAT_H) \ |
| 1372 | $(CONFIG_H) \ | 1372 | $(CONFIG_H) \ |
| 1373 | $(C_CTYPE_H) \ | 1373 | $(C_CTYPE_H) \ |
| @@ -1378,6 +1378,7 @@ $(BLD)/sysdep.$(O) : \ | |||
| 1378 | $(LISP_H) \ | 1378 | $(LISP_H) \ |
| 1379 | $(PROCESS_H) \ | 1379 | $(PROCESS_H) \ |
| 1380 | $(SOCKET_H) \ | 1380 | $(SOCKET_H) \ |
| 1381 | $(SYSSIGNAL_H) \ | ||
| 1381 | $(SYSTIME_H) \ | 1382 | $(SYSTIME_H) \ |
| 1382 | $(SYSTTY_H) \ | 1383 | $(SYSTTY_H) \ |
| 1383 | $(TERMHOOKS_H) \ | 1384 | $(TERMHOOKS_H) \ |
| @@ -1385,18 +1386,17 @@ $(BLD)/sysdep.$(O) : \ | |||
| 1385 | 1386 | ||
| 1386 | $(BLD)/term.$(O) : \ | 1387 | $(BLD)/term.$(O) : \ |
| 1387 | $(SRC)/term.c \ | 1388 | $(SRC)/term.c \ |
| 1389 | $(SRC)/blockinput.h \ | ||
| 1388 | $(SRC)/cm.h \ | 1390 | $(SRC)/cm.h \ |
| 1389 | $(SRC)/composite.h \ | 1391 | $(SRC)/composite.h \ |
| 1390 | $(SRC)/disptab.h \ | 1392 | $(SRC)/disptab.h \ |
| 1391 | $(SRC)/keymap.h \ | 1393 | $(SRC)/keymap.h \ |
| 1392 | $(SRC)/syssignal.h \ | ||
| 1393 | $(SRC)/termchar.h \ | 1394 | $(SRC)/termchar.h \ |
| 1394 | $(SRC)/termopts.h \ | 1395 | $(SRC)/termopts.h \ |
| 1395 | $(SRC)/tparam.h \ | 1396 | $(SRC)/tparam.h \ |
| 1396 | $(NT_INC)/sys/file.h \ | 1397 | $(NT_INC)/sys/file.h \ |
| 1397 | $(NT_INC)/sys/time.h \ | 1398 | $(NT_INC)/sys/time.h \ |
| 1398 | $(NT_INC)/unistd.h \ | 1399 | $(NT_INC)/unistd.h \ |
| 1399 | $(BLOCKINPUT_H) \ | ||
| 1400 | $(BUFFER_H) \ | 1400 | $(BUFFER_H) \ |
| 1401 | $(CHARACTER_H) \ | 1401 | $(CHARACTER_H) \ |
| 1402 | $(CHARSET_H) \ | 1402 | $(CHARSET_H) \ |
| @@ -1407,6 +1407,7 @@ $(BLD)/term.$(O) : \ | |||
| 1407 | $(INTERVALS_H) \ | 1407 | $(INTERVALS_H) \ |
| 1408 | $(KEYBOARD_H) \ | 1408 | $(KEYBOARD_H) \ |
| 1409 | $(LISP_H) \ | 1409 | $(LISP_H) \ |
| 1410 | $(SYSSIGNAL_H) \ | ||
| 1410 | $(SYSTTY_H) \ | 1411 | $(SYSTTY_H) \ |
| 1411 | $(TERMHOOKS_H) \ | 1412 | $(TERMHOOKS_H) \ |
| 1412 | $(WINDOW_H) | 1413 | $(WINDOW_H) |
| @@ -1461,12 +1462,12 @@ $(BLD)/vm-limit.$(O) : \ | |||
| 1461 | 1462 | ||
| 1462 | $(BLD)/window.$(O) : \ | 1463 | $(BLD)/window.$(O) : \ |
| 1463 | $(SRC)/window.c \ | 1464 | $(SRC)/window.c \ |
| 1465 | $(SRC)/blockinput.h \ | ||
| 1464 | $(SRC)/commands.h \ | 1466 | $(SRC)/commands.h \ |
| 1465 | $(SRC)/disptab.h \ | 1467 | $(SRC)/disptab.h \ |
| 1466 | $(SRC)/indent.h \ | 1468 | $(SRC)/indent.h \ |
| 1467 | $(SRC)/keymap.h \ | 1469 | $(SRC)/keymap.h \ |
| 1468 | $(SRC)/termchar.h \ | 1470 | $(SRC)/termchar.h \ |
| 1469 | $(BLOCKINPUT_H) \ | ||
| 1470 | $(BUFFER_H) \ | 1471 | $(BUFFER_H) \ |
| 1471 | $(CHARACTER_H) \ | 1472 | $(CHARACTER_H) \ |
| 1472 | $(CONFIG_H) \ | 1473 | $(CONFIG_H) \ |
| @@ -1481,6 +1482,7 @@ $(BLD)/window.$(O) : \ | |||
| 1481 | 1482 | ||
| 1482 | $(BLD)/xdisp.$(O) : \ | 1483 | $(BLD)/xdisp.$(O) : \ |
| 1483 | $(SRC)/xdisp.c \ | 1484 | $(SRC)/xdisp.c \ |
| 1485 | $(SRC)/blockinput.h \ | ||
| 1484 | $(SRC)/commands.h \ | 1486 | $(SRC)/commands.h \ |
| 1485 | $(SRC)/disptab.h \ | 1487 | $(SRC)/disptab.h \ |
| 1486 | $(SRC)/fontset.h \ | 1488 | $(SRC)/fontset.h \ |
| @@ -1490,7 +1492,7 @@ $(BLD)/xdisp.$(O) : \ | |||
| 1490 | $(SRC)/region-cache.h \ | 1492 | $(SRC)/region-cache.h \ |
| 1491 | $(SRC)/termchar.h \ | 1493 | $(SRC)/termchar.h \ |
| 1492 | $(SRC)/termopts.h \ | 1494 | $(SRC)/termopts.h \ |
| 1493 | $(BLOCKINPUT_H) \ | 1495 | $(ATIMER_H) \ |
| 1494 | $(BUFFER_H) \ | 1496 | $(BUFFER_H) \ |
| 1495 | $(CHARACTER_H) \ | 1497 | $(CHARACTER_H) \ |
| 1496 | $(CHARSET_H) \ | 1498 | $(CHARSET_H) \ |
| @@ -1509,10 +1511,10 @@ $(BLD)/xdisp.$(O) : \ | |||
| 1509 | 1511 | ||
| 1510 | $(BLD)/xfaces.$(O) : \ | 1512 | $(BLD)/xfaces.$(O) : \ |
| 1511 | $(SRC)/xfaces.c \ | 1513 | $(SRC)/xfaces.c \ |
| 1514 | $(SRC)/blockinput.h \ | ||
| 1512 | $(SRC)/fontset.h \ | 1515 | $(SRC)/fontset.h \ |
| 1513 | $(SRC)/termchar.h \ | 1516 | $(SRC)/termchar.h \ |
| 1514 | $(NT_INC)/sys/stat.h \ | 1517 | $(NT_INC)/sys/stat.h \ |
| 1515 | $(BLOCKINPUT_H) \ | ||
| 1516 | $(BUFFER_H) \ | 1518 | $(BUFFER_H) \ |
| 1517 | $(CHARACTER_H) \ | 1519 | $(CHARACTER_H) \ |
| 1518 | $(CHARSET_H) \ | 1520 | $(CHARSET_H) \ |
| @@ -1530,11 +1532,11 @@ $(BLD)/xfaces.$(O) : \ | |||
| 1530 | 1532 | ||
| 1531 | $(BLD)/w32fns.$(O) : \ | 1533 | $(BLD)/w32fns.$(O) : \ |
| 1532 | $(SRC)/w32fns.c \ | 1534 | $(SRC)/w32fns.c \ |
| 1535 | $(SRC)/blockinput.h \ | ||
| 1533 | $(SRC)/epaths.h \ | 1536 | $(SRC)/epaths.h \ |
| 1534 | $(SRC)/fontset.h \ | 1537 | $(SRC)/fontset.h \ |
| 1535 | $(SRC)/w32.h \ | 1538 | $(SRC)/w32.h \ |
| 1536 | $(SRC)/w32heap.h \ | 1539 | $(SRC)/w32heap.h \ |
| 1537 | $(BLOCKINPUT_H) \ | ||
| 1538 | $(BUFFER_H) \ | 1540 | $(BUFFER_H) \ |
| 1539 | $(CCL_H) \ | 1541 | $(CCL_H) \ |
| 1540 | $(CHARACTER_H) \ | 1542 | $(CHARACTER_H) \ |
| @@ -1555,9 +1557,9 @@ $(BLD)/w32fns.$(O) : \ | |||
| 1555 | 1557 | ||
| 1556 | $(BLD)/w32menu.$(O) : \ | 1558 | $(BLD)/w32menu.$(O) : \ |
| 1557 | $(SRC)/w32menu.c \ | 1559 | $(SRC)/w32menu.c \ |
| 1560 | $(SRC)/blockinput.h \ | ||
| 1558 | $(SRC)/keymap.h \ | 1561 | $(SRC)/keymap.h \ |
| 1559 | $(SRC)/w32heap.h \ | 1562 | $(SRC)/w32heap.h \ |
| 1560 | $(BLOCKINPUT_H) \ | ||
| 1561 | $(BUFFER_H) \ | 1563 | $(BUFFER_H) \ |
| 1562 | $(CHARACTER_H) \ | 1564 | $(CHARACTER_H) \ |
| 1563 | $(CHARSET_H) \ | 1565 | $(CHARSET_H) \ |
| @@ -1574,6 +1576,7 @@ $(BLD)/w32menu.$(O) : \ | |||
| 1574 | 1576 | ||
| 1575 | $(BLD)/w32term.$(O) : \ | 1577 | $(BLD)/w32term.$(O) : \ |
| 1576 | $(SRC)/w32term.c \ | 1578 | $(SRC)/w32term.c \ |
| 1579 | $(SRC)/blockinput.h \ | ||
| 1577 | $(SRC)/disptab.h \ | 1580 | $(SRC)/disptab.h \ |
| 1578 | $(SRC)/fontset.h \ | 1581 | $(SRC)/fontset.h \ |
| 1579 | $(SRC)/keymap.h \ | 1582 | $(SRC)/keymap.h \ |
| @@ -1582,7 +1585,6 @@ $(BLD)/w32term.$(O) : \ | |||
| 1582 | $(SRC)/w32heap.h \ | 1585 | $(SRC)/w32heap.h \ |
| 1583 | $(NT_INC)/sys/stat.h \ | 1586 | $(NT_INC)/sys/stat.h \ |
| 1584 | $(ATIMER_H) \ | 1587 | $(ATIMER_H) \ |
| 1585 | $(BLOCKINPUT_H) \ | ||
| 1586 | $(BUFFER_H) \ | 1588 | $(BUFFER_H) \ |
| 1587 | $(CCL_H) \ | 1589 | $(CCL_H) \ |
| 1588 | $(CHARACTER_H) \ | 1590 | $(CHARACTER_H) \ |
| @@ -1605,9 +1607,9 @@ $(BLD)/w32term.$(O) : \ | |||
| 1605 | 1607 | ||
| 1606 | $(BLD)/w32select.$(O) : \ | 1608 | $(BLD)/w32select.$(O) : \ |
| 1607 | $(SRC)/w32select.c \ | 1609 | $(SRC)/w32select.c \ |
| 1610 | $(SRC)/blockinput.h \ | ||
| 1608 | $(SRC)/composite.h \ | 1611 | $(SRC)/composite.h \ |
| 1609 | $(SRC)/w32heap.h \ | 1612 | $(SRC)/w32heap.h \ |
| 1610 | $(BLOCKINPUT_H) \ | ||
| 1611 | $(CHARSET_H) \ | 1613 | $(CHARSET_H) \ |
| 1612 | $(CODING_H) \ | 1614 | $(CODING_H) \ |
| 1613 | $(CONFIG_H) \ | 1615 | $(CONFIG_H) \ |
| @@ -1616,15 +1618,15 @@ $(BLD)/w32select.$(O) : \ | |||
| 1616 | 1618 | ||
| 1617 | $(BLD)/w32reg.$(O) : \ | 1619 | $(BLD)/w32reg.$(O) : \ |
| 1618 | $(SRC)/w32reg.c \ | 1620 | $(SRC)/w32reg.c \ |
| 1619 | $(BLOCKINPUT_H) \ | 1621 | $(SRC)/blockinput.h \ |
| 1620 | $(CONFIG_H) \ | 1622 | $(CONFIG_H) \ |
| 1621 | $(LISP_H) \ | 1623 | $(LISP_H) \ |
| 1622 | $(W32TERM_H) | 1624 | $(W32TERM_H) |
| 1623 | 1625 | ||
| 1624 | $(BLD)/w32xfns.$(O) : \ | 1626 | $(BLD)/w32xfns.$(O) : \ |
| 1625 | $(SRC)/w32xfns.c \ | 1627 | $(SRC)/w32xfns.c \ |
| 1628 | $(SRC)/blockinput.h \ | ||
| 1626 | $(SRC)/fontset.h \ | 1629 | $(SRC)/fontset.h \ |
| 1627 | $(BLOCKINPUT_H) \ | ||
| 1628 | $(CHARSET_H) \ | 1630 | $(CHARSET_H) \ |
| 1629 | $(CONFIG_H) \ | 1631 | $(CONFIG_H) \ |
| 1630 | $(FRAME_H) \ | 1632 | $(FRAME_H) \ |