blob: ce69f86b01db6fdd907a38cbd86bf23076a43bd1 (
plain)
1
2
3
4
5
6
7
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
38
39
40
41
42
43
44
45
46
47
48
|
##----------------------------------------------------------------------------
## $Id$
##
## Makefile.am for ACE_SSL library
##----------------------------------------------------------------------------
##
## Process this file with automake to create Makefile.in
##
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) @ACE_TLS_CPPFLAGS@
lib_LTLIBRARIES = libACE_SSL.la
libACE_SSL_la_LIBADD = $(top_builddir)/ace/libACE.la @ACE_TLS_LIBS@
## ACE_SSL library version is same as ACE's version.
libACE_SSL_la_LDFLAGS = -version-number @ACE_MAJOR@:@ACE_MINOR@:@ACE_BETA@
libACE_SSL_la_SOURCES = \
SSL_Asynch_BIO.cpp \
SSL_Asynch_Stream.cpp \
SSL_Context.cpp \
SSL_SOCK.cpp \
SSL_SOCK_Acceptor.cpp \
SSL_SOCK_Connector.cpp \
SSL_SOCK_Stream.cpp
HEADER_FILES = \
SSL_Asynch_BIO.h \
SSL_Asynch_Stream.h \
SSL_Context.h \
SSL_Export.h \
SSL_SOCK.h \
SSL_SOCK_Acceptor.h \
SSL_SOCK_Connector.h \
SSL_SOCK_Stream.h \
sslconf.h
INLINE_FILES = \
SSL_SOCK.i \
SSL_SOCK_Acceptor.i \
SSL_SOCK_Connector.i \
SSL_SOCK_Stream.i \
SSL_Context.inl
pkginclude_HEADERS = \
$(HEADER_FILES) \
$(INLINE_FILES)
|