diff options
| author | Richard M. Stallman | 1994-09-16 20:06:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-16 20:06:28 +0000 |
| commit | f489d5262b63118731480ac0c1fd0245f66fdf72 (patch) | |
| tree | 52a2704d55c0bc5aa2020f0c7c2a147d7ec2234f /src | |
| parent | 5acc1a62c82a84561d64a593dad04550322226c3 (diff) | |
| download | emacs-f489d5262b63118731480ac0c1fd0245f66fdf72.tar.gz emacs-f489d5262b63118731480ac0c1fd0245f66fdf72.zip | |
(xmenu.o): Depend on puresize.h.
(cmds.o): Depend on window.h.
(OLDXMENU variable): Refer to the library in the dir where it is compiled.
(OLDXMENU rule): Delete the commands; keep just a dep.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index a94b39d55b2..c7fe299dd9d 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -287,10 +287,10 @@ XOBJ= xterm.o xfns.o xfaces.o xmenu.o xselect.o xrdb.o | |||
| 287 | otherwise, use our own copy. */ | 287 | otherwise, use our own copy. */ |
| 288 | #ifdef HAVE_X11 | 288 | #ifdef HAVE_X11 |
| 289 | #ifdef USE_X_TOOLKIT | 289 | #ifdef USE_X_TOOLKIT |
| 290 | OLDXMENU=liblw.a | 290 | OLDXMENU=${lwlibdir}liblw.a |
| 291 | LIBXMENU= $(OLDXMENU) | 291 | LIBXMENU= $(OLDXMENU) |
| 292 | #else /* not USE_X_TOOLKIT */ | 292 | #else /* not USE_X_TOOLKIT */ |
| 293 | OLDXMENU= libXMenu11.a | 293 | OLDXMENU= ${oldXMenudir}libXMenu11.a |
| 294 | LIBXMENU= $(OLDXMENU) | 294 | LIBXMENU= $(OLDXMENU) |
| 295 | #endif /* not USE_X_TOOLKIT */ | 295 | #endif /* not USE_X_TOOLKIT */ |
| 296 | #else /* not HAVE_X11 */ | 296 | #else /* not HAVE_X11 */ |
| @@ -678,8 +678,6 @@ shortnames: | |||
| 678 | #ifdef HAVE_X11 | 678 | #ifdef HAVE_X11 |
| 679 | #ifdef USE_X_TOOLKIT | 679 | #ifdef USE_X_TOOLKIT |
| 680 | $(OLDXMENU): really-lwlib | 680 | $(OLDXMENU): really-lwlib |
| 681 | -rm -f $(OLDXMENU) /* We might have a link to an old version. */ | ||
| 682 | ${LN_S} ${lwlibdir}liblw.a $(OLDXMENU) | ||
| 683 | 681 | ||
| 684 | /* Encode the values of these two macros in Make variables, | 682 | /* Encode the values of these two macros in Make variables, |
| 685 | so we can use $(...) to substitute their values within "...". */ | 683 | so we can use $(...) to substitute their values within "...". */ |
| @@ -702,8 +700,6 @@ really-lwlib: | |||
| 702 | #else /* not USE_X_TOOLKIT */ | 700 | #else /* not USE_X_TOOLKIT */ |
| 703 | #ifdef HAVE_X_MENU | 701 | #ifdef HAVE_X_MENU |
| 704 | $(OLDXMENU): really-oldXMenu | 702 | $(OLDXMENU): really-oldXMenu |
| 705 | -rm -f $(OLDXMENU) /* We might have a link to an old version. */ | ||
| 706 | ${LN_S} ${oldXMenudir}libXMenu11.a $(OLDXMENU) | ||
| 707 | 703 | ||
| 708 | /* Encode the values of these two macros in Make variables, | 704 | /* Encode the values of these two macros in Make variables, |
| 709 | so we can use $(...) to substitute their values within "...". */ | 705 | so we can use $(...) to substitute their values within "...". */ |
| @@ -789,7 +785,7 @@ callproc.o: callproc.c paths.h buffer.h commands.h $(config_h) \ | |||
| 789 | casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h) | 785 | casefiddle.o: casefiddle.c syntax.h commands.h buffer.h $(config_h) |
| 790 | casetab.o: casetab.c buffer.h $(config_h) | 786 | casetab.o: casetab.c buffer.h $(config_h) |
| 791 | cm.o: cm.c cm.h termhooks.h $(config_h) | 787 | cm.o: cm.c cm.h termhooks.h $(config_h) |
| 792 | cmds.o: cmds.c syntax.h buffer.h commands.h $(config_h) | 788 | cmds.o: cmds.c syntax.h buffer.h commands.h window.h $(config_h) |
| 793 | pre-crt0.o: pre-crt0.c | 789 | pre-crt0.o: pre-crt0.c |
| 794 | crt0.o: crt0.c $(config_h) | 790 | crt0.o: crt0.c $(config_h) |
| 795 | CRT0_COMPILE ${srcdir}/crt0.c | 791 | CRT0_COMPILE ${srcdir}/crt0.c |
| @@ -852,7 +848,7 @@ xfaces.o: xfaces.c dispextern.h frame.h xterm.h buffer.h blockinput.h \ | |||
| 852 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \ | 848 | xfns.o: xfns.c buffer.h frame.h window.h keyboard.h xterm.h \ |
| 853 | blockinput.h $(config_h) | 849 | blockinput.h $(config_h) |
| 854 | xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \ | 850 | xmenu.o: xmenu.c xterm.h window.h dispextern.h frame.h keyboard.h \ |
| 855 | blockinput.h $(config_h) | 851 | blockinput.h puresize.h $(config_h) |
| 856 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \ | 852 | xterm.o: xterm.c xterm.h termhooks.h termopts.h termchar.h window.h \ |
| 857 | dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \ | 853 | dispextern.h frame.h disptab.h blockinput.h systime.h syssignal.h \ |
| 858 | keyboard.h gnu.h sink.h sinkmask.h $(config_h) | 854 | keyboard.h gnu.h sink.h sinkmask.h $(config_h) |