aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2000-04-19 11:24:43 +0000
committerDave Love2000-04-19 11:24:43 +0000
commitcd667a182dc54904427ae089aadd791d1373abb9 (patch)
tree4201b5eb7c55a31c99dbf82a401bde037ab9670c /src
parent8fffa182c3fc541965eacf7d9679cbdb12c7cc16 (diff)
downloademacs-cd667a182dc54904427ae089aadd791d1373abb9.tar.gz
emacs-cd667a182dc54904427ae089aadd791d1373abb9.zip
(LIBS): Don't use.
(GETLOADAVG_OBJ): Define again. (otherobj): Add GETLOADAVG_OBJ.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 1a9d6952d44..2ebb23578ad 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -18,6 +18,14 @@
18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19# Boston, MA 02111-1307, USA. 19# Boston, MA 02111-1307, USA.
20 20
21
22# Note that this file is edited by msdos/sed1v2.inp for MSDOS. That
23# script may need modifying in sync with changes made here. Try to
24# avoid shell-ism because the DOS build has to use the DOS shell.
25
26# Don't try to replace the ccp processing using autoconf facilities,
27# says rms.
28
21# Here are the things that we expect ../configure to edit. 29# Here are the things that we expect ../configure to edit.
22# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH. 30# We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
23srcdir=@srcdir@ 31srcdir=@srcdir@
@@ -31,7 +39,9 @@ LN_S=@LN_S@
31# Substitute an assignment for the MAKE variable, because 39# Substitute an assignment for the MAKE variable, because
32# BSD doesn't have it as a default. 40# BSD doesn't have it as a default.
33@SET_MAKE@ 41@SET_MAKE@
34LIBS = @LIBS@ 42# Don't use LIBS. configure puts stuff in it that either shouldn't be
43# linked with Emacs or is duplicated by the cpp stuff below.
44# LIBS = @LIBS@
35LIBOBJS = @LIBOBJS@ 45LIBOBJS = @LIBOBJS@
36 46
37# On Xenix and the IBM RS6000, double-dot gets screwed up. 47# On Xenix and the IBM RS6000, double-dot gets screwed up.
@@ -503,6 +513,12 @@ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \
503 513
504INTERVAL_SRC = intervals.h composite.h 514INTERVAL_SRC = intervals.h composite.h
505 515
516#ifdef HAVE_GETLOADAVG
517#define GETLOADAVG_OBJ
518#else
519#define GETLOADAVG_OBJ getloadavg.o
520#endif
521
506#ifdef MSDOS 522#ifdef MSDOS
507#ifdef HAVE_X_WINDOWS 523#ifdef HAVE_X_WINDOWS
508MSDOS_OBJ = dosfns.o msdos.o 524MSDOS_OBJ = dosfns.o msdos.o
@@ -591,7 +607,7 @@ widgetobj=
591 607
592/* define otherobj as list of object files that make-docfile 608/* define otherobj as list of object files that make-docfile
593 should not be told about. */ 609 should not be told about. */
594otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBOBJS) 610otherobj= $(termcapobj) lastfile.o $(mallocobj) $(allocaobj) $(widgetobj) $(LIBOBJS) GETLOADAVG_OBJ
595 611
596#ifdef HAVE_MOUSE 612#ifdef HAVE_MOUSE
597#define MOUSE_SUPPORT ${lispsource}mouse.elc \ 613#define MOUSE_SUPPORT ${lispsource}mouse.elc \