aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-06-08 04:37:50 +0000
committerChong Yidong2008-06-08 04:37:50 +0000
commit71015b451a4a7bca0bd5d0b90fca923a7b2bfa1f (patch)
tree321973c7b7d1bdc0acb4ab8df8108efd89750ac7
parentfebcacdd374505b38b329a7e232097b594aa0e7e (diff)
downloademacs-71015b451a4a7bca0bd5d0b90fca923a7b2bfa1f.tar.gz
emacs-71015b451a4a7bca0bd5d0b90fca923a7b2bfa1f.zip
Compile menu.c.
-rw-r--r--src/Makefile.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 0b22dd9e4b8..95251960bd1 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -539,9 +539,13 @@ FONT_DRIVERS = xfont.o
539#endif /* HAVE_X_WINDOWS */ 539#endif /* HAVE_X_WINDOWS */
540#endif /* HAVE_WINDOW_SYSTEM */ 540#endif /* HAVE_WINDOW_SYSTEM */
541 541
542#ifdef HAVE_X_WINDOWS
543MENU_OBJ = menu.o
544#endif
545
542/* lastfile must follow all files 546/* lastfile must follow all files
543 whose initialized data areas should be dumped as pure by dump-emacs. */ 547 whose initialized data areas should be dumped as pure by dump-emacs. */
544obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \ 548obj= dispnew.o frame.o scroll.o xdisp.o $(MENU_OBJ) $(XMENU_OBJ) window.o \
545 charset.o coding.o category.o ccl.o character.o chartab.o \ 549 charset.o coding.o category.o ccl.o character.o chartab.o \
546 cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \ 550 cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \
547 emacs.o keyboard.o macros.o keymap.o sysdep.o \ 551 emacs.o keyboard.o macros.o keymap.o sysdep.o \
@@ -1166,6 +1170,8 @@ xftfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1166 font.h $(config_h) 1170 font.h $(config_h)
1167ftxfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ 1171ftxfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \
1168 font.h $(config_h) 1172 font.h $(config_h)
1173menu.o: menu.c lisp.h keyboard.h keymap.h frame.h termhooks.h blockinput.h \
1174 dispextern.h $(srcdir)/../lwlib/lwlib.h gtkutil.h $(config_h)
1169xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \ 1175xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \
1170 charset.h keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h \ 1176 charset.h keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h \
1171 systime.h gtkutil.h msdos.h coding.h $(config_h) 1177 systime.h gtkutil.h msdos.h coding.h $(config_h)