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
|
#
# 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 $
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)
#========================================================================
# 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) \
|
|
>
>
|
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.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
|
# 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:
doc:
install: all install-binaries install-libraries install-doc
install-binaries: binaries install-lib-binaries install-bin-binaries
$(INSTALL_DATA) pkgIndex.tcl $(pkglibdir)
|
|
|
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: $(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
|
fixstrtod.$(OBJEXT): $(srcdir)/fixstrtod.c
$(COMPILE) -c `@CYGPATH@ $(srcdir)/fixstrtod.c` -o $@
strncasecmp.$(OBJEXT): $(srcdir)/strncasecmp.c
$(COMPILE) -c `@CYGPATH@ $(srcdir)/strncasecmp.c` -o $@
#========================================================================
# End of user-definable section
#========================================================================
#========================================================================
# Don't modify the file to clean here. Instead, set the "CLEANFILES"
# variable in configure.in
|
>
>
>
|
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
|