diff options
| author | Jim Blandy | 1993-07-18 06:22:37 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-18 06:22:37 +0000 |
| commit | 331636c44e8f8a235a0efbb34966bcc3184fb280 (patch) | |
| tree | 1f27edf7bb11e8d1c8848a451bfd364ec59922d5 /src | |
| parent | 800642d27d266aeba75b30f991a2416a7e57d84c (diff) | |
| download | emacs-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.in | 3 |
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 | |||
| 10 | CC=cc | 10 | CC=cc |
| 11 | CPP=cc -E | 11 | CPP=cc -E |
| 12 | CFLAGS=-g | 12 | CFLAGS=-g |
| 13 | C_SWITCH_SYSTEM= | ||
| 13 | srcdir=@srcdir@/src | 14 | srcdir=@srcdir@/src |
| 14 | VPATH=@srcdir@/src | 15 | VPATH=@srcdir@/src |
| 15 | LN_S=ln -s | 16 | LN_S=ln -s |
| @@ -79,7 +80,7 @@ relock: | |||
| 79 | xmakefile: ymakefile config.h ../config.status | 80 | xmakefile: 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]*$$//' \ |