aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-31 05:31:42 +0000
committerRichard M. Stallman1997-05-31 05:31:42 +0000
commit5bfd038eca8e8f550516b358e0612fb94ad203bf (patch)
tree2b4ed3501478166daae1e98ca6cf4a7539369fb5 /src
parentf0009536f9d0a60966e32884cc04498f943ce6e2 (diff)
downloademacs-5bfd038eca8e8f550516b358e0612fb94ad203bf.tar.gz
emacs-5bfd038eca8e8f550516b358e0612fb94ad203bf.zip
(XOBJ, MSDOS_OBJ, SOME_MACHINE_OBJECTS): Delete xfaces.o.
(obj): Add xfaces.o. (FACE_SUPPORT, SOME_MACHINE_LISP): Delete faces.elc. (shortlisp, lisp): Add faces.elc
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index ab7d2e15a20..9dc8beb9780 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -294,7 +294,7 @@ ALL_CFLAGS=-Demacs -DHAVE_CONFIG_H $(TOOLKIT_DEFINES) $(MYCPPFLAG) -I. -I${srcdi
294#ifdef HAVE_MENUS 294#ifdef HAVE_MENUS
295 295
296/* Include xmenu.o in the list of X object files. */ 296/* Include xmenu.o in the list of X object files. */
297XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o fontset.o 297XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
298 298
299/* The X Menu stuff is present in the X10 distribution, but missing 299/* The X Menu stuff is present in the X10 distribution, but missing
300 from X11. If we have X10, just use the installed library; 300 from X11. If we have X10, just use the installed library;
@@ -315,7 +315,7 @@ LIBXMENU= -lXMenu
315 315
316/* Otherwise, omit xmenu.o from the list of X object files, and 316/* Otherwise, omit xmenu.o from the list of X object files, and
317 don't worry about the menu library at all. */ 317 don't worry about the menu library at all. */
318XOBJ= xterm.o xfns.o xfaces.o xselect.o xrdb.o fontset.o 318XOBJ= xterm.o xfns.o xselect.o xrdb.o fontset.o
319LIBXMENU= 319LIBXMENU=
320#endif /* not HAVE_MENUS */ 320#endif /* not HAVE_MENUS */
321 321
@@ -487,7 +487,7 @@ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS)
487#ifdef HAVE_X_WINDOWS 487#ifdef HAVE_X_WINDOWS
488#define MSDOS_OBJ dosfns.o msdos.o 488#define MSDOS_OBJ dosfns.o msdos.o
489#else 489#else
490#define MSDOS_OBJ dosfns.o msdos.o xfaces.o w16select.o 490#define MSDOS_OBJ dosfns.o msdos.o w16select.o
491#endif 491#endif
492#else 492#else
493#define MSDOS_OBJ 493#define MSDOS_OBJ
@@ -498,7 +498,7 @@ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_MACHINE LD_SWITCH_SITE $(LDFLAGS)
498 whose initialized data areas should be dumped as pure by dump-emacs. */ 498 whose initialized data areas should be dumped as pure by dump-emacs. */
499obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \ 499obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \
500 charset.o coding.o category.o ccl.o\ 500 charset.o coding.o category.o ccl.o\
501 cm.o term.o $(XOBJ) \ 501 cm.o term.o xfaces.o $(XOBJ) \
502 emacs.o keyboard.o macros.o keymap.o sysdep.o \ 502 emacs.o keyboard.o macros.o keymap.o sysdep.o \
503 buffer.o filelock.o insdel.o marker.o INTERVAL_OBJ \ 503 buffer.o filelock.o insdel.o marker.o INTERVAL_OBJ \
504 minibuf.o fileio.o dired.o filemode.o \ 504 minibuf.o fileio.o dired.o filemode.o \
@@ -514,7 +514,7 @@ obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \
514 These go in the DOC file on all machines 514 These go in the DOC file on all machines
515 in case they are needed there. */ 515 in case they are needed there. */
516SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o intervals.o textprop.o \ 516SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o intervals.o textprop.o \
517 xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o 517 xterm.o xfns.o xmenu.o xselect.o xrdb.o
518 518
519 519
520#ifdef TERMINFO 520#ifdef TERMINFO
@@ -571,7 +571,7 @@ widgetobj=
571otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) 571otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj)
572 572
573#ifdef HAVE_FACES 573#ifdef HAVE_FACES
574#define FACE_SUPPORT ${lispsource}faces.elc ${lispsource}facemenu.elc 574#define FACE_SUPPORT ${lispsource}facemenu.elc
575#else 575#else
576#define FACE_SUPPORT 576#define FACE_SUPPORT
577#endif 577#endif
@@ -633,6 +633,7 @@ lisp= \
633 ${lispsource}byte-run.elc \ 633 ${lispsource}byte-run.elc \
634 ${lispsource}cus-start.el \ 634 ${lispsource}cus-start.el \
635 ${lispsource}custom.elc \ 635 ${lispsource}custom.elc \
636 ${lispsource}faces.elc \
636 ${lispsource}files.elc \ 637 ${lispsource}files.elc \
637 ${lispsource}fill.elc \ 638 ${lispsource}fill.elc \
638 ${lispsource}format.elc \ 639 ${lispsource}format.elc \
@@ -697,6 +698,7 @@ shortlisp= \
697 ../lisp/byte-run.elc \ 698 ../lisp/byte-run.elc \
698 ../lisp/cus-start.el \ 699 ../lisp/cus-start.el \
699 ../lisp/custom.elc \ 700 ../lisp/custom.elc \
701 ../lisp/faces.elc \
700 ../lisp/files.elc \ 702 ../lisp/files.elc \
701 ../lisp/fill.elc \ 703 ../lisp/fill.elc \
702 ../lisp/format.elc \ 704 ../lisp/format.elc \
@@ -747,7 +749,7 @@ shortlisp= \
747 We use ../lisp/ to start the file names 749 We use ../lisp/ to start the file names
748 to reduce the size of the argument list for make-docfile 750 to reduce the size of the argument list for make-docfile
749 for the sake of systems which can't handle large ones. */ 751 for the sake of systems which can't handle large ones. */
750SOME_MACHINE_LISP = ${dotdot}/lisp/faces.elc ${dotdot}/lisp/facemenu.elc \ 752SOME_MACHINE_LISP = ${dotdot}/lisp/facemenu.elc \
751 ${dotdot}/lisp/float-sup.elc ${dotdot}/lisp/frame.elc \ 753 ${dotdot}/lisp/float-sup.elc ${dotdot}/lisp/frame.elc \
752 ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \ 754 ${dotdot}/lisp/menu-bar.elc ${dotdot}/lisp/mouse.elc \
753 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \ 755 ${dotdot}/lisp/select.elc ${dotdot}/lisp/scroll-bar.elc \