diff options
| author | Karl Heuer | 1994-04-27 20:20:31 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-27 20:20:31 +0000 |
| commit | 82a635f37787df7b81b5acc2b3bd1550c1e98e53 (patch) | |
| tree | 6acaf5af05bc7af881f8f5ac7044594ae17239e6 /lib-src | |
| parent | 3fa89e8c0fe939d90dc6980dbf9a6b7474d8b999 (diff) | |
| download | emacs-82a635f37787df7b81b5acc2b3bd1550c1e98e53.tar.gz emacs-82a635f37787df7b81b5acc2b3bd1550c1e98e53.zip | |
C_SWITCH_SYSTEM and C_SWITCH_MACHINE are now cpp symbols, not make variables.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 6c9abec7947..94cb500bfff 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -32,6 +32,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 32 | #define LIBS_MACHINE | 32 | #define LIBS_MACHINE |
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | #ifndef C_SWITCH_SYSTEM | ||
| 36 | #define C_SWITCH_SYSTEM | ||
| 37 | #endif | ||
| 38 | |||
| 39 | #ifndef C_SWITCH_MACHINE | ||
| 40 | #define C_SWITCH_MACHINE | ||
| 41 | #endif | ||
| 42 | |||
| 35 | #undef MOVEMAIL_NEEDS_BLESSING | 43 | #undef MOVEMAIL_NEEDS_BLESSING |
| 36 | #ifndef MAIL_USE_FLOCK | 44 | #ifndef MAIL_USE_FLOCK |
| 37 | #ifndef MAIL_USE_LOCKF | 45 | #ifndef MAIL_USE_LOCKF |
| @@ -54,8 +62,6 @@ SHELL = /bin/sh | |||
| 54 | CC=@CC@ | 62 | CC=@CC@ |
| 55 | CFLAGS=@CFLAGS@ | 63 | CFLAGS=@CFLAGS@ |
| 56 | ALLOCA=@ALLOCA@ | 64 | ALLOCA=@ALLOCA@ |
| 57 | C_SWITCH_SYSTEM=@c_switch_system@ | ||
| 58 | C_SWITCH_MACHINE=@c_switch_machine@ | ||
| 59 | LOADLIBES=LIBS_SYSTEM LIBS_MACHINE | 65 | LOADLIBES=LIBS_SYSTEM LIBS_MACHINE |
| 60 | YACC=@YACC@ | 66 | YACC=@YACC@ |
| 61 | version=@version@ | 67 | version=@version@ |
| @@ -136,11 +142,11 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ | |||
| 136 | Some other files - those shared with other GNU utilities - need | 142 | Some other files - those shared with other GNU utilities - need |
| 137 | HAVE_CONFIG_H #defined before they know they can take advantage of | 143 | HAVE_CONFIG_H #defined before they know they can take advantage of |
| 138 | the information in ../src/config.h. */ | 144 | the information in ../src/config.h. */ |
| 139 | ALL_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ | 145 | ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ |
| 140 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} | 146 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} |
| 141 | LINK_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ | 147 | LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ |
| 142 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} | 148 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} |
| 143 | CPP_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ | 149 | CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ |
| 144 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} | 150 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
| 145 | 151 | ||
| 146 | /* This is the default compilation command. | 152 | /* This is the default compilation command. |