diff options
author | Dave Love <fx@gnu.org> | 2000-04-14 12:40:49 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-04-14 12:40:49 +0000 |
commit | f6a92bd8d167f24510fd6654fd190a6260f805fd (patch) | |
tree | 61e7f1225fa0874fd94b500a27c45fc83889d8aa /src/Makefile.in | |
parent | 33fef74ef0ff32f409073b6824647ce11f7a0220 (diff) | |
download | emacs-f6a92bd8d167f24510fd6654fd190a6260f805fd.tar.gz |
(LIBOBJS): New variable.
(obj): Use it.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 0f777ca38e0..0d3f1f3d767 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -32,6 +32,7 @@ LN_S=@LN_S@ # BSD doesn't have it as a default. @SET_MAKE@ LIBS = @LIBS@ +LIBOBJS = @LIBOBJS@ # On Xenix and the IBM RS6000, double-dot gets screwed up. dot = . @@ -551,7 +552,7 @@ obj= dispnew.o frame.o scroll.o xdisp.o xmenu.o window.o \ process.o callproc.o \ region-cache.o sound.o atimer.o \ doprnt.o strftime.o intervals.o textprop.o composite.o \ - @LIBOBJS@ MSDOS_OBJ + $(LIBOBJS) MSDOS_OBJ /* Object files used on some machine or other. These go in the DOC file on all machines |