further refactoring, working libtls-standalone

This commit is contained in:
Brent Cook
2015-05-02 01:40:33 -05:00
parent d3771a41cb
commit 769d58e494
12 changed files with 172 additions and 316 deletions

View File

@@ -0,0 +1,6 @@
AM_CFLAGS = -I$(top_srcdir)/include
bin_PROGRAMS = test
test_SOURCES = test.c
test_LDADD = -lcrypto -lssl $(top_builddir)/src/libtls.la

View File

@@ -0,0 +1,6 @@
#include <tls.h>
int main()
{
tls_init();
}