1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# This file is a Makefile for Tcl. If it has the name "Makefile.in" then it
# is a template for a Makefile; to generate the actual Makefile, run
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
#
# RCS: @(#) $Id: Makefile.in,v 1.146 2008/12/20 22:06:02 kennykb Exp $
VERSION = @TCL_VERSION@
#--------------------------------------------------------------------------
# Things you can change to personalize the Makefile for your own site (you can
# make these changes in either Makefile.in or Makefile, but changes to
# Makefile will get lost if you re-run the configuration script).
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# This file is a Makefile for Tcl. If it has the name "Makefile.in" then it
# is a template for a Makefile; to generate the actual Makefile, run
# "./configure", which is a configuration script generated by the "autoconf"
# program (constructs like "@foo@" will get replaced in the actual Makefile.
#
# RCS: @(#) $Id: Makefile.in,v 1.147 2008/12/23 08:55:30 dkf Exp $
VERSION = @TCL_VERSION@
#--------------------------------------------------------------------------
# Things you can change to personalize the Makefile for your own site (you can
# make these changes in either Makefile.in or Makefile, but changes to
# Makefile will get lost if you re-run the configuration script).
|
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
STUB_OBJS = \
tclStubLib.$(OBJEXT) \
tclOOStubLib.$(OBJEXT)
TCLSH_OBJS = tclAppInit.$(OBJEXT)
ZLIB_OBJS = \
Zadler32$(OBJEXT) \
Zcompress$(OBJEXT) \
Zcrc32$(OBJEXT) \
Zdeflate$(OBJEXT) \
Zgzio$(OBJEXT) \
Zinfback$(OBJEXT) \
Zinffast$(OBJEXT) \
Zinflate$(OBJEXT) \
Zinftrees$(OBJEXT) \
Ztrees$(OBJEXT) \
Zuncompr$(OBJEXT) \
Zzutil$(OBJEXT)
TCL_OBJS = ${GENERIC_OBJS} $(TOMMATH_OBJS) ${WIN_OBJS} ${ZLIB_OBJS}
TCL_DOCS = "$(ROOT_DIR_NATIVE)"/doc/*.[13n]
all: binaries libraries doc packages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
|
STUB_OBJS = \
tclStubLib.$(OBJEXT) \
tclOOStubLib.$(OBJEXT)
TCLSH_OBJS = tclAppInit.$(OBJEXT)
ZLIB_OBJS = \
Zadler32.$(OBJEXT) \
Zcompress.$(OBJEXT) \
Zcrc32.$(OBJEXT) \
Zdeflate.$(OBJEXT) \
Zgzio.$(OBJEXT) \
Zinfback.$(OBJEXT) \
Zinffast.$(OBJEXT) \
Zinflate.$(OBJEXT) \
Zinftrees.$(OBJEXT) \
Ztrees.$(OBJEXT) \
Zuncompr.$(OBJEXT) \
Zzutil.$(OBJEXT)
TCL_OBJS = ${GENERIC_OBJS} $(TOMMATH_OBJS) ${WIN_OBJS} ${ZLIB_OBJS}
TCL_DOCS = "$(ROOT_DIR_NATIVE)"/doc/*.[13n]
all: binaries libraries doc packages
|
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
|
$(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME)
tclAppInit.${OBJEXT} : tclAppInit.c
$(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME)
# For building zlib, only used in some build configurations
Zadler32$(OBJEXT): $(ZLIB_DIR)/adler32.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zcompress$(OBJEXT): $(ZLIB_DIR)/compress.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zcrc32$(OBJEXT): $(ZLIB_DIR)/crc32.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zdeflate$(OBJEXT): $(ZLIB_DIR)/deflate.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zgzio$(OBJEXT): $(ZLIB_DIR)/gzio.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinfback$(OBJEXT): $(ZLIB_DIR)/infback.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinffast$(OBJEXT): $(ZLIB_DIR)/inffast.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinflate$(OBJEXT): $(ZLIB_DIR)/inflate.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinftrees$(OBJEXT): $(ZLIB_DIR)/inftrees.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Ztrees$(OBJEXT): $(ZLIB_DIR)/trees.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zuncompr$(OBJEXT): $(ZLIB_DIR)/uncompr.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zzutil$(OBJEXT): $(ZLIB_DIR)/zutil.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
tclZlib.${OBJEXT} : tclZlib.c
$(CC) -c ${ZLIB_INC} $(CC_SWITCHES) -DBUILD_tcl @DEPARG@ $(CC_OBJNAME)
# The following objects should be built using the stub interfaces
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
|
$(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME)
tclAppInit.${OBJEXT} : tclAppInit.c
$(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME)
# For building zlib, only used in some build configurations
Zadler32.$(OBJEXT): $(ZLIB_DIR)/adler32.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zcompress.$(OBJEXT): $(ZLIB_DIR)/compress.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zcrc32.$(OBJEXT): $(ZLIB_DIR)/crc32.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zdeflate.$(OBJEXT): $(ZLIB_DIR)/deflate.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zgzio.$(OBJEXT): $(ZLIB_DIR)/gzio.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinfback.$(OBJEXT): $(ZLIB_DIR)/infback.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinffast.$(OBJEXT): $(ZLIB_DIR)/inffast.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinflate.$(OBJEXT): $(ZLIB_DIR)/inflate.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zinftrees.$(OBJEXT): $(ZLIB_DIR)/inftrees.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Ztrees.$(OBJEXT): $(ZLIB_DIR)/trees.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zuncompr.$(OBJEXT): $(ZLIB_DIR)/uncompr.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
Zzutil.$(OBJEXT): $(ZLIB_DIR)/zutil.c
$(CC) -c -o $@ $(CC_SWITCHES) -I$(ZLIB_DIR) $<
tclZlib.${OBJEXT} : tclZlib.c
$(CC) -c ${ZLIB_INC} $(CC_SWITCHES) -DBUILD_tcl @DEPARG@ $(CC_OBJNAME)
# The following objects should be built using the stub interfaces
|