aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaroly Lorentey2004-07-03 18:40:41 +0000
committerKaroly Lorentey2004-07-03 18:40:41 +0000
commit91b726f0f87d0adcec194642256375f4302c52a8 (patch)
tree0ef9f636a61f5ba385969e8476380a1aaf4ad9f9 /src
parentfc2040c0343bd4579373b83014248a5b5e4f40fd (diff)
downloademacs-91b726f0f87d0adcec194642256375f4302c52a8.tar.gz
emacs-91b726f0f87d0adcec194642256375f4302c52a8.zip
Reapply src/Makefile.in changes that got lost in the tagline snafu of patch-197.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-206
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in41
1 files changed, 23 insertions, 18 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index f473888cc5d..13aa119aa8c 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -699,6 +699,7 @@ otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBO
699lisp= \ 699lisp= \
700 ${lispsource}abbrev.elc \ 700 ${lispsource}abbrev.elc \
701 ${lispsource}buff-menu.elc \ 701 ${lispsource}buff-menu.elc \
702 ${lispsource}server.elc \
702 ${lispsource}button.elc \ 703 ${lispsource}button.elc \
703 ${lispsource}emacs-lisp/byte-run.elc \ 704 ${lispsource}emacs-lisp/byte-run.elc \
704 ${lispsource}cus-face.elc \ 705 ${lispsource}cus-face.elc \
@@ -791,6 +792,7 @@ lisp= \
791shortlisp= \ 792shortlisp= \
792 ../lisp/abbrev.elc \ 793 ../lisp/abbrev.elc \
793 ../lisp/buff-menu.elc \ 794 ../lisp/buff-menu.elc \
795 ../lisp/server.elc \
794 ../lisp/button.elc \ 796 ../lisp/button.elc \
795 ../lisp/emacs-lisp/byte-run.elc \ 797 ../lisp/emacs-lisp/byte-run.elc \
796 ../lisp/cus-face.elc \ 798 ../lisp/cus-face.elc \
@@ -884,7 +886,9 @@ SOME_MACHINE_LISP = ${dotdot}/lisp/mouse.elc \
884 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \ 886 ${dotdot}/lisp/w32-fns.elc ${dotdot}/lisp/dos-w32.elc \
885 ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \ 887 ${dotdot}/lisp/disp-table.elc ${dotdot}/lisp/dos-vars.elc \
886 ${dotdot}/lisp/international/ccl.elc \ 888 ${dotdot}/lisp/international/ccl.elc \
887 ${dotdot}/lisp/international/codepage.elc 889 ${dotdot}/lisp/international/codepage.elc \
890 ${dotdot}/lisp/mouse.elc ${dotdot}/lisp/international/fontset.elc \
891 ${dotdot}/lisp/x-dnd.elc ${dotdot}/lisp/term/x-win.elc
888 892
889/* Construct full set of libraries to be linked. 893/* Construct full set of libraries to be linked.
890 Note that SunOS needs -lm to come before -lc; otherwise, you get 894 Note that SunOS needs -lm to come before -lc; otherwise, you get
@@ -928,7 +932,7 @@ emacs${EXEEXT}: temacs${EXEEXT} ${etc}DOC ${lisp}
928 for the first time, this prevents any variation between configurations 932 for the first time, this prevents any variation between configurations
929 in the contents of the DOC file. 933 in the contents of the DOC file.
930 Likewise for ${SOME_MACHINE_LISP}. */ 934 Likewise for ${SOME_MACHINE_LISP}. */
931${etc}DOC: ${libsrc}make-docfile${EXEEXT} ${obj} ${shortlisp} ${SOME_MACHINE_LISP} 935${etc}DOC: ${libsrc}make-docfile ${obj} ${shortlisp} ${SOME_MACHINE_LISP}
932 -rm -f ${etc}DOC 936 -rm -f ${etc}DOC
933 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC 937 ${libsrc}make-docfile -d ${srcdir} ${SOME_MACHINE_OBJECTS} ${obj} > ${etc}DOC
934 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp} 938 ${libsrc}make-docfile -a ${etc}DOC -d ${srcdir} ${SOME_MACHINE_LISP} ${shortlisp}
@@ -1057,8 +1061,8 @@ category.o: category.c category.h buffer.h charset.h $(config_h)
1057ccl.o: ccl.c ccl.h charset.h coding.h $(config_h) 1061ccl.o: ccl.c ccl.h charset.h coding.h $(config_h)
1058charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \ 1062charset.o: charset.c charset.h buffer.h coding.h composite.h disptab.h \
1059 $(config_h) 1063 $(config_h)
1060coding.o: coding.c coding.h ccl.h buffer.h charset.h intervals.h composite.h window.h $(config_h) 1064coding.o: coding.c coding.h ccl.h buffer.h charset.h intervals.h composite.h window.h frame.h termhooks.h $(config_h)
1061cm.o: cm.c cm.h termhooks.h $(config_h) 1065cm.o: cm.c frame.h cm.h termhooks.h termchar.h $(config_h)
1062cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \ 1066cmds.o: cmds.c syntax.h buffer.h charset.h commands.h window.h $(config_h) \
1063 msdos.h dispextern.h 1067 msdos.h dispextern.h
1064pre-crt0.o: pre-crt0.c 1068pre-crt0.o: pre-crt0.c
@@ -1066,7 +1070,7 @@ ecrt0.o: ecrt0.c $(config_h)
1066 CRT0_COMPILE ${srcdir}/ecrt0.c 1070 CRT0_COMPILE ${srcdir}/ecrt0.c
1067dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \ 1071dired.o: dired.c commands.h buffer.h $(config_h) charset.h coding.h regex.h \
1068 systime.h 1072 systime.h
1069dispnew.o: dispnew.c systty.h systime.h commands.h process.h frame.h \ 1073dispnew.o: dispnew.c systime.h commands.h process.h frame.h \
1070 window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \ 1074 window.h buffer.h dispextern.h termchar.h termopts.h termhooks.h cm.h \
1071 disptab.h \ 1075 disptab.h \
1072 xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \ 1076 xterm.h blockinput.h atimer.h charset.h msdos.h composite.h keyboard.h \
@@ -1085,10 +1089,10 @@ filelock.o: filelock.c buffer.h systime.h epaths.h $(config_h)
1085filemode.o: filemode.c $(config_h) 1089filemode.o: filemode.c $(config_h)
1086frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ 1090frame.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 \ 1091 blockinput.h atimer.h systime.h buffer.h charset.h fontset.h \
1088 msdos.h dosfns.h dispextern.h $(config_h) 1092 msdos.h dosfns.h dispextern.h termchar.h $(config_h)
1089fringe.o: fringe.c dispextern.h frame.h window.h buffer.h $(config_h) 1093fringe.o: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h $(config_h)
1090fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h charset.h frame.h \ 1094fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h charset.h frame.h \
1091 keyboard.h $(config_h) 1095 keyboard.h termhooks.h $(config_h)
1092getloadavg.o: getloadavg.c $(config_h) 1096getloadavg.o: getloadavg.c $(config_h)
1093image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \ 1097image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \
1094 systime.h xterm.h w32term.h w32gui.h macterm.h macgui.h $(config_h) 1098 systime.h xterm.h w32term.h w32gui.h macterm.h macgui.h $(config_h)
@@ -1099,7 +1103,7 @@ insdel.o: insdel.c window.h buffer.h $(INTERVAL_SRC) blockinput.h charset.h \
1099 dispextern.h atimer.h systime.h $(config_h) 1103 dispextern.h atimer.h systime.h $(config_h)
1100keyboard.o: keyboard.c termchar.h termhooks.h termopts.h buffer.h charset.h \ 1104keyboard.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 \ 1105 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 \ 1106 systime.h dispextern.h syntax.h $(INTERVAL_SRC) blockinput.h \
1103 atimer.h xterm.h puresize.h msdos.h $(config_h) 1107 atimer.h xterm.h puresize.h msdos.h $(config_h)
1104keymap.o: keymap.c buffer.h commands.h keyboard.h termhooks.h blockinput.h \ 1108keymap.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) 1109 atimer.h systime.h puresize.h charset.h intervals.h $(config_h)
@@ -1113,7 +1117,7 @@ vm-limit.o: vm-limit.c mem-limits.h $(config_h)
1113marker.o: marker.c buffer.h charset.h $(config_h) 1117marker.o: marker.c buffer.h charset.h $(config_h)
1114md5.o: md5.c md5.h $(config_h) 1118md5.o: md5.c md5.h $(config_h)
1115minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \ 1119minibuf.o: minibuf.c syntax.h dispextern.h frame.h window.h keyboard.h \
1116 buffer.h commands.h charset.h msdos.h $(config_h) 1120 buffer.h commands.h charset.h msdos.h termhooks.h $(config_h)
1117mktime.o: mktime.c $(config_h) 1121mktime.o: mktime.c $(config_h)
1118msdos.o: msdos.c msdos.h dosfns.h systime.h termhooks.h dispextern.h frame.h \ 1122msdos.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 \ 1123 termopts.h termchar.h charset.h coding.h ccl.h disptab.h window.h \
@@ -1125,7 +1129,7 @@ process.o: process.c process.h buffer.h window.h termhooks.h termopts.h \
1125regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h 1129regex.o: regex.c syntax.h buffer.h $(config_h) regex.h category.h charset.h
1126region-cache.o: region-cache.c buffer.h region-cache.h $(config_h) 1130region-cache.o: region-cache.c buffer.h region-cache.h $(config_h)
1127scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \ 1131scroll.o: scroll.c termchar.h dispextern.h frame.h msdos.h keyboard.h \
1128 $(config_h) 1132 termhooks.h $(config_h)
1129search.o: search.c regex.h commands.h buffer.h region-cache.h syntax.h \ 1133search.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) 1134 blockinput.h atimer.h systime.h category.h charset.h composite.h $(config_h)
1131strftime.o: strftime.c $(config_h) 1135strftime.o: strftime.c $(config_h)
@@ -1133,7 +1137,7 @@ syntax.o: syntax.c syntax.h buffer.h commands.h category.h charset.h \
1133 composite.h $(config_h) 1137 composite.h $(config_h)
1134sysdep.o: sysdep.c syssignal.h systty.h systime.h syswait.h blockinput.h \ 1138sysdep.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 cm.h $(config_h)
1137term.o: term.c termchar.h termhooks.h termopts.h $(config_h) cm.h frame.h \ 1141term.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
1139termcap.o: termcap.c $(config_h) 1143termcap.o: termcap.c $(config_h)
@@ -1149,16 +1153,17 @@ w16select.o: w16select.c dispextern.h frame.h blockinput.h atimer.h systime.h \
1149widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \ 1153widget.o: widget.c xterm.h frame.h dispextern.h widgetprv.h \
1150 $(srcdir)/../lwlib/lwlib.h $(config_h) 1154 $(srcdir)/../lwlib/lwlib.h $(config_h)
1151window.o: window.c indent.h commands.h frame.h window.h buffer.h termchar.h \ 1155window.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 \ 1156 disptab.h keyboard.h dispextern.h msdos.h composite.h \
1153 $(config_h) 1157 $(config_h)
1154xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h coding.h \ 1158xdisp.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) \ 1159 termchar.h frame.h window.h disptab.h termhooks.h charset.h $(config_h) \
1156 msdos.h composite.h fontset.h blockinput.h atimer.h systime.h keymap.h 1160 msdos.h composite.h fontset.h blockinput.h atimer.h systime.h keymap.h
1157xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ 1161xfaces.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) 1162 window.h charset.h msdos.h dosfns.h composite.h atimer.h systime.h \
1163 termchar.h termhooks.h $(config_h)
1159xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \ 1164xfns.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 \ 1165 $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \
1161 charset.h gtkutil.h $(config_h) 1166 charset.h gtkutil.h termchar.h termhooks.h $(config_h)
1162xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \ 1167xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \
1163 keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h \ 1168 keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h \
1164 gtkutil.h msdos.h coding.h $(config_h) 1169 gtkutil.h msdos.h coding.h $(config_h)
@@ -1167,7 +1172,7 @@ xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \
1167 keyboard.h gnu.h charset.h ccl.h fontset.h composite.h \ 1172 keyboard.h gnu.h charset.h ccl.h fontset.h composite.h \
1168 coding.h process.h gtkutil.h $(config_h) 1173 coding.h process.h gtkutil.h $(config_h)
1169xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \ 1174xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \
1170 buffer.h atimer.h systime.h $(config_h) 1175 buffer.h atimer.h systime.h termhooks.h $(config_h)
1171xrdb.o: xrdb.c $(config_h) epaths.h 1176xrdb.o: xrdb.c $(config_h) epaths.h
1172xsmfns.o: xsmfns.c $(config_h) systime.h sysselect.h termhooks.h xterm.h \ 1177xsmfns.o: xsmfns.c $(config_h) systime.h sysselect.h termhooks.h xterm.h \
1173 lisp.h termopts.h 1178 lisp.h termopts.h
@@ -1190,7 +1195,7 @@ floatfns.o: floatfns.c $(config_h)
1190fns.o: fns.c commands.h $(config_h) frame.h buffer.h charset.h keyboard.h \ 1195fns.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 1196 frame.h window.h dispextern.h $(INTERVAL_SRC) coding.h md5.h
1192print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h \ 1197print.o: print.c process.h frame.h window.h buffer.h keyboard.h charset.h \
1193 $(config_h) dispextern.h msdos.h composite.h 1198 $(config_h) dispextern.h msdos.h composite.h termchar.h intervals.h
1194lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \ 1199lread.o: lread.c commands.h keyboard.h buffer.h epaths.h charset.h $(config_h) \
1195 termhooks.h coding.h msdos.h 1200 termhooks.h coding.h msdos.h
1196 1201
@@ -1204,7 +1209,7 @@ composite.o: composite.c buffer.h charset.h $(INTERVAL_SRC) $(config_h)
1204 OTHER_FILES and OBJECTS_MACHINE 1209 OTHER_FILES and OBJECTS_MACHINE
1205 select which of these should be compiled. */ 1210 select which of these should be compiled. */
1206 1211
1207sunfns.o: sunfns.c buffer.h window.h dispextern.h $(config_h) 1212sunfns.o: sunfns.c buffer.h window.h dispextern.h termhooks.h $(config_h)
1208 1213
1209#ifdef HAVE_CARBON 1214#ifdef HAVE_CARBON
1210abbrev.o buffer.o callint.o cmds.o dispnew.o editfns.o fileio.o frame.o \ 1215abbrev.o buffer.o callint.o cmds.o dispnew.o editfns.o fileio.o frame.o \