diff options
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index ff3726df6f8..6ed6e97b420 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -407,11 +407,8 @@ GMALLOC_OBJ=@GMALLOC_OBJ@ | |||
| 407 | /* vm-limit.o if !SYSTEM_MALLOC, else empty. */ | 407 | /* vm-limit.o if !SYSTEM_MALLOC, else empty. */ |
| 408 | VMLIMIT_OBJ=@VMLIMIT_OBJ@ | 408 | VMLIMIT_OBJ=@VMLIMIT_OBJ@ |
| 409 | 409 | ||
| 410 | #if defined (REL_ALLOC) && ! defined (SYSTEM_MALLOC) | 410 | /* ralloc.o if !SYSTEM_MALLOC && REL_ALLOC, else empty. */ |
| 411 | rallocobj = ralloc.o | 411 | RALLOC_OBJ=@RALLOC_OBJ@ |
| 412 | #else | ||
| 413 | rallocobj = | ||
| 414 | #endif | ||
| 415 | 412 | ||
| 416 | /* Empty on Cygwin, lastfile.o elsewhere. */ | 413 | /* Empty on Cygwin, lastfile.o elsewhere. */ |
| 417 | PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@ | 414 | PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@ |
| @@ -419,7 +416,7 @@ PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@ | |||
| 419 | POST_ALLOC_OBJ=@POST_ALLOC_OBJ@ | 416 | POST_ALLOC_OBJ=@POST_ALLOC_OBJ@ |
| 420 | 417 | ||
| 421 | /* List of object files that make-docfile should not be told about. */ | 418 | /* List of object files that make-docfile should not be told about. */ |
| 422 | otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(rallocobj) \ | 419 | otherobj= $(TERMCAP_OBJ) $(PRE_ALLOC_OBJ) $(GMALLOC_OBJ) $(RALLOC_OBJ) \ |
| 423 | $(POST_ALLOC_OBJ) $(WIDGET_OBJ) $(LIBOBJS) | 420 | $(POST_ALLOC_OBJ) $(WIDGET_OBJ) $(LIBOBJS) |
| 424 | 421 | ||
| 425 | /* This is the platform-specific list of Lisp files loaded into the | 422 | /* This is the platform-specific list of Lisp files loaded into the |