diff options
| author | Jim Blandy | 1993-03-25 03:51:38 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-25 03:51:38 +0000 |
| commit | c6b81ef2ee869853b21445af2d75a9568385f593 (patch) | |
| tree | a3b89fc36a59fb614cdcd8259f83686cd9ddb5b4 /lib-src | |
| parent | 80afd15ee08885883624baa12d16ae79050da580 (diff) | |
| download | emacs-c6b81ef2ee869853b21445af2d75a9568385f593.tar.gz emacs-c6b81ef2ee869853b21445af2d75a9568385f593.zip | |
* Makefile.in (C_SWITCH_SYSTEM): New variable.
(CFLAGS): Include C_SWITCH_SYSTEM in the flags to pass to the
compiler.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 09e98064afc..73a80f281c1 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -16,6 +16,7 @@ SHELL = /bin/sh | |||
| 16 | 16 | ||
| 17 | CC=cc | 17 | CC=cc |
| 18 | CONFIG_CFLAGS=-g | 18 | CONFIG_CFLAGS=-g |
| 19 | C_SWITCH_SYSTEM= | ||
| 19 | LOADLIBES= | 20 | LOADLIBES= |
| 20 | version=version-not-set | 21 | version=version-not-set |
| 21 | configname=configuration-name-not-set | 22 | configname=configuration-name-not-set |
| @@ -99,7 +100,7 @@ SOURCES = COPYING ChangeLog Makefile.in README aixcc.lex emacs.csh \ | |||
| 99 | ### Some other files - those shared with other GNU utilities - need | 100 | ### Some other files - those shared with other GNU utilities - need |
| 100 | ### HAVE_CONFIG_H #defined before they know they can take advantage of | 101 | ### HAVE_CONFIG_H #defined before they know they can take advantage of |
| 101 | ### the information in ../src/config.h. | 102 | ### the information in ../src/config.h. |
| 102 | CFLAGS=${CONFIG_CFLAGS} -Demacs -DHAVE_CONFIG_H -I../src | 103 | CFLAGS=${CONFIG_CFLAGS} ${C_SWITCH_SYSTEM} -Demacs -DHAVE_CONFIG_H -I../src |
| 103 | 104 | ||
| 104 | all: ${EXECUTABLES} | 105 | all: ${EXECUTABLES} |
| 105 | 106 | ||