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.25 2007/06/22 21:19:12 hobbs2 Exp $
#========================================================================
# Enumerate the names of the source files included in this package.
# This will be used when a dist target is added to the Makefile.
#========================================================================
|
|
|
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.26 2008/03/18 00:40:37 hobbs2 Exp $
#========================================================================
# Enumerate the names of the source files included in this package.
# This will be used when a dist target is added to the Makefile.
#========================================================================
|
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
#========================================================================
pkgIndex.tcl-auto:
( echo pkg_mkIndex . $(PKG_LIB_FILE) \; exit; ) | $(TCLSH)
pkgIndex.tcl:
(echo 'package ifneeded $(PACKAGE_NAME) $(PACKAGE_VERSION) \
"[list load [file join $$dir $(PKG_LIB_FILE)]] ; \
[list source [file join $$dir tls.tcl]]"'\
) > pkgIndex.tcl
#========================================================================
# End of user-definable section
#========================================================================
#========================================================================
|
<
|
>
|
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
|
#========================================================================
pkgIndex.tcl-auto:
( echo pkg_mkIndex . $(PKG_LIB_FILE) \; exit; ) | $(TCLSH)
pkgIndex.tcl:
(echo 'package ifneeded $(PACKAGE_NAME) $(PACKAGE_VERSION) \
"[list source [file join $$dir tls.tcl]] ; \
[list tls::initlib $$dir $(PKG_LIB_FILE)]"'\
) > pkgIndex.tcl
#========================================================================
# End of user-definable section
#========================================================================
#========================================================================
|