]> git.eshelyaron.com Git - emacs.git/commitdiff
Handle Motif and Open-look.
authorRichard M. Stallman <rms@gnu.org>
Thu, 12 May 1994 22:09:39 +0000 (22:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 12 May 1994 22:09:39 +0000 (22:09 +0000)
(LIBW): New variable.
(LIBXT): Use it.

src/Makefile.in

index 9e96452c02ff26b5fcdb5fe64c199a42892bca34..6160c3c1f2c41c34726f84d76cba483c606e02e4 100644 (file)
@@ -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