diff options
| author | Richard M. Stallman | 1995-04-08 17:51:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-08 17:51:52 +0000 |
| commit | 1d0b600d3198c05975f565228ab342212fb19714 (patch) | |
| tree | e0bf9eebc272e78458b77d823fa26db565f37cef /lib-src | |
| parent | 2ca4ad7ef5fe7c3f435e48e8b0de0665be96a22e (diff) | |
| download | emacs-1d0b600d3198c05975f565228ab342212fb19714.tar.gz emacs-1d0b600d3198c05975f565228ab342212fb19714.zip | |
(BASE_CFLAGS): Renamed from ALLOCA_CFLAGS.
(alloca.o, regex.o): Use BASE_CFLAGS.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/Makefile.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 548a718e8ed..fa093a6efc1 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -187,7 +187,8 @@ LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ | |||
| 187 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} | 187 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CFLAGS} |
| 188 | CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ | 188 | CPP_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ |
| 189 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} | 189 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
| 190 | ALLOCA_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ | 190 | /* This is all of CPP_CFLAGS except -Demacs. */ |
| 191 | BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ | ||
| 191 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} | 192 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
| 192 | 193 | ||
| 193 | /* This is the default compilation command. | 194 | /* This is the default compilation command. |
| @@ -299,12 +300,12 @@ getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h | |||
| 299 | getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h | 300 | getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h |
| 300 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c | 301 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c |
| 301 | alloca.o: ${srcdir}/alloca.c | 302 | alloca.o: ${srcdir}/alloca.c |
| 302 | ${CC} -c ${ALLOCA_CFLAGS} ${srcdir}/alloca.c | 303 | ${CC} -c ${BASE_CFLAGS} ${srcdir}/alloca.c |
| 303 | 304 | ||
| 304 | REGEXPOBJ = regex.o | 305 | REGEXPOBJ = regex.o |
| 305 | REGEXPDEPS = $(REGEXPOBJ) ../src/regex.h | 306 | REGEXPDEPS = $(REGEXPOBJ) ../src/regex.h |
| 306 | regex.o: ../src/regex.c ../src/regex.h | 307 | regex.o: ../src/regex.c ../src/regex.h |
| 307 | ${CC} -c ${CPP_CFLAGS} -Uemacs -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c | 308 | ${CC} -c ${BASE_CFLAGS} -DCONFIG_BROKETS -DINHIBIT_STRING_HEADER ${srcdir}/../src/regex.c |
| 308 | 309 | ||
| 309 | etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h | 310 | etags: ${srcdir}/etags.c $(GETOPTDEPS) $(REGEXPDEPS) ../src/config.h |
| 310 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" -DETAGS_REGEXPS ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags | 311 | $(CC) ${ALL_CFLAGS} -DVERSION="\"${version}\"" -DETAGS_REGEXPS ${srcdir}/etags.c $(GETOPTOBJS) $(REGEXPOBJ) $(LOADLIBES) -o etags |