Check-in [9c5c58d41c]
Overview
Comment:Copy tls.tcl to the build directory so that "make test" can find it with "package require tls"
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9c5c58d41c7cc9bad6cf48fb5a4c034d375276f1
User & Date: wart on 2000-06-06 01:26:23
Other Links: manifest | tags
Context
2000-06-06
01:34
Merging with similar changes by Scott S. check-in: 08fc9629ab user: welch tags: trunk
01:26
Copy tls.tcl to the build directory so that "make test" can find it with "package require tls" check-in: 9c5c58d41c user: wart tags: trunk
01:16
*** empty log message *** check-in: 30c21e2028 user: stanton tags: trunk
Changes

Modified Makefile.in from [af87a05911] to [eb3ac8a3db].

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
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







-
+













+
+







#
# 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.11 2000/06/06 01:16:34 stanton Exp $
# RCS: @(#) $Id: Makefile.in,v 1.12 2000/06/06 01:26:23 wart 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) \
197
198
199
200
201
202
203
204

205
206
207
208
209
210
211
199
200
201
202
203
204
205

206
207
208
209
210
211
212
213







-
+







# shared/static libraries, and any other platform-dependent files.
# The list of targets to build for "binaries:" is specified at the top
# of the Makefile, in the "BINARIES" variable.
#========================================================================

binaries: $(BINARIES)

libraries:
libraries: $(tls_SCRIPT_FILES)

doc:

install: all install-binaries install-libraries install-doc

install-binaries: binaries install-lib-binaries install-bin-binaries
	$(INSTALL_DATA) pkgIndex.tcl $(pkglibdir)
296
297
298
299
300
301
302



303
304
305
306
307
308
309
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314







+
+
+








fixstrtod.$(OBJEXT): $(srcdir)/fixstrtod.c
	$(COMPILE) -c `@CYGPATH@ $(srcdir)/fixstrtod.c` -o $@

strncasecmp.$(OBJEXT): $(srcdir)/strncasecmp.c
	$(COMPILE) -c `@CYGPATH@ $(srcdir)/strncasecmp.c` -o $@

tls.tcl: $(srcdir)/tls.tcl
	cp $(srcdir)/tls.tcl tls.tcl

#========================================================================
# End of user-definable section
#========================================================================

#========================================================================
# Don't modify the file to clean here.  Instead, set the "CLEANFILES"
# variable in configure.in