]> jfr.im git - solanum.git/blob - libratbox/src/Makefile.am
WHOIS: Make hide_opers_in_whois not affect opers doing whois.
[solanum.git] / libratbox / src / Makefile.am
1 # $Id: Makefile.am 26046 2008-09-09 16:37:30Z androsyn $
2
3 AUTOMAKE_OPTIONS = foreign
4
5 AM_CPPFLAGS = -I. -I../include @SSL_CFLAGS@ @GNUTLS_CFLAGS@ @MBEDTLS_CFLAGS@
6
7 BUILT_SOURCES = version.c
8
9 version.c: version.c.SH ../CREDITS
10 $(SHELL) ./version.c.SH
11 $(CP) version.c version.c.last
12
13 version.lo: version.c ../include/serno.h
14 $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
15
16 libratbox_la_SOURCES = \
17 unix.c \
18 win32.c \
19 crypt.c \
20 balloc.c \
21 commio.c \
22 mbedtls.c \
23 openssl.c \
24 gnutls.c \
25 nossl.c \
26 event.c \
27 ratbox_lib.c \
28 rb_memory.c \
29 linebuf.c \
30 snprintf.c \
31 tools.c \
32 helper.c \
33 devpoll.c \
34 epoll.c \
35 poll.c \
36 ports.c \
37 sigio.c \
38 select.c \
39 kqueue.c \
40 rawbuf.c \
41 patricia.c \
42 arc4random.c \
43 version.c
44
45 libratbox_la_LDFLAGS = @SSL_LIBS@ @GNUTLS_LIBS@ @MBEDTLS_LIBS@ -avoid-version -no-undefined -export-symbols export-syms.txt
46 libratbox_la_LIBADD = @SSL_LIBS@ @GNUTLS_LIBS@ @MBEDTLS_LIBS@
47 lib_LTLIBRARIES = libratbox.la
48