diff options
| author | Richard M. Stallman | 1994-02-09 09:13:05 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-09 09:13:05 +0000 |
| commit | 07ff9ea94bad29f965503a999a146dcc91a52e28 (patch) | |
| tree | 1a396e449899f972bb05b3cb5288003ca632def6 /lib-src | |
| parent | d07482afc1736807b4e914dba011be2db7606cbb (diff) | |
| download | emacs-07ff9ea94bad29f965503a999a146dcc91a52e28.tar.gz emacs-07ff9ea94bad29f965503a999a146dcc91a52e28.zip | |
(C_SWITCH_MACHINE): Get this from autoconf.
(ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Use C_SWITCH_MACHINE.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 5d13750673a..d8650dc9f7f 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -18,6 +18,7 @@ CC=@CC@ | |||
| 18 | CFLAGS=@CFLAGS@ | 18 | CFLAGS=@CFLAGS@ |
| 19 | ALLOCA=@ALLOCA@ | 19 | ALLOCA=@ALLOCA@ |
| 20 | C_SWITCH_SYSTEM=@c_switch_system@ | 20 | C_SWITCH_SYSTEM=@c_switch_system@ |
| 21 | C_SWITCH_MACHINE=@c_switch_machine@ | ||
| 21 | LOADLIBES=@libsrc_libs@ | 22 | LOADLIBES=@libsrc_libs@ |
| 22 | YACC=@YACC@ | 23 | YACC=@YACC@ |
| 23 | version=@version@ | 24 | version=@version@ |
| @@ -97,11 +98,11 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ | |||
| 97 | ### Some other files - those shared with other GNU utilities - need | 98 | ### Some other files - those shared with other GNU utilities - need |
| 98 | ### HAVE_CONFIG_H #defined before they know they can take advantage of | 99 | ### HAVE_CONFIG_H #defined before they know they can take advantage of |
| 99 | ### the information in ../src/config.h. | 100 | ### the information in ../src/config.h. |
| 100 | ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ | 101 | ALL_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ |
| 101 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} | 102 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} |
| 102 | LINK_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ | 103 | LINK_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ |
| 103 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} | 104 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} |
| 104 | CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ | 105 | CPP_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ |
| 105 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} | 106 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
| 106 | # This is the default compilation command. | 107 | # This is the default compilation command. |
| 107 | # But we should never rely on it, because some make version | 108 | # But we should never rely on it, because some make version |