8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# 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.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.
|
|
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# 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.13 2000/06/21 21:00:56 wart Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
|
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
# done
test: binaries libraries
sed -e "s#\@RELPATH\@#.#" -e "s#\@tls_LIB_FILE\@#$(tls_LIB_FILE)#" \
< $(srcdir)/pkgIndex.tcl.in > pkgIndex.tcl
LD_LIBRARY_PATH=$(BUILD_DIR):$(TCL_BIN_DIR):$(LD_LIBRARY_PATH) \
PATH="$(BUILD_DIR)":"$(TCL_BIN_DIR)":"$(PATH)" \
$(TCLSH_PROG) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TCLTESTARGS)
depend:
#========================================================================
# Enumerate the names of the object files included in this package.
# These objects are created and linked into the final library. In
# most cases these object files will correspond to the source files
|
|
|
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
|
# done
test: binaries libraries
sed -e "s#\@RELPATH\@#.#" -e "s#\@tls_LIB_FILE\@#$(tls_LIB_FILE)#" \
< $(srcdir)/pkgIndex.tcl.in > pkgIndex.tcl
LD_LIBRARY_PATH=$(BUILD_DIR):$(TCL_BIN_DIR):$(LD_LIBRARY_PATH) \
PATH="$(BUILD_DIR)":"$(TCL_BIN_DIR)":"$(PATH)" \
$(TCLSH_PROG) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TESTFLAGS)
depend:
#========================================================================
# Enumerate the names of the object files included in this package.
# These objects are created and linked into the final library. In
# most cases these object files will correspond to the source files
|