aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index ebbc4f45d61..820ade11d39 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -596,8 +596,10 @@ obj= dispnew.o frame.o scroll.o xdisp.o $(XMENU_OBJ) window.o \
596 These go in the DOC file on all machines 596 These go in the DOC file on all machines
597 in case they are needed there. */ 597 in case they are needed there. */
598SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \ 598SOME_MACHINE_OBJECTS = sunfns.o dosfns.o msdos.o \
599 xterm.o xfns.o xmenu.o xselect.o xrdb.o \ 599 xterm.o xfns.o xmenu.o xselect.o xrdb.o xsmfns.o fringe.o image.o \
600 mac.o macterm.o macfns.o macmenu.o fontset.o 600 mac.o macterm.o macfns.o macmenu.o fontset.o \
601 w32.o w32bdf.o w32console.o w32fns.o w32heap.o w32inevt.o \
602 w32menu.o w32proc.o w32reg.o w32select.o w32term.o w32xfns.o
601 603
602 604
603#ifdef TERMINFO 605#ifdef TERMINFO
@@ -948,6 +950,7 @@ ${libsrc}make-docfile${EXEEXT}:
948#endif 950#endif
949 951
950temacs${EXEEXT}: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT} 952temacs${EXEEXT}: MAKE_PARALLEL $(LOCALCPP) $(STARTFILES) stamp-oldxmenu ${obj} ${otherobj} OBJECTS_MACHINE prefix-args${EXEEXT}
953 echo "${obj} ${otherobj} " OBJECTS_MACHINE > buildobj.lst
951 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \ 954 $(LD) YMF_PASS_LDFLAGS (${STARTFLAGS} ${TEMACS_LDFLAGS}) $(LDFLAGS) \
952 -o temacs ${STARTFILES} ${obj} ${otherobj} \ 955 -o temacs ${STARTFILES} ${obj} ${otherobj} \
953 OBJECTS_MACHINE ${LIBES} 956 OBJECTS_MACHINE ${LIBES}
@@ -963,7 +966,7 @@ prefix-args${EXEEXT}: prefix-args.c $(config_h)
963#define OLDXMENU_OPTIONS 966#define OLDXMENU_OPTIONS
964#endif 967#endif
965 968
966#if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS) 969#if defined (HAVE_X_WINDOWS) && defined (HAVE_X11) && defined (HAVE_MENUS) && ! defined (HAVE_GTK)
967 970
968/* We use stamp-xmenu with these two deps 971/* We use stamp-xmenu with these two deps
969 to both ensure that lwlib gets remade based on its dependencies 972 to both ensure that lwlib gets remade based on its dependencies
@@ -1019,12 +1022,12 @@ really-oldXMenu:
1019 @true /* make -t should not create really-oldXMenu. */ 1022 @true /* make -t should not create really-oldXMenu. */
1020.PHONY: really-oldXMenu 1023.PHONY: really-oldXMenu
1021#endif /* not USE_X_TOOLKIT */ 1024#endif /* not USE_X_TOOLKIT */
1022#else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */ 1025#else /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! HAVE_GTK) */
1023 1026
1024/* We don\'t really need this, but satisfy the dependency. */ 1027/* We don\'t really need this, but satisfy the dependency. */
1025stamp-oldxmenu: 1028stamp-oldxmenu:
1026 touch stamp-oldxmenu 1029 touch stamp-oldxmenu
1027#endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS) */ 1030#endif /* not (HAVE_X_WINDOWS && HAVE_X11 && HAVE_MENUS && ! HAVE_GTK) */
1028 1031
1029../config.status:: epaths.in 1032../config.status:: epaths.in
1030 @echo "The file epaths.h needs to be set up from epaths.in." 1033 @echo "The file epaths.h needs to be set up from epaths.in."
@@ -1279,6 +1282,7 @@ mostlyclean:
1279 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a 1282 rm -f temacs${EXEEXT} prefix-args${EXEEXT} core *.core \#* *.o libXMenu11.a liblw.a
1280 rm -f ../etc/DOC 1283 rm -f ../etc/DOC
1281 rm -f bootstrap-emacs${EXEEXT} 1284 rm -f bootstrap-emacs${EXEEXT}
1285 rm -f buildobj.lst
1282clean: mostlyclean 1286clean: mostlyclean
1283 rm -f emacs-*${EXEEXT} emacs${EXEEXT} 1287 rm -f emacs-*${EXEEXT} emacs${EXEEXT}
1284/**/# This is used in making a distribution. 1288/**/# This is used in making a distribution.