aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/Makefile.in
diff options
context:
space:
mode:
authorKenichi Handa2003-09-08 11:56:09 +0000
committerKenichi Handa2003-09-08 11:56:09 +0000
commit463f5630a5e7cbe7f042bc1175d1fa1c4e98860f (patch)
tree3287d0c628fea2249abf4635b3a4f45bedd6f8c4 /lib-src/Makefile.in
parent4256310de631bd57c78b88b5131caa073315b3d7 (diff)
downloademacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.tar.gz
emacs-463f5630a5e7cbe7f042bc1175d1fa1c4e98860f.zip
New directory
Diffstat (limited to 'lib-src/Makefile.in')
-rw-r--r--lib-src/Makefile.in18
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
28CC=@CC@ 28CC=@CC@
29CFLAGS=@CFLAGS@ 29CFLAGS=@CFLAGS@
30ALLOCA=@ALLOCA@
30version=@version@ 31version=@version@
31configuration=@configuration@ 32configuration=@configuration@
32EXEEXT=@EXEEXT@ 33EXEEXT=@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
385GETOPTOBJS = getopt.o getopt1.o 392GETOPTOBJS = getopt.o getopt1.o $(ALLOCA)
386GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h 393GETOPTDEPS = $(GETOPTOBJS) ${srcdir}/getopt.h
387getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h 394getopt.o: ${srcdir}/getopt.c ${srcdir}/getopt.h
388 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c 395 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt.c
389getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h 396getopt1.o: ${srcdir}/getopt1.c ${srcdir}/getopt.h
390 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c 397 ${CC} -c ${CPP_CFLAGS} ${srcdir}/getopt1.c
398alloca.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
393REGEXPOBJ = 402REGEXPOBJ =
@@ -420,8 +429,8 @@ make-docfile${EXEEXT}: ${srcdir}/make-docfile.c ../src/config.h
420digest-doc${EXEEXT}: ${srcdir}/digest-doc.c 429digest-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
423sorted-doc${EXEEXT}: ${srcdir}/sorted-doc.c 432sorted-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
426b2m${EXEEXT}: ${srcdir}/b2m.c ../src/config.h $(GETOPTDEPS) 435b2m${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) */