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.14 2000/07/20 02:44:16 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.15 2000/07/27 01:58:18 hobbs Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
|
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/@PACKAGE@@VERSION@
pkglibdir = $(libdir)/@PACKAGE@@VERSION@
pkgincludedir = $(includedir)/@PACKAGE@@VERSION@
top_builddir = .
|
>
|
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
DESTDIR =
RELPATH = @RELPATH@
pkgdatadir = $(datadir)/@PACKAGE@@VERSION@
pkglibdir = $(libdir)/@PACKAGE@@VERSION@
pkgincludedir = $(includedir)/@PACKAGE@@VERSION@
top_builddir = .
|
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
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)
#========================================================================
# This rule installs platform-independent files, such as header files.
#========================================================================
install-libraries: libraries
|
>
>
>
|
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
libraries: $(tls_SCRIPT_FILES)
doc:
install: all install-binaries install-libraries install-doc
install-binaries: binaries install-lib-binaries install-bin-binaries
sed -e "s#\@RELPATH\@#$(RELPATH)#" \
-e "s#\@tls_LIB_FILE\@#$(tls_LIB_FILE)#" \
< $(srcdir)/pkgIndex.tcl.in > pkgIndex.tcl
$(INSTALL_DATA) pkgIndex.tcl $(pkglibdir)
#========================================================================
# This rule installs platform-independent files, such as header files.
#========================================================================
install-libraries: libraries
|