diff options
| author | Richard M. Stallman | 1994-05-12 22:09:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-12 22:09:39 +0000 |
| commit | b1fc21c5c374541453429803e9bfa7ace3c82d65 (patch) | |
| tree | 34f13c86b7649a8b2b1504889d4da6a9faecab1d /src | |
| parent | 89e143860cc9ca10e7ac3b0369eb1a52ec39caed (diff) | |
| download | emacs-b1fc21c5c374541453429803e9bfa7ace3c82d65.tar.gz emacs-b1fc21c5c374541453429803e9bfa7ace3c82d65.zip | |
Handle Motif and Open-look.
(LIBW): New variable.
(LIBXT): Use it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 9e96452c02f..6160c3c1f2c 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -290,7 +290,22 @@ LIBXMENU= | |||
| 290 | #endif /* not HAVE_X_MENU */ | 290 | #endif /* not HAVE_X_MENU */ |
| 291 | 291 | ||
| 292 | #ifdef USE_X_TOOLKIT | 292 | #ifdef USE_X_TOOLKIT |
| 293 | LIBXT= -lXaw -lXt -lXmu -lXext | 293 | #define @X_TOOLKIT_TYPE@ |
| 294 | #if defined (LUCID) || defined (ATHENA) | ||
| 295 | LIBW= -lXaw | ||
| 296 | #endif | ||
| 297 | #ifdef MOTIF | ||
| 298 | #ifdef LIB_MOTIF | ||
| 299 | LIBW= LIB_MOTIF | ||
| 300 | #else | ||
| 301 | LIBW= -lXm | ||
| 302 | #endif | ||
| 303 | #endif | ||
| 304 | #ifdef OPEN_LOOK | ||
| 305 | LIBW= -lXol | ||
| 306 | #endif | ||
| 307 | |||
| 308 | LIBXT= $(LIBW) -lXt -lXmu -lXext | ||
| 294 | #else | 309 | #else |
| 295 | LIBXT= | 310 | LIBXT= |
| 296 | #endif | 311 | #endif |