diff options
| author | Richard M. Stallman | 1995-10-30 21:34:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-30 21:34:10 +0000 |
| commit | 56bdb2f5f7bd802fd26462388f15f00b89bc213a (patch) | |
| tree | 991bd00eb0d0df1ff1d5d46ec60451b6d5f3949e | |
| parent | 19e450365092787e8ff3c313d47c057502f0654a (diff) | |
| download | emacs-56bdb2f5f7bd802fd26462388f15f00b89bc213a.tar.gz emacs-56bdb2f5f7bd802fd26462388f15f00b89bc213a.zip | |
(getdate.o, movemail.o): Specify -Demacs.
(ALL_CFLAGS, LINK_CFLAGS, CPP_CFLAGS): Delete -Demacs.
| -rw-r--r-- | lib-src/Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 992d9715188..2f4de9e7f8f 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -181,13 +181,15 @@ LOADLIBES=LIBS_SYSTEM LIBS_MACHINE | |||
| 181 | Some other files - those shared with other GNU utilities - need | 181 | Some other files - those shared with other GNU utilities - need |
| 182 | HAVE_CONFIG_H #defined before they know they can take advantage of | 182 | HAVE_CONFIG_H #defined before they know they can take advantage of |
| 183 | the information in ../src/config.h. */ | 183 | the information in ../src/config.h. */ |
| 184 | ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ | 184 | ALL_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ |
| 185 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} | 185 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} |
| 186 | LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -Demacs -DHAVE_CONFIG_H \ | 186 | LINK_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -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 -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 | /* This is all of CPP_CFLAGS except -Demacs. */ | 190 | /* This was all of CPP_CFLAGS except -Demacs. |
| 191 | Now that -Demacs has been deleted from CPP_CFLAGS, | ||
| 192 | this is actually the same as CPP_CFLAGS, but let's not delete it yet. */ | ||
| 191 | BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ | 193 | BASE_CFLAGS = C_SWITCH_SYSTEM C_SWITCH_MACHINE -DHAVE_CONFIG_H \ |
| 192 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} | 194 | -I. -I../src -I${srcdir} -I${srcdir}/../src ${CPPFLAGS} ${CFLAGS} |
| 193 | 195 | ||
| @@ -344,7 +346,7 @@ movemail: movemail.o pop.o | |||
| 344 | $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(LOADLIBES) $(MOVE_LIBS) -o movemail | 346 | $(CC) ${LINK_CFLAGS} ${MOVE_FLAGS} movemail.o pop.o $(LOADLIBES) $(MOVE_LIBS) -o movemail |
| 345 | 347 | ||
| 346 | movemail.o: ${srcdir}/movemail.c ../src/config.h | 348 | movemail.o: ${srcdir}/movemail.c ../src/config.h |
| 347 | $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/movemail.c | 349 | $(CC) -c ${CPP_CFLAGS} -Demacs ${MOVE_FLAGS} ${srcdir}/movemail.c |
| 348 | 350 | ||
| 349 | pop.o: ${srcdir}/pop.c | 351 | pop.o: ${srcdir}/pop.c |
| 350 | $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c | 352 | $(CC) -c ${CPP_CFLAGS} ${MOVE_FLAGS} ${srcdir}/pop.c |
| @@ -372,7 +374,7 @@ $(srcdir)/getdate.c: ${srcdir}/getdate.y | |||
| 372 | cd $(srcdir); ${YACC} ${YFLAGS} getdate.y | 374 | cd $(srcdir); ${YACC} ${YFLAGS} getdate.y |
| 373 | cd $(srcdir); mv y.tab.c getdate.c | 375 | cd $(srcdir); mv y.tab.c getdate.c |
| 374 | getdate.o: ${srcdir}/getdate.c ../src/config.h | 376 | getdate.o: ${srcdir}/getdate.c ../src/config.h |
| 375 | $(CC) $(CPP_CFLAGS) -c ${srcdir}/getdate.c | 377 | $(CC) $(CPP_CFLAGS) -Demacs -c ${srcdir}/getdate.c |
| 376 | 378 | ||
| 377 | timer.o: ${srcdir}/timer.c ../src/config.h | 379 | timer.o: ${srcdir}/timer.c ../src/config.h |
| 378 | $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c | 380 | $(CC) -c $(CPP_CFLAGS) ${srcdir}/timer.c |