diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 38 | ||||
| -rw-r--r-- | src/Makefile.in | 74 |
2 files changed, 80 insertions, 32 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7f6d9f4b1c1..79387a8ea19 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -5,6 +5,44 @@ | |||
| 5 | 5 | ||
| 6 | 2004-09-10 Eli Zaretskii <eliz@gnu.org> | 6 | 2004-09-10 Eli Zaretskii <eliz@gnu.org> |
| 7 | 7 | ||
| 8 | * Makefile.in (msdos.o): Depend on buffer.h, commands.h, and | ||
| 9 | blockinput.h. | ||
| 10 | (dosfns.o): Depend on blockinput.h, window.h, dispextern.h, | ||
| 11 | charset.h, and coding.h | ||
| 12 | (w16select.o): Depend on buffer.h, charset.h, coding.h, and | ||
| 13 | composite.h. | ||
| 14 | (term.o): Depend on window.h and keymap.h. | ||
| 15 | (abbrev.o): Depend on syntax.h. | ||
| 16 | (callint.o): Depend on keymap.h. | ||
| 17 | (casefiddle.o): Depend on charset.h and keymap.h. | ||
| 18 | (category.o): Depend on keymap.h. | ||
| 19 | (coding.o): Depend on dispextern.h. | ||
| 20 | (cmds.o): Depend on keyboard.h and keymap.h. | ||
| 21 | (dispnew.o): Depend on indent.h and intervals.h. | ||
| 22 | (doc.o): Depend on keymap.h. | ||
| 23 | (editfns.o): Depend on frame.h. | ||
| 24 | (emacs.o): Depend on dispextern.h. | ||
| 25 | (fileio.o): Don't depend on ccl.h. | ||
| 26 | (filelock.o): Depend on charset.h and coding.h. | ||
| 27 | (frame.o): Depend on w32term.h and macterm.h. | ||
| 28 | (insdel.o): Depend on region-cache.h. | ||
| 29 | (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h. | ||
| 30 | (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h. | ||
| 31 | (search.o): Depend on $(INTERVALS_SRC). | ||
| 32 | (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC). | ||
| 33 | (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC), | ||
| 34 | xterm.h, w32term.h, and macterm.h. | ||
| 35 | (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h, | ||
| 36 | w32term.h, and macterm.h. | ||
| 37 | (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC), | ||
| 38 | region-cache.h, xterm.h, w32term.h, and macterm.h. | ||
| 39 | (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h. | ||
| 40 | (data.o): Depend on frame.h. | ||
| 41 | (fns.o): Depend on keymap.h, xterm.h, and blockinput.h. | ||
| 42 | (print.o): Depend on termchar.h and $(INTERVALS_SRC). | ||
| 43 | (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h. | ||
| 44 | (intervals.o): Depend on keymap.h. | ||
| 45 | |||
| 8 | * msdos.c (msdos_set_cursor_shape): Add debugging print-out to | 46 | * msdos.c (msdos_set_cursor_shape): Add debugging print-out to |
| 9 | termscript. | 47 | termscript. |
| 10 | 48 | ||
diff --git a/src/Makefile.in b/src/Makefile.in index f473888cc5d..5769e8a1e07 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1042,25 +1042,27 @@ alloca.o: alloca.c blockinput.h atimer.h | |||
| 1042 | and so rarely changed in ways that do require any. */ | 1042 | and so rarely changed in ways that do require any. */ |
| 1043 | 1043 | ||
| 1044 | abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h charset.h \ | 1044 | abbrev.o: abbrev.c buffer.h window.h dispextern.h commands.h charset.h \ |
| 1045 | $(config_h) | 1045 | syntax.h $(config_h) |
| 1046 | buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ | 1046 | buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ |
| 1047 | dispextern.h $(INTERVAL_SRC) blockinput.h atimer.h systime.h charset.h \ | 1047 | dispextern.h $(INTERVAL_SRC) blockinput.h atimer.h systime.h charset.h \ |
| 1048 | $(config_h) | 1048 | $(config_h) |
| 1049 | callint.o: callint.c window.h commands.h buffer.h \ | 1049 | callint.o: callint.c window.h commands.h buffer.h keymap.h \ |
| 1050 | keyboard.h dispextern.h $(config_h) | 1050 | keyboard.h dispextern.h $(config_h) |
| 1051 | callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \ | 1051 | callproc.o: callproc.c epaths.h buffer.h commands.h $(config_h) \ |
| 1052 | process.h systty.h syssignal.h charset.h coding.h ccl.h msdos.h \ | 1052 | process.h systty.h syssignal.h charset.h coding.h ccl.h msdos.h \ |
| 1053 | composite.h | 1053 | composite.h w32.h |
| 1054 | casefiddle.o: casefiddle.c syntax.h commands.h buffer.h composite.h $(config_h) | 1054 | casefiddle.o: casefiddle.c syntax.h commands.h buffer.h composite.h \ |
| 1055 | charset.h keymap.h $(config_h) | ||
| 1055 | casetab.o: casetab.c buffer.h $(config_h) | 1056 | casetab.o: casetab.c buffer.h $(config_h) |
| 1056 | category.o: category.c category.h buffer.h charset.h $(config_h) | 1057 | category.o: category.c category.h buffer.h charset.h keymap.h $(config_h) |
| 1057 | ccl.o: ccl.c ccl.h charset.h coding.h $(config_h) | 1058 | ccl.o: ccl.c ccl.h charset.h coding.h $(config_h) |
| 1058 | charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \ | 1059 | charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \ |
| 1059 | $(config_h) | 1060 | $(config_h) |
| 1060 | coding.o: coding.c coding.h ccl.h buffer.h charset.h intervals.h composite.h window.h $(config_h) | 1061 | coding.o: coding.c coding.h ccl.h buffer.h charset.h intervals.h composite.h \ |
| 1062 | window.h dispextern.h $(config_h) | ||
| 1061 | cm.o: cm.c cm.h termhooks.h $(config_h) | 1063 | cm.o: cm.c cm.h termhooks.h $(config_h) |
| 1062 | cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \ | 1064 | cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \ |
| 1063 | msdos.h dispextern.h | 1065 | msdos.h dispextern.h keyboard.h keymap.h |
| 1064 | pre-crt0.o: pre-crt0.c | 1066 | pre-crt0.o: pre-crt0.c |
| 1065 | ecrt0.o: ecrt0.c $(config_h) | 1067 | ecrt0.o: ecrt0.c $(config_h) |
| 1066 | CRT0_COMPILE ${srcdir}/ecrt0.c | 1068 | CRT0_COMPILE ${srcdir}/ecrt0.c |
| @@ -1068,24 +1070,25 @@ dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \ | |||
| 1068 | systime.h | 1070 | systime.h |
| 1069 | dispnew.o: dispnew.c systty.h systime.h commands.h process.h frame.h \ | 1071 | dispnew.o: dispnew.c systty.h systime.h commands.h process.h frame.h \ |
| 1070 | window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \ | 1072 | window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \ |
| 1071 | disptab.h \ | 1073 | disptab.h indent.h intervals.h \ |
| 1072 | xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \ | 1074 | xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \ |
| 1073 | $(config_h) | 1075 | $(config_h) |
| 1074 | doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h charset.h | 1076 | doc.o: doc.c $(config_h) epaths.h buffer.h keyboard.h keymap.h charset.h |
| 1075 | doprnt.o: doprnt.c charset.h $(config_h) | 1077 | doprnt.o: doprnt.c charset.h $(config_h) |
| 1076 | dosfns.o: buffer.h termchar.h termhooks.h frame.h msdos.h dosfns.h $(config_h) | 1078 | dosfns.o: buffer.h termchar.h termhooks.h frame.h blockinput.h window.h \ |
| 1079 | msdos.h dosfns.h dispextern.h charset.h coding.h $(config_h) | ||
| 1077 | editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \ | 1080 | editfns.o: editfns.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \ |
| 1078 | coding.h dispextern.h $(config_h) | 1081 | coding.h dispextern.h frame.h $(config_h) |
| 1079 | emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \ | 1082 | emacs.o: emacs.c commands.h systty.h syssignal.h blockinput.h process.h \ |
| 1080 | termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h) \ | 1083 | termhooks.h buffer.h atimer.h systime.h $(INTERVAL_SRC) $(config_h) \ |
| 1081 | window.h keyboard.h keymap.h | 1084 | window.h dispextern.h keyboard.h keymap.h |
| 1082 | fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \ | 1085 | fileio.o: fileio.c window.h buffer.h systime.h $(INTERVAL_SRC) charset.h \ |
| 1083 | coding.h ccl.h msdos.h dispextern.h $(config_h) | 1086 | coding.h msdos.h dispextern.h $(config_h) |
| 1084 | filelock.o: filelock.c buffer.h systime.h epaths.h $(config_h) | 1087 | filelock.o: filelock.c buffer.h charset.h coding.h systime.h epaths.h $(config_h) |
| 1085 | filemode.o: filemode.c $(config_h) | 1088 | filemode.o: filemode.c $(config_h) |
| 1086 | frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ | 1089 | frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ |
| 1087 | blockinput.h atimer.h systime.h buffer.h charset.h fontset.h \ | 1090 | blockinput.h atimer.h systime.h buffer.h charset.h fontset.h \ |
| 1088 | msdos.h dosfns.h dispextern.h $(config_h) | 1091 | msdos.h dosfns.h dispextern.h w32term.h macterm.h $(config_h) |
| 1089 | fringe.o: fringe.c dispextern.h frame.h window.h buffer.h $(config_h) | 1092 | fringe.o: fringe.c dispextern.h frame.h window.h buffer.h $(config_h) |
| 1090 | fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h charset.h frame.h \ | 1093 | fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h charset.h frame.h \ |
| 1091 | keyboard.h $(config_h) | 1094 | keyboard.h $(config_h) |
| @@ -1096,11 +1099,11 @@ indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ | |||
| 1096 | termopts.h disptab.h region-cache.h charset.h composite.h dispextern.h \ | 1099 | termopts.h disptab.h region-cache.h charset.h composite.h dispextern.h \ |
| 1097 | keyboard.h | 1100 | keyboard.h |
| 1098 | insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h \ | 1101 | insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h \ |
| 1099 | dispextern.h atimer.h systime.h $(config_h) | 1102 | dispextern.h atimer.h systime.h region-cache.h $(config_h) |
| 1100 | keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \ | 1103 | keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \ |
| 1101 | commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ | 1104 | commands.h frame.h window.h macros.h disptab.h keyboard.h syssignal.h \ |
| 1102 | systty.h systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \ | 1105 | systty.h systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \ |
| 1103 | atimer.h xterm.h puresize.h msdos.h $(config_h) | 1106 | atimer.h xterm.h puresize.h msdos.h keymap.h w32term.h macterm.h $(config_h) |
| 1104 | keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \ | 1107 | keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \ |
| 1105 | atimer.h systime.h puresize.h charset.h intervals.h $(config_h) | 1108 | atimer.h systime.h puresize.h charset.h intervals.h $(config_h) |
| 1106 | lastfile.o: lastfile.c $(config_h) | 1109 | lastfile.o: lastfile.c $(config_h) |
| @@ -1113,11 +1116,11 @@ vm-limit.o: vm-limit.c mem-limits.h $(config_h) | |||
| 1113 | marker.o: marker.c buffer.h charset.h $(config_h) | 1116 | marker.o: marker.c buffer.h charset.h $(config_h) |
| 1114 | md5.o: md5.c md5.h $(config_h) | 1117 | md5.o: md5.c md5.h $(config_h) |
| 1115 | minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \ | 1118 | minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \ |
| 1116 | buffer.h commands.h charset.h msdos.h $(config_h) | 1119 | buffer.h commands.h charset.h msdos.h $(INTERVAL_SRC) keymap.h $(config_h) |
| 1117 | mktime.o: mktime.c $(config_h) | 1120 | mktime.o: mktime.c $(config_h) |
| 1118 | msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \ | 1121 | msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \ |
| 1119 | termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \ | 1122 | termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \ |
| 1120 | keyboard.h intervals.h $(config_h) | 1123 | keyboard.h intervals.h buffer.h commands.h blockinput.h $(config_h) |
| 1121 | process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ | 1124 | process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \ |
| 1122 | commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \ | 1125 | commands.h syssignal.h systime.h systty.h syswait.h frame.h dispextern.h \ |
| 1123 | blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \ | 1126 | blockinput.h atimer.h charset.h coding.h ccl.h msdos.h composite.h \ |
| @@ -1127,15 +1130,17 @@ region-cache.o: region-cache.c buffer.h region-cache.h $(config_h) | |||
| 1127 | scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \ | 1130 | scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \ |
| 1128 | $(config_h) | 1131 | $(config_h) |
| 1129 | search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ | 1132 | search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ |
| 1130 | blockinput.h atimer.h systime.h category.h charset.h composite.h $(config_h) | 1133 | blockinput.h atimer.h systime.h category.h charset.h composite.h \ |
| 1134 | $(INTERVAL_SRC) $(config_h) | ||
| 1131 | strftime.o: strftime.c $(config_h) | 1135 | strftime.o: strftime.c $(config_h) |
| 1132 | syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \ | 1136 | syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \ |
| 1133 | composite.h $(config_h) | 1137 | composite.h keymap.h regex.h $(INTERVAL_SRC) $(config_h) |
| 1134 | sysdep.o: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \ | 1138 | sysdep.o: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \ |
| 1135 | process.h dispextern.h termhooks.h termchar.h termopts.h \ | 1139 | process.h dispextern.h termhooks.h termchar.h termopts.h \ |
| 1136 | frame.h atimer.h window.h msdos.h dosfns.h keyboard.h $(config_h) | 1140 | frame.h atimer.h window.h msdos.h dosfns.h keyboard.h $(config_h) |
| 1137 | term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \ | 1141 | term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \ |
| 1138 | disptab.h dispextern.h keyboard.h charset.h coding.h ccl.h msdos.h | 1142 | disptab.h dispextern.h keyboard.h charset.h coding.h ccl.h msdos.h \ |
| 1143 | window.h keymap.h | ||
| 1139 | termcap.o: termcap.c $(config_h) | 1144 | termcap.o: termcap.c $(config_h) |
| 1140 | terminfo.o: terminfo.c $(config_h) | 1145 | terminfo.o: terminfo.c $(config_h) |
| 1141 | tparam.o: tparam.c $(config_h) | 1146 | tparam.o: tparam.c $(config_h) |
| @@ -1145,17 +1150,19 @@ undo.o: undo.c buffer.h commands.h $(config_h) | |||
| 1145 | UNEXEC_ALIAS=UNEXEC | 1150 | UNEXEC_ALIAS=UNEXEC |
| 1146 | $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h) | 1151 | $(UNEXEC_ALIAS): UNEXEC_SRC $(config_h) |
| 1147 | w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \ | 1152 | w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \ |
| 1148 | msdos.h $(config_h) | 1153 | msdos.h buffer.h charset.h coding.h composite.h $(config_h) |
| 1149 | widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \ | 1154 | widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \ |
| 1150 | $(srcdir)/../lwlib/lwlib.h $(config_h) | 1155 | $(srcdir)/../lwlib/lwlib.h $(config_h) |
| 1151 | window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \ | 1156 | window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \ |
| 1152 | termhooks.h disptab.h keyboard.h dispextern.h msdos.h composite.h \ | 1157 | termhooks.h disptab.h keyboard.h dispextern.h msdos.h composite.h \ |
| 1153 | $(config_h) | 1158 | keymap.h blockinput.h $(INTERVAL_SRC) xterm.h w32term.h macterm.h $(config_h) |
| 1154 | xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h coding.h \ | 1159 | xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h coding.h \ |
| 1155 | termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \ | 1160 | termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \ |
| 1161 | keyboard.h $(INTERVAL_SRC) region-cache.h xterm.h w32term.h macterm.h \ | ||
| 1156 | msdos.h composite.h fontset.h blockinput.h atimer.h systime.h keymap.h | 1162 | msdos.h composite.h fontset.h blockinput.h atimer.h systime.h keymap.h |
| 1157 | xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ | 1163 | xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ |
| 1158 | window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h $(config_h) | 1164 | window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h \ |
| 1165 | keyboard.h fontset.h w32term.h macterm.h $(INTERVAL_SRC) $(config_h) | ||
| 1159 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \ | 1166 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \ |
| 1160 | $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \ | 1167 | $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \ |
| 1161 | charset.h gtkutil.h $(config_h) | 1168 | charset.h gtkutil.h $(config_h) |
| @@ -1182,22 +1189,25 @@ atimer.o: atimer.c atimer.h systime.h $(config_h) | |||
| 1182 | 1189 | ||
| 1183 | alloc.o: alloc.c process.h frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \ | 1190 | alloc.o: alloc.c process.h frame.h window.h buffer.h puresize.h syssignal.h keyboard.h \ |
| 1184 | blockinput.h atimer.h systime.h charset.h dispextern.h $(config_h) $(INTERVAL_SRC) | 1191 | blockinput.h atimer.h systime.h charset.h dispextern.h $(config_h) $(INTERVAL_SRC) |
| 1185 | bytecode.o: bytecode.c buffer.h syntax.h charset.h window.h $(config_h) | 1192 | bytecode.o: bytecode.c buffer.h syntax.h charset.h window.h dispextern.h \ |
| 1186 | data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h $(config_h) | 1193 | frame.h xterm.h $(config_h) |
| 1194 | data.o: data.c buffer.h puresize.h charset.h syssignal.h keyboard.h frame.h $(config_h) | ||
| 1187 | eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \ | 1195 | eval.o: eval.c commands.h keyboard.h blockinput.h atimer.h systime.h \ |
| 1188 | dispextern.h $(config_h) | 1196 | dispextern.h $(config_h) |
| 1189 | floatfns.o: floatfns.c $(config_h) | 1197 | floatfns.o: floatfns.c $(config_h) |
| 1190 | fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \ | 1198 | fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \ |
| 1191 | frame.h window.h dispextern.h $(INTERVAL_SRC) coding.h md5.h | 1199 | keymap.h frame.h window.h dispextern.h $(INTERVAL_SRC) coding.h md5.h \ |
| 1200 | blockinput.h xterm.h | ||
| 1192 | print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h \ | 1201 | print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h \ |
| 1193 | $(config_h) dispextern.h msdos.h composite.h | 1202 | $(config_h) dispextern.h termchar.h $(INTERVAL_SRC) msdos.h composite.h |
| 1194 | lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \ | 1203 | lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h \ |
| 1195 | termhooks.h coding.h msdos.h | 1204 | $(config_h) $(INTERVAL_SRC) termhooks.h coding.h msdos.h |
| 1196 | 1205 | ||
| 1197 | /* Text properties support */ | 1206 | /* Text properties support */ |
| 1198 | textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \ | 1207 | textprop.o: textprop.c buffer.h window.h dispextern.h $(INTERVAL_SRC) \ |
| 1199 | $(config_h) | 1208 | $(config_h) |
| 1200 | intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h $(config_h) | 1209 | intervals.o: intervals.c buffer.h $(INTERVAL_SRC) keyboard.h puresize.h \ |
| 1210 | keymap.h $(config_h) | ||
| 1201 | composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h) | 1211 | composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h) |
| 1202 | 1212 | ||
| 1203 | /* System-specific programs to be made. | 1213 | /* System-specific programs to be made. |