From: Richard M. Stallman Date: Thu, 12 May 1994 22:09:39 +0000 (+0000) Subject: Handle Motif and Open-look. X-Git-Tag: emacs-19.34~8374 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b1fc21c5c374541453429803e9bfa7ace3c82d65;p=emacs.git Handle Motif and Open-look. (LIBW): New variable. (LIBXT): Use it. --- 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= #endif /* not HAVE_X_MENU */ #ifdef USE_X_TOOLKIT -LIBXT= -lXaw -lXt -lXmu -lXext +#define @X_TOOLKIT_TYPE@ +#if defined (LUCID) || defined (ATHENA) +LIBW= -lXaw +#endif +#ifdef MOTIF +#ifdef LIB_MOTIF +LIBW= LIB_MOTIF +#else +LIBW= -lXm +#endif +#endif +#ifdef OPEN_LOOK +LIBW= -lXol +#endif + +LIBXT= $(LIBW) -lXt -lXmu -lXext #else LIBXT= #endif