2008-06-25 07:28:30 +02:00
|
|
|
# $Id: Makefile.am 25532 2008-06-11 14:40:44Z androsyn $
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2008-06-25 07:28:30 +02:00
|
|
|
INCLUDES = -I. -I../include @SSL_CFLAGS@ @GNUTLS_CFLAGS@
|
2008-04-01 18:52:26 +02:00
|
|
|
|
|
|
|
libratbox_la_SOURCES = \
|
|
|
|
unix.c \
|
|
|
|
win32.c \
|
|
|
|
crypt.c \
|
|
|
|
balloc.c \
|
|
|
|
commio.c \
|
|
|
|
openssl.c \
|
2008-06-11 03:33:15 +02:00
|
|
|
gnutls.c \
|
2008-04-01 18:52:26 +02:00
|
|
|
nossl.c \
|
|
|
|
event.c \
|
|
|
|
ratbox_lib.c \
|
|
|
|
rb_memory.c \
|
|
|
|
linebuf.c \
|
|
|
|
snprintf.c \
|
|
|
|
tools.c \
|
|
|
|
helper.c \
|
|
|
|
devpoll.c \
|
|
|
|
epoll.c \
|
|
|
|
poll.c \
|
|
|
|
ports.c \
|
|
|
|
sigio.c \
|
|
|
|
select.c \
|
|
|
|
kqueue.c \
|
|
|
|
rawbuf.c \
|
|
|
|
patricia.c
|
|
|
|
|
|
|
|
|
2008-06-11 05:06:54 +02:00
|
|
|
libratbox_la_LDFLAGS = -version-info 3:0:0 -no-undefined -export-symbols export-syms.txt
|
2008-06-25 07:28:30 +02:00
|
|
|
libratbox_la_LIBADD = @CRYPT_LIB@ @SSL_LIBS@ @GNUTLS_LIBS@
|
2008-04-01 18:52:26 +02:00
|
|
|
lib_LTLIBRARIES = libratbox.la
|
|
|
|
|