19 lines
432 B
Makefile
19 lines
432 B
Makefile
![]() |
AM_CFLAGS = -I$(top_srcdir)/include
|
||
|
|
||
|
lib_LTLIBRARIES = libtls.la
|
||
|
|
||
|
libtls_la_LDFLAGS = -no-undefined
|
||
|
libtls_la_LIBADD = -lcrypto -lssl $(PLATFORM_LDADD)
|
||
|
|
||
|
libtls_la_SOURCES = tls.c
|
||
|
libtls_la_SOURCES += tls_client.c
|
||
|
libtls_la_SOURCES += tls_config.c
|
||
|
libtls_la_SOURCES += tls_server.c
|
||
|
libtls_la_SOURCES += tls_util.c
|
||
|
libtls_la_SOURCES += tls_verify.c
|
||
|
noinst_HEADERS = tls_internal.h
|
||
|
|
||
|
if !HAVE_STRSEP
|
||
|
libtls_la_SOURCES += strsep.c
|
||
|
endif
|