From: Chong Yidong Date: Sun, 8 Jun 2008 04:37:50 +0000 (+0000) Subject: Compile menu.c. X-Git-Tag: emacs-pretest-23.0.90~5021 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=71015b451a4a7bca0bd5d0b90fca923a7b2bfa1f;p=emacs.git Compile menu.c. --- 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 #endif /* HAVE_X_WINDOWS */ #endif /* HAVE_WINDOW_SYSTEM */ +#ifdef HAVE_X_WINDOWS +MENU_OBJ = menu.o +#endif + /* lastfile must follow all files whose initialized data areas should be dumped as pure by dump-emacs. */ -obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \ +obj= dispnew.o frame.o scroll.o xdisp.o $(MENU_OBJ) $(XMENU_OBJ) window.o \ charset.o coding.o category.o ccl.o character.o chartab.o \ cm.o term.o terminal.o xfaces.o $(XOBJ) $(GTK_OBJ) $(DBUS_OBJ) \ 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 \ font.h $(config_h) ftxfont.o: dispextern.h xterm.h frame.h blockinput.h character.h charset.h \ font.h $(config_h) +menu.o: menu.c lisp.h keyboard.h keymap.h frame.h termhooks.h blockinput.h \ + dispextern.h $(srcdir)/../lwlib/lwlib.h gtkutil.h $(config_h) xmenu.o: xmenu.c xterm.h termhooks.h window.h dispextern.h frame.h buffer.h \ charset.h keyboard.h $(srcdir)/../lwlib/lwlib.h blockinput.h atimer.h \ systime.h gtkutil.h msdos.h coding.h $(config_h)