aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-07-18 06:22:37 +0000
committerJim Blandy1993-07-18 06:22:37 +0000
commit331636c44e8f8a235a0efbb34966bcc3184fb280 (patch)
tree1f27edf7bb11e8d1c8848a451bfd364ec59922d5 /src
parent800642d27d266aeba75b30f991a2416a7e57d84c (diff)
downloademacs-331636c44e8f8a235a0efbb34966bcc3184fb280.tar.gz
emacs-331636c44e8f8a235a0efbb34966bcc3184fb280.zip
* Makefile.in (C_SWITCH_SYSTEM): New variable, set by top-level
Makefile. (xmakefile): Pass it to the C preprocessor.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 4092005e8f1..d1ea05166a3 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -10,6 +10,7 @@ MAKE = make
10CC=cc 10CC=cc
11CPP=cc -E 11CPP=cc -E
12CFLAGS=-g 12CFLAGS=-g
13C_SWITCH_SYSTEM=
13srcdir=@srcdir@/src 14srcdir=@srcdir@/src
14VPATH=@srcdir@/src 15VPATH=@srcdir@/src
15LN_S=ln -s 16LN_S=ln -s
@@ -79,7 +80,7 @@ relock:
79xmakefile: ymakefile config.h ../config.status 80xmakefile: ymakefile config.h ../config.status
80 -rm -f xmakefile xmakefile.new junk.c junk.cpp 81 -rm -f xmakefile xmakefile.new junk.c junk.cpp
81 cp ${srcdir}/ymakefile junk.c 82 cp ${srcdir}/ymakefile junk.c
82 ${CPP} -I${srcdir} ${CFLAGS} junk.c > junk.cpp 83 ${CPP} -I${srcdir} ${CFLAGS} ${C_SWITCH_SYSTEM} junk.c > junk.cpp
83 < junk.cpp \ 84 < junk.cpp \
84 sed -e 's/^#.*//' \ 85 sed -e 's/^#.*//' \
85 -e 's/^[ \f\t][ \f\t]*$$//' \ 86 -e 's/^[ \f\t][ \f\t]*$$//' \