diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-21 02:59:21 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-21 02:59:21 +0000 |
commit | 5be75283b34382bc587142f0fe76474345cc2122 (patch) | |
tree | 94588f66d6a0559bea14cef86c7e93c73df6e75a | |
parent | 3c3a57e3debe388ec3959b94f6fd2b7cd9c27ab1 (diff) | |
download | emacs-5be75283b34382bc587142f0fe76474345cc2122.tar.gz emacs-5be75283b34382bc587142f0fe76474345cc2122.tar.bz2 emacs-5be75283b34382bc587142f0fe76474345cc2122.zip |
(LD_SWITCH_MACHINE_TEMACS): New macro (defaults empty).
(ALL_LDFLAGS): Use LD_SWITCH_MACHINE_TEMACS here.
-rw-r--r-- | src/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 8156dd51893..819c37609ee 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -155,6 +155,12 @@ CC = C_COMPILER #define LD_SWITCH_MACHINE #endif +/* This holds special options for linking temacs + that should be used for linking anything else. */ +#ifndef LD_SWITCH_MACHINE_TEMACS +#define LD_SWITCH_MACHINE_TEMACS +#endif + /* Some m/MACHINE.h files define this to request special switches in cc. */ #ifndef C_SWITCH_MACHINE #define C_SWITCH_MACHINE @@ -456,7 +462,7 @@ LD=ld #endif /* not ORDINARY_LINK */ ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \ - LD_SWITCH_SITE $(LDFLAGS) + LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS) /* A macro which other sections of Makefile can redefine to munge the flags before they're passed to LD. This is helpful if you have |