2008-12-02 23:49:39 +00:00
|
|
|
# $Id: Makefile.am 26046 2008-09-09 16:37:30Z androsyn $
|
2008-04-01 16:52:26 +00:00
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2008-06-25 05:28:30 +00:00
|
|
|
INCLUDES = -I. -I../include @SSL_CFLAGS@ @GNUTLS_CFLAGS@
|
2008-04-01 16:52:26 +00:00
|
|
|
|
2008-12-02 23:49:39 +00: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 $@
|
|
|
|
|
2008-04-01 16:52:26 +00:00
|
|
|
libratbox_la_SOURCES = \
|
|
|
|
unix.c \
|
|
|
|
win32.c \
|
|
|
|
crypt.c \
|
|
|
|
balloc.c \
|
|
|
|
commio.c \
|
|
|
|
openssl.c \
|
2008-06-11 01:33:15 +00:00
|
|
|
gnutls.c \
|
2008-04-01 16:52:26 +00: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 \
|
2008-07-29 22:41:27 +00:00
|
|
|
patricia.c \
|
2008-12-02 23:49:39 +00:00
|
|
|
arc4random.c \
|
|
|
|
version.c
|
2008-04-01 16:52:26 +00:00
|
|
|
|
|
|
|
|
2011-01-06 06:29:22 +00:00
|
|
|
libratbox_la_LDFLAGS = @SSL_LIBS@ @GNUTLS_LIBS@ -avoid-version -no-undefined -export-symbols export-syms.txt
|
|
|
|
libratbox_la_LIBADD = @SSL_LIBS@ @GNUTLS_LIBS@
|
2008-04-01 16:52:26 +00:00
|
|
|
lib_LTLIBRARIES = libratbox.la
|
|
|
|
|