2008-12-03 00:49:39 +01:00
|
|
|
# $Id: Makefile.am 26046 2008-09-09 16:37:30Z androsyn $
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2016-01-07 17:58:28 +01:00
|
|
|
AM_CPPFLAGS = -I. -I../include @SSL_CFLAGS@ @GNUTLS_CFLAGS@ @MBEDTLS_CFLAGS@
|
2008-04-01 18:52:26 +02:00
|
|
|
|
2008-12-03 00:49:39 +01:00
|
|
|
BUILT_SOURCES = version.c
|
|
|
|
|
|
|
|
version.c: version.c.SH ../CREDITS
|
|
|
|
$(SHELL) ./version.c.SH
|
|
|
|
$(CP) version.c version.c.last
|
|
|
|
|
|
|
|
version.lo: version.c ../include/serno.h
|
|
|
|
$(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
|
|
|
|
|
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 \
|
2016-03-06 10:49:27 +01:00
|
|
|
rb_lib.c \
|
2008-04-01 18:52:26 +02:00
|
|
|
rb_memory.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 \
|
2008-12-03 00:49:39 +01:00
|
|
|
arc4random.c \
|
|
|
|
version.c
|
2016-02-10 02:25:32 +01:00
|
|
|
|
2016-03-06 09:29:53 +01:00
|
|
|
librb_la_LDFLAGS = @SSL_LIBS@ @GNUTLS_LIBS@ @MBEDTLS_LIBS@ -avoid-version -no-undefined -export-symbols export-syms.txt
|
|
|
|
librb_la_LIBADD = @SSL_LIBS@ @GNUTLS_LIBS@ @MBEDTLS_LIBS@
|
|
|
|
lib_LTLIBRARIES = librb.la
|