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: |
9c5c58d41c7cc9bad6cf48fb5a4c034d |
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 | 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. # |
︙ | |||
197 198 199 200 201 202 203 | 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) |
︙ | |||
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 |
︙ |