diff options
| author | Kenichi Handa | 2008-05-20 06:31:49 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-05-20 06:31:49 +0000 |
| commit | 0f91ebe65aa73d0641df52a3fe95e63b4a822398 (patch) | |
| tree | da29e7167f9564ac571eb3c4e2448dd9a3026749 /src | |
| parent | d07f5510d87f6049d12e0a76872a14fc30421b6d (diff) | |
| download | emacs-0f91ebe65aa73d0641df52a3fe95e63b4a822398.tar.gz emacs-0f91ebe65aa73d0641df52a3fe95e63b4a822398.zip | |
(FONTSRC): Delete it. Change all $(FONTSRC) to
font.h through out the file.
(FONT_DRIVERS): Renamed from FONTOBJ.
(obj): Delete $(FONTOBJ). Add font.o.
(SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 48a6e6badb4..6008c93721c 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -538,18 +538,15 @@ emacsappsrc = ${srcdir}/../mac/Emacs.app/ | |||
| 538 | #endif | 538 | #endif |
| 539 | 539 | ||
| 540 | #ifdef HAVE_WINDOW_SYSTEM | 540 | #ifdef HAVE_WINDOW_SYSTEM |
| 541 | FONTSRC = font.h | ||
| 542 | #ifdef HAVE_X_WINDOWS | 541 | #ifdef HAVE_X_WINDOWS |
| 543 | #if defined (HAVE_XFT) | 542 | #if defined (HAVE_XFT) |
| 544 | FONTOBJ = font.o xfont.o ftfont.o xftfont.o ftxfont.o | 543 | FONT_DRIVERS = xfont.o ftfont.o xftfont.o ftxfont.o |
| 545 | #elif defined (HAVE_FREETYPE) | 544 | #elif defined (HAVE_FREETYPE) |
| 546 | FONTOBJ = font.o xfont.o ftfont.o ftxfont.o | 545 | FONT_DRIVERS = xfont.o ftfont.o ftxfont.o |
| 547 | #else /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */ | 546 | #else /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */ |
| 548 | FONTOBJ = font.o xfont.o | 547 | FONT_DRIVERS = xfont.o |
| 549 | #endif /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */ | 548 | #endif /* ! defined (HAVE_XFT) && ! defined (HAVE_FREETYPE) */ |
| 550 | #else /* ! HAVE_X_WINDOWS */ | 549 | #endif /* HAVE_X_WINDOWS */ |
| 551 | FONTOBJ = font.o | ||
| 552 | #endif /* ! HAVE_X_WINDOWS */ | ||
| 553 | #endif /* HAVE_WINDOW_SYSTEM */ | 550 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 554 | 551 | ||
| 555 | /* lastfile must follow all files | 552 | /* lastfile must follow all files |
| @@ -562,12 +559,12 @@ obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \ | |||
| 562 | minibuf.o fileio.o dired.o filemode.o \ | 559 | minibuf.o fileio.o dired.o filemode.o \ |
| 563 | cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \ | 560 | cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o \ |
| 564 | alloc.o data.o doc.o editfns.o callint.o \ | 561 | alloc.o data.o doc.o editfns.o callint.o \ |
| 565 | eval.o floatfns.o fns.o print.o lread.o \ | 562 | eval.o floatfns.o fns.o font.o print.o lread.o \ |
| 566 | syntax.o UNEXEC bytecode.o \ | 563 | syntax.o UNEXEC bytecode.o \ |
| 567 | process.o callproc.o \ | 564 | process.o callproc.o \ |
| 568 | region-cache.o sound.o atimer.o \ | 565 | region-cache.o sound.o atimer.o \ |
| 569 | doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \ | 566 | doprnt.o strftime.o intervals.o textprop.o composite.o md5.o \ |
| 570 | $(MSDOS_OBJ) $(MAC_OBJ) $(CYGWIN_OBJ) $(FONTOBJ) | 567 | $(MSDOS_OBJ) $(MAC_OBJ) $(CYGWIN_OBJ) |
| 571 | 568 | ||
| 572 | /* Object files used on some machine or other. | 569 | /* Object files used on some machine or other. |
| 573 | These go in the DOC file on all machines | 570 | These go in the DOC file on all machines |
| @@ -576,7 +573,7 @@ SOME_MACHINE_OBJECTS = dosfns.o msdos.o \ | |||
| 576 | xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \ | 573 | xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \ |
| 577 | mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o \ | 574 | mac.o macterm.o macfns.o macmenu.o macselect.o fontset.o \ |
| 578 | w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \ | 575 | w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \ |
| 579 | w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o $(FONTOBJ) | 576 | w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o $(FONT_DRIVERS) |
| 580 | 577 | ||
| 581 | 578 | ||
| 582 | #ifdef TERMINFO | 579 | #ifdef TERMINFO |
| @@ -1080,17 +1077,17 @@ filelock.o: filelock.c buffer.h character.h charset.h coding.h systime.h \ | |||
| 1080 | epaths.h $(config_h) | 1077 | epaths.h $(config_h) |
| 1081 | filemode.o: filemode.c $(config_h) | 1078 | filemode.o: filemode.c $(config_h) |
| 1082 | frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ | 1079 | frame.o: frame.c xterm.h window.h frame.h termhooks.h commands.h keyboard.h \ |
| 1083 | blockinput.h atimer.h systime.h buffer.h character.h fontset.h $(FONTSRC) \ | 1080 | blockinput.h atimer.h systime.h buffer.h character.h fontset.h font.h \ |
| 1084 | msdos.h dosfns.h dispextern.h w32term.h macterm.h termchar.h $(config_h) | 1081 | msdos.h dosfns.h dispextern.h w32term.h macterm.h termchar.h $(config_h) |
| 1085 | fringe.o: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h $(config_h) | 1082 | fringe.o: fringe.c dispextern.h frame.h window.h buffer.h termhooks.h $(config_h) |
| 1086 | font.o: font.c dispextern.h frame.h window.h ccl.h character.h charset.h \ | 1083 | font.o: font.c dispextern.h frame.h window.h ccl.h character.h charset.h \ |
| 1087 | font.h $(config_h) | 1084 | font.h $(config_h) |
| 1088 | ftfont.o: dispextern.h frame.h character.h charset.h font.h $(config_h) | 1085 | ftfont.o: dispextern.h frame.h character.h charset.h font.h $(config_h) |
| 1089 | fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h character.h \ | 1086 | fontset.o: dispextern.h fontset.h fontset.c ccl.h buffer.h character.h \ |
| 1090 | charset.h frame.h keyboard.h termhooks.h $(FONTSRC) $(config_h) | 1087 | charset.h frame.h keyboard.h termhooks.h font.h $(config_h) |
| 1091 | getloadavg.o: getloadavg.c $(config_h) | 1088 | getloadavg.o: getloadavg.c $(config_h) |
| 1092 | image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \ | 1089 | image.o: image.c frame.h window.h dispextern.h blockinput.h atimer.h \ |
| 1093 | systime.h xterm.h w32term.h w32gui.h macterm.h macgui.h $(FONTSRC) \ | 1090 | systime.h xterm.h w32term.h w32gui.h macterm.h macgui.h font.h \ |
| 1094 | $(config_h) | 1091 | $(config_h) |
| 1095 | indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ | 1092 | indent.o: indent.c frame.h window.h indent.h buffer.h $(config_h) termchar.h \ |
| 1096 | termopts.h disptab.h region-cache.h character.h category.h composite.h \ | 1093 | termopts.h disptab.h region-cache.h character.h category.h composite.h \ |
| @@ -1164,15 +1161,15 @@ xdisp.o: xdisp.c macros.h commands.h process.h indent.h buffer.h dispextern.h \ | |||
| 1164 | coding.h termchar.h frame.h window.h disptab.h termhooks.h character.h \ | 1161 | coding.h termchar.h frame.h window.h disptab.h termhooks.h character.h \ |
| 1165 | charset.h $(config_h) keyboard.h $(INTERVAL_SRC) region-cache.h xterm.h \ | 1162 | charset.h $(config_h) keyboard.h $(INTERVAL_SRC) region-cache.h xterm.h \ |
| 1166 | w32term.h macterm.h msdos.h composite.h fontset.h blockinput.h atimer.h \ | 1163 | w32term.h macterm.h msdos.h composite.h fontset.h blockinput.h atimer.h \ |
| 1167 | systime.h keymap.h $(FONTSRC) | 1164 | systime.h keymap.h font.h |
| 1168 | xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ | 1165 | xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ |
| 1169 | window.h character.h charset.h msdos.h dosfns.h composite.h atimer.h \ | 1166 | window.h character.h charset.h msdos.h dosfns.h composite.h atimer.h \ |
| 1170 | systime.h keyboard.h fontset.h w32term.h macterm.h $(INTERVAL_SRC) \ | 1167 | systime.h keyboard.h fontset.h w32term.h macterm.h $(INTERVAL_SRC) \ |
| 1171 | termchar.h termhooks.h $(FONTSRC) $(config_h) | 1168 | termchar.h termhooks.h font.h $(config_h) |
| 1172 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \ | 1169 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h dispextern.h \ |
| 1173 | $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \ | 1170 | $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h systime.h epaths.h \ |
| 1174 | character.h charset.h coding.h gtkutil.h $(config_h) termhooks.h \ | 1171 | character.h charset.h coding.h gtkutil.h $(config_h) termhooks.h \ |
| 1175 | fontset.h termchar.h $(FONTSRC) | 1172 | fontset.h termchar.h font.h |
| 1176 | xfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ | 1173 | xfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ |
| 1177 | font.h $(config_h) | 1174 | font.h $(config_h) |
| 1178 | xftfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ | 1175 | xftfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ |
| @@ -1185,7 +1182,7 @@ xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \ | |||
| 1185 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \ | 1182 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h buffer.h \ |
| 1186 | dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \ | 1183 | dispextern.h frame.h disptab.h blockinput.h atimer.h systime.h syssignal.h \ |
| 1187 | keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \ | 1184 | keyboard.h emacs-icon.h character.h charset.h ccl.h fontset.h composite.h \ |
| 1188 | coding.h process.h gtkutil.h $(FONTSRC) $(config_h) | 1185 | coding.h process.h gtkutil.h font.h $(config_h) |
| 1189 | xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \ | 1186 | xselect.o: xselect.c process.h dispextern.h frame.h xterm.h blockinput.h \ |
| 1190 | buffer.h atimer.h systime.h termhooks.h $(config_h) | 1187 | buffer.h atimer.h systime.h termhooks.h $(config_h) |
| 1191 | xrdb.o: xrdb.c $(config_h) epaths.h | 1188 | xrdb.o: xrdb.c $(config_h) epaths.h |
| @@ -1217,7 +1214,7 @@ fns.o: fns.c commands.h $(config_h) frame.h buffer.h character.h keyboard.h \ | |||
| 1217 | blockinput.h atimer.h systime.h xterm.h termhooks.h | 1214 | blockinput.h atimer.h systime.h xterm.h termhooks.h |
| 1218 | print.o: print.c process.h frame.h window.h buffer.h keyboard.h character.h \ | 1215 | print.o: print.c process.h frame.h window.h buffer.h keyboard.h character.h \ |
| 1219 | $(config_h) dispextern.h termchar.h $(INTERVAL_SRC) msdos.h composite.h \ | 1216 | $(config_h) dispextern.h termchar.h $(INTERVAL_SRC) msdos.h composite.h \ |
| 1220 | blockinput.h atimer.h systime.h $(FONTSRC) | 1217 | blockinput.h atimer.h systime.h font.h |
| 1221 | lread.o: lread.c commands.h keyboard.h buffer.h epaths.h character.h \ | 1218 | lread.o: lread.c commands.h keyboard.h buffer.h epaths.h character.h \ |
| 1222 | charset.h $(config_h) $(INTERVAL_SRC) termhooks.h coding.h msdos.h | 1219 | charset.h $(config_h) $(INTERVAL_SRC) termhooks.h coding.h msdos.h |
| 1223 | 1220 | ||