diff options
| author | Kenichi Handa | 2003-09-08 11:56:09 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-09-08 11:56:09 +0000 |
| commit | 463f5630a5e7cbe7f042bc1175d1fa1c4e98860f (patch) | |
| tree | 3287d0c628fea2249abf4635b3a4f45bedd6f8c4 /lib-src/Makefile.in | |
| parent | 4256310de631bd57c78b88b5131caa073315b3d7 (diff) | |
| download | emacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.tar.gz emacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.zip | |
New directory
Diffstat (limited to 'lib-src/Makefile.in')
| -rw-r--r-- | lib-src/Makefile.in | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 7868364148a..1554b347113 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -27,6 +27,7 @@ SHELL = /bin/sh | |||
| 27 | 27 | ||
| 28 | CC=@CC@ | 28 | CC=@CC@ |
| 29 | CFLAGS=@CFLAGS@ | 29 | CFLAGS=@CFLAGS@ |
| 30 | ALLOCA=@ALLOCA@ | ||
| 30 | version=@version@ | 31 | version=@version@ |
| 31 | configuration=@configuration@ | 32 | configuration=@configuration@ |
| 32 | EXEEXT=@EXEEXT@ | 33 | EXEEXT=@EXEEXT@ |
| @@ -144,6 +145,12 @@ MOVE_FLAGS= | |||
| 144 | #define NOT_C_CODE | 145 | #define NOT_C_CODE |
| 145 | #include "../src/config.h" | 146 | #include "../src/config.h" |
| 146 | 147 | ||
| 148 | /* We won't really call alloca; | ||
| 149 | don't let the file name alloca.c get messed up. */ | ||
| 150 | #ifdef alloca | ||
| 151 | #undef alloca | ||
| 152 | #endif | ||
| 153 | |||
| 147 | /* Some machines don\'t find the standard C libraries in the usual place. */ | 154 | /* Some machines don\'t find the standard C libraries in the usual place. */ |
| 148 | #ifndef ORDINARY_LINK | 155 | #ifndef ORDINARY_LINK |
| 149 | #ifndef LIB_STANDARD_LIBSRC | 156 | #ifndef LIB_STANDARD_LIBSRC |
| @@ -382,12 +389,14 @@ test-distrib${EXEEXT}: ${srcdir}/test-distrib.c | |||
| 382 | $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c | 389 | $(CC) ${ALL_CFLAGS} -o test-distrib ${srcdir}/test-distrib.c |
| 383 | ./test-distrib ${srcdir}/testfile | 390 | ./test-distrib ${srcdir}/testfile |
| 384 | 391 | ||
| 385 | GETOPTOBJS = getopt.o getopt1.o | 392 | GETOPTOBJS = getopt.o getopt1.o $(ALLOCA) |
| 386 | GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h | 393 | GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h |
| 387 | getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h | 394 | getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h |
| 388 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c | 395 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c |
| 389 | getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h | 396 | getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h |
| 390 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c | 397 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c |
| 398 | alloca.o: ${srcdir}/alloca.c | ||
| 399 | ${CC} -Demacs -c ${BASE_CFLAGS} ${srcdir}/alloca.c | ||
| 391 | 400 | ||
| 392 | #ifdef REGEXP_IN_LIBC | 401 | #ifdef REGEXP_IN_LIBC |
| 393 | REGEXPOBJ = | 402 | REGEXPOBJ = |
| @@ -420,8 +429,8 @@ make-docfile${EXEEXT}: ${srcdir}/make-docfile.c ../src/config.h | |||
| 420 | digest-doc${EXEEXT}: ${srcdir}/digest-doc.c | 429 | digest-doc${EXEEXT}: ${srcdir}/digest-doc.c |
| 421 | $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc | 430 | $(CC) ${ALL_CFLAGS} ${srcdir}/digest-doc.c $(LOADLIBES) -o digest-doc |
| 422 | 431 | ||
| 423 | sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c | 432 | sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c ${ALLOCA} |
| 424 | $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c $(LOADLIBES) -o sorted-doc | 433 | $(CC) ${ALL_CFLAGS} ${srcdir}/sorted-doc.c ${ALLOCA} $(LOADLIBES) -o sorted-doc |
| 425 | 434 | ||
| 426 | b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS) | 435 | b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS) |
| 427 | $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \ | 436 | $(CC) ${ALL_CFLAGS} ${srcdir}/b2m.c -DVERSION="\"${version}\"" \ |
| @@ -478,6 +487,3 @@ xveterm${EXEEXT}: ${srcdir}/emacstool.c | |||
| 478 | $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \ | 487 | $(CC) -o xveterm -DXVIEW -DTTERM ${ALL_CFLAGS} ${srcdir}/emacstool.c \ |
| 479 | -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \ | 488 | -lxview -lolgx -lX -I$(OPENWINHOME)/include -L$(OPENWINHOME)/lib \ |
| 480 | $(LOADLIBES) | 489 | $(LOADLIBES) |
| 481 | |||
| 482 | /* arch-tag: cc40144d-fbd2-436b-9a22-dcb5b5b6a2af | ||
| 483 | (do not change this comment) */ | ||