aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2003-10-11 22:00:53 +0000
committerJason Rumney2003-10-11 22:00:53 +0000
commitccba538f06c80c05d566b3170b1a3576703ddc81 (patch)
tree3e6906e94349d7d7643adbf6873fce71402cb754 /src
parent652a7e95890cf21daf8404273e7f12333c5022e8 (diff)
downloademacs-ccba538f06c80c05d566b3170b1a3576703ddc81.tar.gz
emacs-ccba538f06c80c05d566b3170b1a3576703ddc81.zip
Add character.h dependancies.
(character.o, chartab.o): New targets.
Diffstat (limited to 'src')
-rw-r--r--src/makefile.w32-in85
1 files changed, 70 insertions, 15 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 8b4195e0b78..dfeebf58a55 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -55,7 +55,6 @@ OBJ0 = $(BLD)/emacs.$(O)
55 55
56OBJ1 = $(BLD)/abbrev.$(O) \ 56OBJ1 = $(BLD)/abbrev.$(O) \
57 $(BLD)/alloc.$(O) \ 57 $(BLD)/alloc.$(O) \
58 $(BLD)/alloca.$(O) \
59 $(BLD)/atimer.$(O) \ 58 $(BLD)/atimer.$(O) \
60 $(BLD)/buffer.$(O) \ 59 $(BLD)/buffer.$(O) \
61 $(BLD)/bytecode.$(O) \ 60 $(BLD)/bytecode.$(O) \
@@ -116,6 +115,8 @@ OBJ1 = $(BLD)/abbrev.$(O) \
116 $(BLD)/region-cache.$(O) \ 115 $(BLD)/region-cache.$(O) \
117 $(BLD)/strftime.$(O) \ 116 $(BLD)/strftime.$(O) \
118 $(BLD)/charset.$(O) \ 117 $(BLD)/charset.$(O) \
118 $(BLD)/character.$(O) \
119 $(BLD)/chartab.$(O) \
119 $(BLD)/coding.$(O) \ 120 $(BLD)/coding.$(O) \
120 $(BLD)/category.$(O) \ 121 $(BLD)/category.$(O) \
121 $(BLD)/ccl.$(O) \ 122 $(BLD)/ccl.$(O) \
@@ -260,6 +261,7 @@ $(BLD)/abbrev.$(O) : \
260 $(EMACS_ROOT)/src/m/intel386.h \ 261 $(EMACS_ROOT)/src/m/intel386.h \
261 $(EMACS_ROOT)/src/config.h \ 262 $(EMACS_ROOT)/src/config.h \
262 $(SRC)/buffer.h \ 263 $(SRC)/buffer.h \
264 $(SRC)/character.h \
263 $(SRC)/charset.h \ 265 $(SRC)/charset.h \
264 $(SRC)/commands.h \ 266 $(SRC)/commands.h \
265 $(SRC)/dispextern.h \ 267 $(SRC)/dispextern.h \
@@ -275,6 +277,7 @@ $(BLD)/alloc.$(O) : \
275 $(EMACS_ROOT)/src/config.h \ 277 $(EMACS_ROOT)/src/config.h \
276 $(SRC)/blockinput.h \ 278 $(SRC)/blockinput.h \
277 $(SRC)/buffer.h \ 279 $(SRC)/buffer.h \
280 $(SRC)/character.h \
278 $(SRC)/charset.h \ 281 $(SRC)/charset.h \
279 $(SRC)/composite.h \ 282 $(SRC)/composite.h \
280 $(SRC)/dispextern.h \ 283 $(SRC)/dispextern.h \
@@ -288,18 +291,6 @@ $(BLD)/alloc.$(O) : \
288 $(SRC)/w32gui.h \ 291 $(SRC)/w32gui.h \
289 $(SRC)/window.h 292 $(SRC)/window.h
290 293
291$(BLD)/alloca.$(O) : \
292 $(SRC)/alloca.c \
293 $(EMACS_ROOT)/src/s/ms-w32.h \
294 $(EMACS_ROOT)/src/m/intel386.h \
295 $(EMACS_ROOT)/src/config.h \
296 $(SRC)/s/ms-w32.h \
297 $(SRC)/m/intel386.h \
298 $(SRC)/config.h \
299 $(SRC)/atimer.h \
300 $(SRC)/blockinput.h \
301 $(SRC)/systime.h
302
303$(BLD)/atimer.$(O) : \ 294$(BLD)/atimer.$(O) : \
304 $(SRC)/atimer.c \ 295 $(SRC)/atimer.c \
305 $(EMACS_ROOT)/src/s/ms-w32.h \ 296 $(EMACS_ROOT)/src/s/ms-w32.h \
@@ -342,7 +333,8 @@ $(BLD)/bytecode.$(O) : \
342 $(EMACS_ROOT)/src/config.h \ 333 $(EMACS_ROOT)/src/config.h \
343 $(SRC)/buffer.h \ 334 $(SRC)/buffer.h \
344 $(SRC)/charset.h \ 335 $(SRC)/charset.h \
345 $(SRC)/syntax.h 336 $(SRC)/syntax.h \
337 $(SRC)/window.h
346 338
347$(BLD)/callint.$(O) : \ 339$(BLD)/callint.$(O) : \
348 $(SRC)/callint.c \ 340 $(SRC)/callint.c \
@@ -368,6 +360,7 @@ $(BLD)/callproc.$(O) : \
368 $(EMACS_ROOT)/nt/inc/sys/file.h \ 360 $(EMACS_ROOT)/nt/inc/sys/file.h \
369 $(SRC)/buffer.h \ 361 $(SRC)/buffer.h \
370 $(SRC)/ccl.h \ 362 $(SRC)/ccl.h \
363 $(SRC)/character.h \
371 $(SRC)/charset.h \ 364 $(SRC)/charset.h \
372 $(SRC)/coding.h \ 365 $(SRC)/coding.h \
373 $(SRC)/commands.h \ 366 $(SRC)/commands.h \
@@ -384,6 +377,7 @@ $(BLD)/casefiddle.$(O) : \
384 $(EMACS_ROOT)/src/m/intel386.h \ 377 $(EMACS_ROOT)/src/m/intel386.h \
385 $(EMACS_ROOT)/src/config.h \ 378 $(EMACS_ROOT)/src/config.h \
386 $(SRC)/buffer.h \ 379 $(SRC)/buffer.h \
380 $(SRC)/character.h \
387 $(SRC)/charset.h \ 381 $(SRC)/charset.h \
388 $(SRC)/commands.h \ 382 $(SRC)/commands.h \
389 $(SRC)/composite.h \ 383 $(SRC)/composite.h \
@@ -405,6 +399,7 @@ $(BLD)/category.$(O) : \
405 $(EMACS_ROOT)/src/config.h \ 399 $(EMACS_ROOT)/src/config.h \
406 $(SRC)/buffer.h \ 400 $(SRC)/buffer.h \
407 $(SRC)/category.h \ 401 $(SRC)/category.h \
402 $(SRC)/character.h \
408 $(SRC)/charset.h \ 403 $(SRC)/charset.h \
409 $(SRC)/keymap.h 404 $(SRC)/keymap.h
410 405
@@ -414,9 +409,22 @@ $(BLD)/ccl.$(O) : \
414 $(EMACS_ROOT)/src/m/intel386.h \ 409 $(EMACS_ROOT)/src/m/intel386.h \
415 $(EMACS_ROOT)/src/config.h \ 410 $(EMACS_ROOT)/src/config.h \
416 $(SRC)/ccl.h \ 411 $(SRC)/ccl.h \
412 $(SRC)/character.h \
417 $(SRC)/charset.h \ 413 $(SRC)/charset.h \
418 $(SRC)/coding.h 414 $(SRC)/coding.h
419 415
416$(BLD)/character.$(O) : \
417 $(SRC)/character.c \
418 $(EMACS_ROOT)/src/s/ms-w32.h \
419 $(EMACS_ROOT)/src/m/intel386.h \
420 $(EMACS_ROOT)/src/config.h \
421 $(SRC)/buffer.h \
422 $(SRC)/character.h \
423 $(SRC)/charset.h \
424 $(SRC)/coding.h \
425 $(SRC)/composite.h \
426 $(SRC)/disptab.h
427
420$(BLD)/charset.$(O) : \ 428$(BLD)/charset.$(O) : \
421 $(SRC)/charset.c \ 429 $(SRC)/charset.c \
422 $(EMACS_ROOT)/src/s/ms-w32.h \ 430 $(EMACS_ROOT)/src/s/ms-w32.h \
@@ -424,11 +432,20 @@ $(BLD)/charset.$(O) : \
424 $(EMACS_ROOT)/src/config.h \ 432 $(EMACS_ROOT)/src/config.h \
425 $(SRC)/buffer.h \ 433 $(SRC)/buffer.h \
426 $(SRC)/ccl.h \ 434 $(SRC)/ccl.h \
435 $(SRC)/character.h \
427 $(SRC)/charset.h \ 436 $(SRC)/charset.h \
428 $(SRC)/coding.h \ 437 $(SRC)/coding.h \
429 $(SRC)/composite.h \ 438 $(SRC)/composite.h \
430 $(SRC)/disptab.h 439 $(SRC)/disptab.h
431 440
441$(BLD)/chartab.$(O) : \
442 $(SRC)/chartab.c \
443 $(EMACS_ROOT)/src/s/ms-w32.h \
444 $(EMACS_ROOT)/src/m/intel386.h \
445 $(EMACS_ROOT)/src/config.h \
446 $(SRC)/charset.h \
447 $(SRC)/character.h
448
432$(BLD)/cm.$(O) : \ 449$(BLD)/cm.$(O) : \
433 $(SRC)/cm.c \ 450 $(SRC)/cm.c \
434 $(EMACS_ROOT)/src/s/ms-w32.h \ 451 $(EMACS_ROOT)/src/s/ms-w32.h \
@@ -443,6 +460,7 @@ $(BLD)/cmds.$(O) : \
443 $(EMACS_ROOT)/src/m/intel386.h \ 460 $(EMACS_ROOT)/src/m/intel386.h \
444 $(EMACS_ROOT)/src/config.h \ 461 $(EMACS_ROOT)/src/config.h \
445 $(SRC)/buffer.h \ 462 $(SRC)/buffer.h \
463 $(SRC)/character.h \
446 $(SRC)/charset.h \ 464 $(SRC)/charset.h \
447 $(SRC)/commands.h \ 465 $(SRC)/commands.h \
448 $(SRC)/dispextern.h \ 466 $(SRC)/dispextern.h \
@@ -460,10 +478,12 @@ $(BLD)/coding.$(O) : \
460 $(EMACS_ROOT)/src/config.h \ 478 $(EMACS_ROOT)/src/config.h \
461 $(SRC)/buffer.h \ 479 $(SRC)/buffer.h \
462 $(SRC)/ccl.h \ 480 $(SRC)/ccl.h \
481 $(SRC)/character.h \
463 $(SRC)/charset.h \ 482 $(SRC)/charset.h \
464 $(SRC)/coding.h \ 483 $(SRC)/coding.h \
465 $(SRC)/composite.h \ 484 $(SRC)/composite.h \
466 $(SRC)/dispextern.h \ 485 $(SRC)/dispextern.h \
486 $(SRC)/intervals.h \
467 $(SRC)/w32bdf.h \ 487 $(SRC)/w32bdf.h \
468 $(SRC)/w32gui.h \ 488 $(SRC)/w32gui.h \
469 $(SRC)/window.h 489 $(SRC)/window.h
@@ -474,6 +494,7 @@ $(BLD)/composite.$(O) : \
474 $(EMACS_ROOT)/src/m/intel386.h \ 494 $(EMACS_ROOT)/src/m/intel386.h \
475 $(EMACS_ROOT)/src/config.h \ 495 $(EMACS_ROOT)/src/config.h \
476 $(SRC)/buffer.h \ 496 $(SRC)/buffer.h \
497 $(SRC)/character.h \
477 $(SRC)/charset.h \ 498 $(SRC)/charset.h \
478 $(SRC)/composite.h \ 499 $(SRC)/composite.h \
479 $(SRC)/dispextern.h \ 500 $(SRC)/dispextern.h \
@@ -487,6 +508,7 @@ $(BLD)/data.$(O) : \
487 $(EMACS_ROOT)/src/m/intel386.h \ 508 $(EMACS_ROOT)/src/m/intel386.h \
488 $(EMACS_ROOT)/src/config.h \ 509 $(EMACS_ROOT)/src/config.h \
489 $(SRC)/buffer.h \ 510 $(SRC)/buffer.h \
511 $(SRC)/character.h \
490 $(SRC)/charset.h \ 512 $(SRC)/charset.h \
491 $(SRC)/frame.h \ 513 $(SRC)/frame.h \
492 $(SRC)/keyboard.h \ 514 $(SRC)/keyboard.h \
@@ -500,6 +522,7 @@ $(BLD)/dired.$(O) : \
500 $(EMACS_ROOT)/src/config.h \ 522 $(EMACS_ROOT)/src/config.h \
501 $(SRC)/buffer.h \ 523 $(SRC)/buffer.h \
502 $(SRC)/ccl.h \ 524 $(SRC)/ccl.h \
525 $(SRC)/character.h \
503 $(SRC)/charset.h \ 526 $(SRC)/charset.h \
504 $(SRC)/coding.h \ 527 $(SRC)/coding.h \
505 $(SRC)/commands.h \ 528 $(SRC)/commands.h \
@@ -517,6 +540,7 @@ $(BLD)/dispnew.$(O) : \
517 $(SRC)/atimer.h \ 540 $(SRC)/atimer.h \
518 $(SRC)/blockinput.h \ 541 $(SRC)/blockinput.h \
519 $(SRC)/buffer.h \ 542 $(SRC)/buffer.h \
543 $(SRC)/character.h \
520 $(SRC)/charset.h \ 544 $(SRC)/charset.h \
521 $(SRC)/cm.h \ 545 $(SRC)/cm.h \
522 $(SRC)/commands.h \ 546 $(SRC)/commands.h \
@@ -545,6 +569,7 @@ $(BLD)/doc.$(O) : \
545 $(EMACS_ROOT)/src/config.h \ 569 $(EMACS_ROOT)/src/config.h \
546 $(EMACS_ROOT)/nt/inc/sys/file.h \ 570 $(EMACS_ROOT)/nt/inc/sys/file.h \
547 $(SRC)/buffer.h \ 571 $(SRC)/buffer.h \
572 $(SRC)/character.h \
548 $(SRC)/charset.h \ 573 $(SRC)/charset.h \
549 $(SRC)/keyboard.h \ 574 $(SRC)/keyboard.h \
550 $(SRC)/keymap.h 575 $(SRC)/keymap.h
@@ -554,6 +579,7 @@ $(BLD)/doprnt.$(O) : \
554 $(EMACS_ROOT)/src/s/ms-w32.h \ 579 $(EMACS_ROOT)/src/s/ms-w32.h \
555 $(EMACS_ROOT)/src/m/intel386.h \ 580 $(EMACS_ROOT)/src/m/intel386.h \
556 $(EMACS_ROOT)/src/config.h \ 581 $(EMACS_ROOT)/src/config.h \
582 $(SRC)/character.h \
557 $(SRC)/charset.c 583 $(SRC)/charset.c
558 584
559$(BLD)/editfns.$(O) : \ 585$(BLD)/editfns.$(O) : \
@@ -564,6 +590,7 @@ $(BLD)/editfns.$(O) : \
564 $(EMACS_ROOT)/nt/inc/pwd.h \ 590 $(EMACS_ROOT)/nt/inc/pwd.h \
565 $(SRC)/buffer.h \ 591 $(SRC)/buffer.h \
566 $(SRC)/ccl.h \ 592 $(SRC)/ccl.h \
593 $(SRC)/character.h \
567 $(SRC)/charset.h \ 594 $(SRC)/charset.h \
568 $(SRC)/coding.h \ 595 $(SRC)/coding.h \
569 $(SRC)/composite.h \ 596 $(SRC)/composite.h \
@@ -597,7 +624,8 @@ $(BLD)/emacs.$(O) : \
597 $(SRC)/systty.h \ 624 $(SRC)/systty.h \
598 $(SRC)/termhooks.h \ 625 $(SRC)/termhooks.h \
599 $(SRC)/w32bdf.h \ 626 $(SRC)/w32bdf.h \
600 $(SRC)/w32gui.h 627 $(SRC)/w32gui.h \
628 $(SRC)/window.h
601 629
602$(BLD)/eval.$(O) : \ 630$(BLD)/eval.$(O) : \
603 $(SRC)/eval.c \ 631 $(SRC)/eval.c \
@@ -623,6 +651,7 @@ $(BLD)/fileio.$(O) : \
623 $(EMACS_ROOT)/nt/inc/sys/file.h \ 651 $(EMACS_ROOT)/nt/inc/sys/file.h \
624 $(SRC)/buffer.h \ 652 $(SRC)/buffer.h \
625 $(SRC)/ccl.h \ 653 $(SRC)/ccl.h \
654 $(SRC)/character.h \
626 $(SRC)/charset.h \ 655 $(SRC)/charset.h \
627 $(SRC)/coding.h \ 656 $(SRC)/coding.h \
628 $(SRC)/commands.h \ 657 $(SRC)/commands.h \
@@ -644,6 +673,7 @@ $(BLD)/filelock.$(O) : \
644 $(EMACS_ROOT)/src/epaths.h \ 673 $(EMACS_ROOT)/src/epaths.h \
645 $(SRC)/buffer.h \ 674 $(SRC)/buffer.h \
646 $(SRC)/ccl.h \ 675 $(SRC)/ccl.h \
676 $(SRC)/character.h \
647 $(SRC)/charset.h \ 677 $(SRC)/charset.h \
648 $(SRC)/coding.h \ 678 $(SRC)/coding.h \
649 $(SRC)/systime.h 679 $(SRC)/systime.h
@@ -679,6 +709,7 @@ $(BLD)/fns.$(O) : \
679 $(SRC)/blockinput.h \ 709 $(SRC)/blockinput.h \
680 $(SRC)/buffer.h \ 710 $(SRC)/buffer.h \
681 $(SRC)/ccl.h \ 711 $(SRC)/ccl.h \
712 $(SRC)/character.h \
682 $(SRC)/charset.h \ 713 $(SRC)/charset.h \
683 $(SRC)/coding.h \ 714 $(SRC)/coding.h \
684 $(SRC)/commands.h \ 715 $(SRC)/commands.h \
@@ -701,6 +732,7 @@ $(BLD)/fontset.$(O) : \
701 $(EMACS_ROOT)/src/config.h \ 732 $(EMACS_ROOT)/src/config.h \
702 $(SRC)/buffer.h \ 733 $(SRC)/buffer.h \
703 $(SRC)/ccl.h \ 734 $(SRC)/ccl.h \
735 $(SRC)/character.h \
704 $(SRC)/charset.h \ 736 $(SRC)/charset.h \
705 $(SRC)/dispextern.h \ 737 $(SRC)/dispextern.h \
706 $(SRC)/fontset.h \ 738 $(SRC)/fontset.h \
@@ -718,6 +750,7 @@ $(BLD)/frame.$(O) : \
718 $(SRC)/atimer.h \ 750 $(SRC)/atimer.h \
719 $(SRC)/blockinput.h \ 751 $(SRC)/blockinput.h \
720 $(SRC)/buffer.h \ 752 $(SRC)/buffer.h \
753 $(SRC)/character.h \
721 $(SRC)/charset.h \ 754 $(SRC)/charset.h \
722 $(SRC)/commands.h \ 755 $(SRC)/commands.h \
723 $(SRC)/dispextern.h \ 756 $(SRC)/dispextern.h \
@@ -746,6 +779,7 @@ $(BLD)/indent.$(O) : \
746 $(EMACS_ROOT)/src/config.h \ 779 $(EMACS_ROOT)/src/config.h \
747 $(SRC)/buffer.h \ 780 $(SRC)/buffer.h \
748 $(SRC)/category.h \ 781 $(SRC)/category.h \
782 $(SRC)/character.h \
749 $(SRC)/charset.h \ 783 $(SRC)/charset.h \
750 $(SRC)/composite.h \ 784 $(SRC)/composite.h \
751 $(SRC)/dispextern.h \ 785 $(SRC)/dispextern.h \
@@ -769,6 +803,7 @@ $(BLD)/insdel.$(O) : \
769 $(SRC)/atimer.h \ 803 $(SRC)/atimer.h \
770 $(SRC)/blockinput.h \ 804 $(SRC)/blockinput.h \
771 $(SRC)/buffer.h \ 805 $(SRC)/buffer.h \
806 $(SRC)/character.h \
772 $(SRC)/charset.h \ 807 $(SRC)/charset.h \
773 $(SRC)/composite.h \ 808 $(SRC)/composite.h \
774 $(SRC)/dispextern.h \ 809 $(SRC)/dispextern.h \
@@ -804,6 +839,7 @@ $(BLD)/keyboard.$(O) : \
804 $(SRC)/atimer.h \ 839 $(SRC)/atimer.h \
805 $(SRC)/blockinput.h \ 840 $(SRC)/blockinput.h \
806 $(SRC)/buffer.h \ 841 $(SRC)/buffer.h \
842 $(SRC)/character.h \
807 $(SRC)/charset.h \ 843 $(SRC)/charset.h \
808 $(SRC)/commands.h \ 844 $(SRC)/commands.h \
809 $(SRC)/composite.h \ 845 $(SRC)/composite.h \
@@ -835,6 +871,7 @@ $(BLD)/keymap.$(O) : \
835 $(SRC)/atimer.h \ 871 $(SRC)/atimer.h \
836 $(SRC)/blockinput.h \ 872 $(SRC)/blockinput.h \
837 $(SRC)/buffer.h \ 873 $(SRC)/buffer.h \
874 $(SRC)/character.h \
838 $(SRC)/charset.h \ 875 $(SRC)/charset.h \
839 $(SRC)/commands.h \ 876 $(SRC)/commands.h \
840 $(SRC)/composite.h \ 877 $(SRC)/composite.h \
@@ -863,6 +900,7 @@ $(BLD)/lread.$(O) : \
863 $(EMACS_ROOT)/src/epaths.h \ 900 $(EMACS_ROOT)/src/epaths.h \
864 $(SRC)/buffer.h \ 901 $(SRC)/buffer.h \
865 $(SRC)/ccl.h \ 902 $(SRC)/ccl.h \
903 $(SRC)/character.h \
866 $(SRC)/charset.h \ 904 $(SRC)/charset.h \
867 $(SRC)/coding.h \ 905 $(SRC)/coding.h \
868 $(SRC)/commands.h \ 906 $(SRC)/commands.h \
@@ -894,6 +932,7 @@ $(BLD)/marker.$(O) : \
894 $(EMACS_ROOT)/src/m/intel386.h \ 932 $(EMACS_ROOT)/src/m/intel386.h \
895 $(EMACS_ROOT)/src/config.h \ 933 $(EMACS_ROOT)/src/config.h \
896 $(SRC)/buffer.h \ 934 $(SRC)/buffer.h \
935 $(SRC)/character.h \
897 $(SRC)/charset.h 936 $(SRC)/charset.h
898 937
899$(BLD)/md5.$(O) : \ 938$(BLD)/md5.$(O) : \
@@ -906,6 +945,7 @@ $(BLD)/minibuf.$(O) : \
906 $(EMACS_ROOT)/src/m/intel386.h \ 945 $(EMACS_ROOT)/src/m/intel386.h \
907 $(EMACS_ROOT)/src/config.h \ 946 $(EMACS_ROOT)/src/config.h \
908 $(SRC)/buffer.h \ 947 $(SRC)/buffer.h \
948 $(SRC)/character.h \
909 $(SRC)/charset.h \ 949 $(SRC)/charset.h \
910 $(SRC)/commands.h \ 950 $(SRC)/commands.h \
911 $(SRC)/composite.h \ 951 $(SRC)/composite.h \
@@ -973,6 +1013,7 @@ $(BLD)/w32console.$(O) : \
973 $(SRC)/s/ms-w32.h \ 1013 $(SRC)/s/ms-w32.h \
974 $(SRC)/m/intel386.h \ 1014 $(SRC)/m/intel386.h \
975 $(SRC)/ccl.h \ 1015 $(SRC)/ccl.h \
1016 $(SRC)/character.h \
976 $(SRC)/charset.h \ 1017 $(SRC)/charset.h \
977 $(SRC)/coding.h \ 1018 $(SRC)/coding.h \
978 $(SRC)/config.h \ 1019 $(SRC)/config.h \
@@ -990,6 +1031,7 @@ $(BLD)/print.$(O) : \
990 $(EMACS_ROOT)/src/m/intel386.h \ 1031 $(EMACS_ROOT)/src/m/intel386.h \
991 $(EMACS_ROOT)/src/config.h \ 1032 $(EMACS_ROOT)/src/config.h \
992 $(SRC)/buffer.h \ 1033 $(SRC)/buffer.h \
1034 $(SRC)/character.h \
993 $(SRC)/charset.h \ 1035 $(SRC)/charset.h \
994 $(SRC)/composite.h \ 1036 $(SRC)/composite.h \
995 $(SRC)/dispextern.h \ 1037 $(SRC)/dispextern.h \
@@ -1013,6 +1055,7 @@ $(BLD)/process.$(O) : \
1013 $(SRC)/blockinput.h \ 1055 $(SRC)/blockinput.h \
1014 $(SRC)/buffer.h \ 1056 $(SRC)/buffer.h \
1015 $(SRC)/ccl.h \ 1057 $(SRC)/ccl.h \
1058 $(SRC)/character.h \
1016 $(SRC)/charset.h \ 1059 $(SRC)/charset.h \
1017 $(SRC)/coding.h \ 1060 $(SRC)/coding.h \
1018 $(SRC)/commands.h \ 1061 $(SRC)/commands.h \
@@ -1052,6 +1095,7 @@ $(BLD)/regex.$(O) : \
1052 $(SRC)/m/intel386.h \ 1095 $(SRC)/m/intel386.h \
1053 $(SRC)/buffer.h \ 1096 $(SRC)/buffer.h \
1054 $(SRC)/category.h \ 1097 $(SRC)/category.h \
1098 $(SRC)/character.h \
1055 $(SRC)/charset.h \ 1099 $(SRC)/charset.h \
1056 $(SRC)/config.h \ 1100 $(SRC)/config.h \
1057 $(SRC)/regex.h \ 1101 $(SRC)/regex.h \
@@ -1087,6 +1131,7 @@ $(BLD)/search.$(O) : \
1087 $(SRC)/blockinput.h \ 1131 $(SRC)/blockinput.h \
1088 $(SRC)/buffer.h \ 1132 $(SRC)/buffer.h \
1089 $(SRC)/category.h \ 1133 $(SRC)/category.h \
1134 $(SRC)/character.h \
1090 $(SRC)/charset.h \ 1135 $(SRC)/charset.h \
1091 $(SRC)/commands.h \ 1136 $(SRC)/commands.h \
1092 $(SRC)/composite.h \ 1137 $(SRC)/composite.h \
@@ -1119,6 +1164,7 @@ $(BLD)/syntax.$(O) : \
1119 $(EMACS_ROOT)/src/config.h \ 1164 $(EMACS_ROOT)/src/config.h \
1120 $(SRC)/buffer.h \ 1165 $(SRC)/buffer.h \
1121 $(SRC)/category.h \ 1166 $(SRC)/category.h \
1167 $(SRC)/character.h \
1122 $(SRC)/charset.h \ 1168 $(SRC)/charset.h \
1123 $(SRC)/commands.h \ 1169 $(SRC)/commands.h \
1124 $(SRC)/composite.h \ 1170 $(SRC)/composite.h \
@@ -1163,6 +1209,7 @@ $(BLD)/term.$(O) : \
1163 $(EMACS_ROOT)/src/m/intel386.h \ 1209 $(EMACS_ROOT)/src/m/intel386.h \
1164 $(EMACS_ROOT)/src/config.h \ 1210 $(EMACS_ROOT)/src/config.h \
1165 $(SRC)/ccl.h \ 1211 $(SRC)/ccl.h \
1212 $(SRC)/character.h \
1166 $(SRC)/charset.h \ 1213 $(SRC)/charset.h \
1167 $(SRC)/cm.h \ 1214 $(SRC)/cm.h \
1168 $(SRC)/coding.h \ 1215 $(SRC)/coding.h \
@@ -1259,6 +1306,7 @@ $(BLD)/xdisp.$(O) : \
1259 $(SRC)/blockinput.h \ 1306 $(SRC)/blockinput.h \
1260 $(SRC)/buffer.h \ 1307 $(SRC)/buffer.h \
1261 $(SRC)/ccl.h \ 1308 $(SRC)/ccl.h \
1309 $(SRC)/character.h \
1262 $(SRC)/charset.h \ 1310 $(SRC)/charset.h \
1263 $(SRC)/coding.h \ 1311 $(SRC)/coding.h \
1264 $(SRC)/commands.h \ 1312 $(SRC)/commands.h \
@@ -1290,6 +1338,7 @@ $(BLD)/xfaces.$(O): \
1290 $(SRC)/atimer.h \ 1338 $(SRC)/atimer.h \
1291 $(SRC)/blockinput.h \ 1339 $(SRC)/blockinput.h \
1292 $(SRC)/buffer.h \ 1340 $(SRC)/buffer.h \
1341 $(SRC)/character.h \
1293 $(SRC)/charset.h \ 1342 $(SRC)/charset.h \
1294 $(SRC)/composite.h \ 1343 $(SRC)/composite.h \
1295 $(SRC)/dispextern.h \ 1344 $(SRC)/dispextern.h \
@@ -1312,6 +1361,7 @@ $(BLD)/w32fns.$(O): \
1312 $(SRC)/blockinput.h \ 1361 $(SRC)/blockinput.h \
1313 $(SRC)/buffer.h \ 1362 $(SRC)/buffer.h \
1314 $(SRC)/ccl.h \ 1363 $(SRC)/ccl.h \
1364 $(SRC)/character.h \
1315 $(SRC)/charset.h \ 1365 $(SRC)/charset.h \
1316 $(SRC)/coding.h \ 1366 $(SRC)/coding.h \
1317 $(SRC)/composite.h \ 1367 $(SRC)/composite.h \
@@ -1337,6 +1387,7 @@ $(BLD)/w32menu.$(O): \
1337 $(SRC)/atimer.h \ 1387 $(SRC)/atimer.h \
1338 $(SRC)/blockinput.h \ 1388 $(SRC)/blockinput.h \
1339 $(SRC)/buffer.h \ 1389 $(SRC)/buffer.h \
1390 $(SRC)/character.h \
1340 $(SRC)/charset.h \ 1391 $(SRC)/charset.h \
1341 $(SRC)/coding.h \ 1392 $(SRC)/coding.h \
1342 $(SRC)/dispextern.h \ 1393 $(SRC)/dispextern.h \
@@ -1359,6 +1410,7 @@ $(BLD)/w32term.$(O): \
1359 $(SRC)/blockinput.h \ 1410 $(SRC)/blockinput.h \
1360 $(SRC)/buffer.h \ 1411 $(SRC)/buffer.h \
1361 $(SRC)/ccl.h \ 1412 $(SRC)/ccl.h \
1413 $(SRC)/character.h \
1362 $(SRC)/charset.h \ 1414 $(SRC)/charset.h \
1363 $(SRC)/coding.h \ 1415 $(SRC)/coding.h \
1364 $(SRC)/composite.h \ 1416 $(SRC)/composite.h \
@@ -1390,6 +1442,7 @@ $(BLD)/w32select.$(O): \
1390 $(SRC)/blockinput.h \ 1442 $(SRC)/blockinput.h \
1391 $(SRC)/buffer.h \ 1443 $(SRC)/buffer.h \
1392 $(SRC)/ccl.h \ 1444 $(SRC)/ccl.h \
1445 $(SRC)/character.h \
1393 $(SRC)/charset.h \ 1446 $(SRC)/charset.h \
1394 $(SRC)/coding.h \ 1447 $(SRC)/coding.h \
1395 $(SRC)/composite.h \ 1448 $(SRC)/composite.h \
@@ -1420,6 +1473,7 @@ $(BLD)/w32xfns.$(O): \
1420 $(EMACS_ROOT)/src/config.h \ 1473 $(EMACS_ROOT)/src/config.h \
1421 $(SRC)/atimer.h \ 1474 $(SRC)/atimer.h \
1422 $(SRC)/blockinput.h \ 1475 $(SRC)/blockinput.h \
1476 $(SRC)/character.h \
1423 $(SRC)/charset.h \ 1477 $(SRC)/charset.h \
1424 $(SRC)/fontset.h \ 1478 $(SRC)/fontset.h \
1425 $(SRC)/frame.h \ 1479 $(SRC)/frame.h \
@@ -1436,6 +1490,7 @@ $(BLD)/w32bdf.$(O): \
1436 $(EMACS_ROOT)/src/config.h \ 1490 $(EMACS_ROOT)/src/config.h \
1437 $(SRC)/atimer.h \ 1491 $(SRC)/atimer.h \
1438 $(SRC)/blockinput.h \ 1492 $(SRC)/blockinput.h \
1493 $(SRC)/character.h \
1439 $(SRC)/charset.h \ 1494 $(SRC)/charset.h \
1440 $(SRC)/dispextern.h \ 1495 $(SRC)/dispextern.h \
1441 $(SRC)/fontset.h \ 1496 $(SRC)/fontset.h \