blob: c2146cff8e45d791258fb77ea2ec389a9b90476f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
AM_CPPFLAGS = @LIBGCRYPT_CFLAGS@
lib_LTLIBRARIES = libotr.la
libotr_la_SOURCES = privkey.c context.c proto.c b64.c dh.c mem.c message.c \
userstate.c tlv.c auth.c sm.c context_priv.c instag.c
libotr_la_LDFLAGS = -version-info @LIBOTR_LIBTOOL_VERSION@ @LIBS@ @LIBGCRYPT_LIBS@
otrincdir = $(includedir)/libotr
otrinc_HEADERS = b64.h context.h dh.h mem.h message.h privkey.h proto.h \
version.h userstate.h tlv.h serial.h auth.h sm.h privkey-t.h \
context_priv.h instag.h
|