comparison lib-src/Makefile.in @ 88123:375f2633d815

New directory
author Kenichi Handa <handa@m17n.org>
date Mon, 08 Sep 2003 11:56:09 +0000
parents 174bff8cdda4
children 68c22ea6027c
comparison
equal deleted inserted replaced
52428:27bc8b966642 88123:375f2633d815
25 25
26 # ==================== Things `configure' will edit ==================== 26 # ==================== Things `configure' will edit ====================
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@
33 34
34 # Program name transformation. 35 # Program name transformation.
141 142
142 #define NO_SHORTNAMES 143 #define NO_SHORTNAMES
143 #define THIS_IS_MAKEFILE 144 #define THIS_IS_MAKEFILE
144 #define NOT_C_CODE 145 #define NOT_C_CODE
145 #include "../src/config.h" 146 #include "../src/config.h"
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
146 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
150 #define LIB_STANDARD_LIBSRC -lc 157 #define LIB_STANDARD_LIBSRC -lc
380 clobbered too. */ 387 clobbered too. */
381 test-distrib${EXEEXT}: ${srcdir}/test-distrib.c 388 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 =
394 REGEXPDEPS = 403 REGEXPDEPS =
395 #else 404 #else
418 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile 427 $(CC) ${ALL_CFLAGS} ${srcdir}/make-docfile.c $(LOADLIBES) -o make-docfile
419 428
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}\"" \
428 $(GETOPTOBJS) $(LOADLIBES) -o b2m 437 $(GETOPTOBJS) $(LOADLIBES) -o b2m
429 438
476 485
477 xveterm${EXEEXT}: ${srcdir}/emacstool.c 486 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) */