diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-04-27 20:20:31 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-04-27 20:20:31 +0000 |
commit | 82a635f37787df7b81b5acc2b3bd1550c1e98e53 (patch) | |
tree | 6acaf5af05bc7af881f8f5ac7044594ae17239e6 /lib-src | |
parent | 3fa89e8c0fe939d90dc6980dbf9a6b7474d8b999 (diff) | |
download | emacs-82a635f37787df7b81b5acc2b3bd1550c1e98e53.tar.gz |
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. */ #define LIBS_MACHINE #endif +#ifndef C_SWITCH_SYSTEM +#define C_SWITCH_SYSTEM +#endif + +#ifndef C_SWITCH_MACHINE +#define C_SWITCH_MACHINE +#endif + #undef MOVEMAIL_NEEDS_BLESSING #ifndef MAIL_USE_FLOCK #ifndef MAIL_USE_LOCKF @@ -54,8 +62,6 @@ SHELL = /bin/sh CC=@CC@ CFLAGS=@CFLAGS@ ALLOCA=@ALLOCA@ -C_SWITCH_SYSTEM=@c_switch_system@ -C_SWITCH_MACHINE=@c_switch_machine@ LOADLIBES=LIBS_SYSTEM LIBS_MACHINE YACC=@YACC@ version=@version@ @@ -136,11 +142,11 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ Some other files - those shared with other GNU utilities - need HAVE_CONFIG_H #defined before they know they can take advantage of the information in ../src/config.h. */ -ALL_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ +ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} -LINK_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ +LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} -CPP_CFLAGS = ${C_SWITCH_SYSTEM} ${C_SWITCH_MACHINE} -Demacs -DHAVE_CONFIG_H \ +CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} /* This is the default compilation command. |