2008-04-01 18:52:26 +02:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
#pkgconfig_DATA = librb.pc
|
2016-07-13 07:17:21 +02:00
|
|
|
librbdir = @libdir@
|
|
|
|
|
|
|
|
# This is temp since all remaining C is circling the drain.
|
|
|
|
AM_CFLAGS = -std=gnu99
|
2008-12-03 00:49:39 +01:00
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
@SSL_CFLAGS@ \
|
|
|
|
@GNUTLS_CFLAGS@ \
|
|
|
|
@MBEDTLS_CFLAGS@ \
|
|
|
|
@BOOST_CPPFLAGS@
|
|
|
|
|
|
|
|
if MINGW
|
|
|
|
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc
|
|
|
|
endif
|
|
|
|
|
|
|
|
AM_LDFLAGS = \
|
|
|
|
-avoid-version \
|
|
|
|
-no-undefined \
|
|
|
|
$(PLATFORM_LDFLAGS)
|
|
|
|
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-L$(top_srcdir)/rb \
|
|
|
|
@BOOST_LDFLAGS@
|
|
|
|
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = librb.la
|
|
|
|
|
|
|
|
librb_la_LIBADD = \
|
|
|
|
@SSL_LIBS@ \
|
|
|
|
@GNUTLS_LIBS@ \
|
|
|
|
@MBEDTLS_LIBS@ \
|
|
|
|
@BOOST_LIBS@
|
|
|
|
|
2016-03-06 09:29:53 +01:00
|
|
|
librb_la_SOURCES = \
|
2008-04-01 18:52:26 +02:00
|
|
|
unix.c \
|
|
|
|
win32.c \
|
|
|
|
crypt.c \
|
|
|
|
balloc.c \
|
|
|
|
commio.c \
|
2015-12-04 05:32:33 +01:00
|
|
|
mbedtls.c \
|
2008-04-01 18:52:26 +02:00
|
|
|
openssl.c \
|
2013-06-10 18:19:02 +02:00
|
|
|
gnutls.c \
|
2008-04-01 18:52:26 +02:00
|
|
|
nossl.c \
|
|
|
|
event.c \
|
|
|
|
linebuf.c \
|
|
|
|
tools.c \
|
|
|
|
helper.c \
|
|
|
|
devpoll.c \
|
|
|
|
epoll.c \
|
|
|
|
poll.c \
|
|
|
|
ports.c \
|
|
|
|
sigio.c \
|
|
|
|
select.c \
|
|
|
|
kqueue.c \
|
|
|
|
rawbuf.c \
|
2008-07-30 00:41:27 +02:00
|
|
|
patricia.c \
|
2016-03-06 21:17:19 +01:00
|
|
|
dictionary.c \
|
|
|
|
radixtree.c \
|
2008-12-03 00:49:39 +01:00
|
|
|
arc4random.c \
|
2016-07-13 07:17:21 +02:00
|
|
|
version.c \
|
2016-08-01 00:53:32 +02:00
|
|
|
terminate.cc \
|
|
|
|
format.cc \
|
2016-07-13 07:17:21 +02:00
|
|
|
rb.cc
|