diff options
| author | Juanma Barranquero | 2003-04-30 00:02:23 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-04-30 00:02:23 +0000 |
| commit | 93a16fa8a8fd1fccfd2cb15cd16681f95bd3d701 (patch) | |
| tree | 1145593121e39470b5263528ccd184f269d06b1a /lwlib | |
| parent | 85a2313482e84cb3498b1ac62c0ff0f2548b993d (diff) | |
| download | emacs-93a16fa8a8fd1fccfd2cb15cd16681f95bd3d701.tar.gz emacs-93a16fa8a8fd1fccfd2cb15cd16681f95bd3d701.zip | |
Make things function properly in case both LessTif and Open Motif are installed.
Diffstat (limited to 'lwlib')
| -rw-r--r-- | lwlib/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in index 0115ab9c082..11368819f4a 100644 --- a/lwlib/Makefile.in +++ b/lwlib/Makefile.in | |||
| @@ -9,6 +9,7 @@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ | |||
| 9 | CC=@CC@ | 9 | CC=@CC@ |
| 10 | CFLAGS=@CFLAGS@ | 10 | CFLAGS=@CFLAGS@ |
| 11 | CPP=@CPP@ | 11 | CPP=@CPP@ |
| 12 | CPPFLAGS=@CPPFLAGS@ | ||
| 12 | LN_S=@LN_S@ | 13 | LN_S=@LN_S@ |
| 13 | RANLIB=@RANLIB@ | 14 | RANLIB=@RANLIB@ |
| 14 | # See below--@X_TOOLKIT_TYPE@ is used below. | 15 | # See below--@X_TOOLKIT_TYPE@ is used below. |
| @@ -31,11 +32,11 @@ TOOLKIT_DEFINES = -DUSE_$(USE_X_TOOLKIT) | |||
| 31 | 32 | ||
| 32 | # ../src is needed to find config.h. | 33 | # ../src is needed to find config.h. |
| 33 | ALL_CFLAGS= $(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ | 34 | ALL_CFLAGS= $(C_SWITCH_SITE) $(C_SWITCH_SYSTEM) $(C_SWITCH_X_SITE) \ |
| 34 | $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CPPFLAGS) $(CFLAGS) \ | 35 | $(C_SWITCH_X_SYSTEM) $(C_SWITCH_MACHINE) $(CFLAGS) \ |
| 35 | -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src | 36 | -DHAVE_CONFIG_H -Demacs -I. -I../src -I${srcdir} -I${srcdir}/../src |
| 36 | 37 | ||
| 37 | .c.o: | 38 | .c.o: |
| 38 | $(CC) -c ${ALL_CFLAGS} $< | 39 | $(CC) -c $(CPPFLAGS) ${ALL_CFLAGS} $< |
| 39 | 40 | ||
| 40 | all:: liblw.a | 41 | all:: liblw.a |
| 41 | 42 | ||