diff options
Diffstat (limited to 'src')
| -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 | |||
| 155 | #define LD_SWITCH_MACHINE | 155 | #define LD_SWITCH_MACHINE |
| 156 | #endif | 156 | #endif |
| 157 | 157 | ||
| 158 | /* This holds special options for linking temacs | ||
| 159 | that should be used for linking anything else. */ | ||
| 160 | #ifndef LD_SWITCH_MACHINE_TEMACS | ||
| 161 | #define LD_SWITCH_MACHINE_TEMACS | ||
| 162 | #endif | ||
| 163 | |||
| 158 | /* Some m/MACHINE.h files define this to request special switches in cc. */ | 164 | /* Some m/MACHINE.h files define this to request special switches in cc. */ |
| 159 | #ifndef C_SWITCH_MACHINE | 165 | #ifndef C_SWITCH_MACHINE |
| 160 | #define C_SWITCH_MACHINE | 166 | #define C_SWITCH_MACHINE |
| @@ -456,7 +462,7 @@ LD=ld | |||
| 456 | #endif /* not ORDINARY_LINK */ | 462 | #endif /* not ORDINARY_LINK */ |
| 457 | 463 | ||
| 458 | ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \ | 464 | ALL_LDFLAGS = LD_SWITCH_SYSTEM LD_SWITCH_SYSTEM_TEMACS LD_SWITCH_MACHINE \ |
| 459 | LD_SWITCH_SITE $(LDFLAGS) | 465 | LD_SWITCH_MACHINE_TEMACS LD_SWITCH_SITE $(LDFLAGS) |
| 460 | 466 | ||
| 461 | /* A macro which other sections of Makefile can redefine to munge the | 467 | /* A macro which other sections of Makefile can redefine to munge the |
| 462 | flags before they're passed to LD. This is helpful if you have | 468 | flags before they're passed to LD. This is helpful if you have |