8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| #
# Copyright (c) 1999-2000 Ajuba Solutions.
# All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 1.17 2001/06/21 23:33:38 hobbs Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
# This will be used when a dist target is added to the Makefile.
#========================================================================
tls_SOURCES = tls.c tlsIO.c tlsBIO.c \
tlsX509.c fixstrtod.c strncasecmp.c
SOURCES = $(tls_SOURCES)
tls_SCRIPT_FILES = tls.tcl
#========================================================================
# Enumerate the names of the object files included in this package.
# These objects are created and linked into the final library.
#========================================================================
tls_OBJECTS = tls.$(OBJEXT) tlsIO.$(OBJEXT) tlsBIO.$(OBJEXT) \
tlsX509.$(OBJEXT) fixstrtod.$(OBJEXT) strncasecmp.$(OBJEXT)
OBJECTS = $(tls_OBJECTS)
#========================================================================
# The substitution of "tls_LIB_FILE" into the variable name below
# allows us to refer to the objects for the library without knowing the name
# of the library in advance. It also lets us use the "[email protected]" variable in
# the rule for building the library, so we can refer to both the list of
|
|
|
>
|
>
| 8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| #
# Copyright (c) 1999-2000 Ajuba Solutions.
# All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 1.18 2002/02/04 22:45:53 hobbs Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
# This will be used when a dist target is added to the Makefile.
#========================================================================
tls_SOURCES = tls.c tlsIO.c tlsBIO.c \
tlsX509.c fixstrtod.c
# strncasecmp.c
SOURCES = $(tls_SOURCES)
tls_SCRIPT_FILES = tls.tcl
#========================================================================
# Enumerate the names of the object files included in this package.
# These objects are created and linked into the final library.
#========================================================================
tls_OBJECTS = tls.$(OBJEXT) tlsIO.$(OBJEXT) tlsBIO.$(OBJEXT) \
tlsX509.$(OBJEXT) fixstrtod.$(OBJEXT)
# strncasecmp.$(OBJEXT)
OBJECTS = $(tls_OBJECTS)
#========================================================================
# The substitution of "tls_LIB_FILE" into the variable name below
# allows us to refer to the objects for the library without knowing the name
# of the library in advance. It also lets us use the "[email protected]" variable in
# the rule for building the library, so we can refer to both the list of
|
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
| TCL_LD_FLAGS = @[email protected]
TCL_LIBS = @[email protected]
TCL_SHLIB_LD_LIBS = @[email protected]
TCL_SRC_DIR = @[email protected]
TCL_DBGX = @[email protected]
TCL_STUB_LIB_FILE = @[email protected]
TCL_STUB_LIB_SPEC = @[email protected]
TCL_TOOL_DIR_NATIVE = @[email protected]
TCL_TOP_DIR_NATIVE = @[email protected]
TCL_UNIX_DIR_NATIVE = @[email protected]
TCL_WIN_DIR_NATIVE = @[email protected]
INCLUDE_DIR_NATIVE = @[email protected]
TCL_BMAP_DIR_NATIVE = @[email protected]
TCL_PLATFORM_DIR_NATIVE = @[email protected]
TCL_GENERIC_DIR_NATIVE = @[email protected]
TCLSH_PROG = @[email protected]
AUTOCONF = autoconf
LDFLAGS = $(LDFLAGS_DEFAULT)
INCLUDES = @[email protected] $(SSL_INCLUDES)
|
<
<
<
<
<
<
<
<
| 146
147
148
149
150
151
152
153
154
155
156
157
158
159
| TCL_LD_FLAGS = @[email protected]
TCL_LIBS = @[email protected]
TCL_SHLIB_LD_LIBS = @[email protected]
TCL_SRC_DIR = @[email protected]
TCL_DBGX = @[email protected]
TCL_STUB_LIB_FILE = @[email protected]
TCL_STUB_LIB_SPEC = @[email protected]
TCLSH_PROG = @[email protected]
AUTOCONF = autoconf
LDFLAGS = $(LDFLAGS_DEFAULT)
INCLUDES = @[email protected] $(SSL_INCLUDES)
|