aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-02-09 09:13:05 +0000
committerRichard M. Stallman1994-02-09 09:13:05 +0000
commit07ff9ea94bad29f965503a999a146dcc91a52e28 (patch)
tree1a396e449899f972bb05b3cb5288003ca632def6 /lib-src
parentd07482afc1736807b4e914dba011be2db7606cbb (diff)
downloademacs-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.in7
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@
18CFLAGS=@CFLAGS@ 18CFLAGS=@CFLAGS@
19ALLOCA=@ALLOCA@ 19ALLOCA=@ALLOCA@
20C_SWITCH_SYSTEM=@c_switch_system@ 20C_SWITCH_SYSTEM=@c_switch_system@
21C_SWITCH_MACHINE=@c_switch_machine@
21LOADLIBES=@libsrc_libs@ 22LOADLIBES=@libsrc_libs@
22YACC=@YACC@ 23YACC=@YACC@
23version=@version@ 24version=@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.
100ALL_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ 101ALL_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}
102LINK_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ 103LINK_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}
104CPP_CFLAGS = ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H \ 105CPP_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