diff options
| author | Fred Pierresteguy | 1994-03-11 15:15:31 +0000 |
|---|---|---|
| committer | Fred Pierresteguy | 1994-03-11 15:15:31 +0000 |
| commit | ce5a08a1b46e9d059ed7271f9cdbeaf337b30ff9 (patch) | |
| tree | d5c2092540e64aa6773e6440f9d92e71484312b4 /lwlib | |
| parent | 9331cca8ba2f434bcbd468d14efbd5acf7426880 (diff) | |
| download | emacs-ce5a08a1b46e9d059ed7271f9cdbeaf337b30ff9.tar.gz emacs-ce5a08a1b46e9d059ed7271f9cdbeaf337b30ff9.zip | |
*** empty log message ***
Diffstat (limited to 'lwlib')
| -rw-r--r-- | lwlib/Makefile.in | 5 | ||||
| -rw-r--r-- | lwlib/lwlib.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in index 5690838f52b..be96edc0a1c 100644 --- a/lwlib/Makefile.in +++ b/lwlib/Makefile.in | |||
| @@ -21,8 +21,8 @@ USE_X_TOOLKIT=@X_TOOLKIT_TYPE@ | |||
| 21 | RANLIB = ranlib | 21 | RANLIB = ranlib |
| 22 | RM = rm -f | 22 | RM = rm -f |
| 23 | 23 | ||
| 24 | LUCID_SRCS = lwlib-Xlw.c xlwmenu.c | 24 | LUCID_SRCS = lwlib-Xlw.c xlwmenu.c lwlib-Xaw.c |
| 25 | LUCID_OBJS = lwlib-Xlw.o xlwmenu.o | 25 | LUCID_OBJS = lwlib-Xlw.o xlwmenu.o lwlib-Xaw.o |
| 26 | MOTIF_SRCS = lwlib-Xm.c | 26 | MOTIF_SRCS = lwlib-Xm.c |
| 27 | MOTIF_OBJS = lwlib-Xm.o | 27 | MOTIF_OBJS = lwlib-Xm.o |
| 28 | OLIT_SRCS = lwlib-Xol.c lwlib-Xolmb.c | 28 | OLIT_SRCS = lwlib-Xol.c lwlib-Xolmb.c |
| @@ -62,6 +62,7 @@ xrdb-cpp.o: xrdb-cpp.c | |||
| 62 | lwlib-utils.o: lwlib-utils.h | 62 | lwlib-utils.o: lwlib-utils.h |
| 63 | lwlib.o: lwlib.h lwlib-int.h | 63 | lwlib.o: lwlib.h lwlib-int.h |
| 64 | lwlib-Xlw.o: lwlib.h lwlib-int.h | 64 | lwlib-Xlw.o: lwlib.h lwlib-int.h |
| 65 | lwlib-Xaw.o: lwlib.h lwlib-int.h | ||
| 65 | lwlib-Xm.o: lwlib.h lwlib-int.h lwlib-utils.h | 66 | lwlib-Xm.o: lwlib.h lwlib-int.h lwlib-utils.h |
| 66 | lwlib-Xol.o: lwlib.h lwlib-int.h | 67 | lwlib-Xol.o: lwlib.h lwlib-int.h |
| 67 | lwlib-Xolmb.o: lwlib-Xolmb.h lwlib-XolmbP.h | 68 | lwlib-Xolmb.o: lwlib-Xolmb.h lwlib-XolmbP.h |
diff --git a/lwlib/lwlib.c b/lwlib/lwlib.c index 996238cc37a..ec83a3f5cb6 100644 --- a/lwlib/lwlib.c +++ b/lwlib/lwlib.c | |||
| @@ -48,6 +48,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 48 | #endif | 48 | #endif |
| 49 | #if defined (USE_MOTIF) | 49 | #if defined (USE_MOTIF) |
| 50 | #include "lwlib-Xm.h" | 50 | #include "lwlib-Xm.h" |
| 51 | #else /* not USE_MOTIF */ | ||
| 52 | #if defined (USE_LUCID) | ||
| 53 | #define USE_XAW | ||
| 54 | #endif /* not USE_MOTIF && USE_LUCID */ | ||
| 51 | #endif | 55 | #endif |
| 52 | #if defined (USE_OLIT) | 56 | #if defined (USE_OLIT) |
| 53 | #include "lwlib-Xol.h" | 57 | #include "lwlib-Xol.h" |