1 |
AUTOMAKE_OPTIONS = foreign |
2 |
|
3 |
sbin_PROGRAMS = ircd |
4 |
|
5 |
AM_YFLAGS = -d |
6 |
|
7 |
AM_CPPFLAGS = $(INCLTDL) -I$(top_srcdir)/include -I$(top_srcdir)/lib/pcre |
8 |
ircd_LDFLAGS = -export-dynamic |
9 |
ircd_LDADD = $(LIBLTDL) $(top_srcdir)/lib/pcre/libpcre.a |
10 |
ircd_DEPENDENCIES = $(LIBLTDL) $(top_srcdir)/lib/pcre/libpcre.a |
11 |
|
12 |
ircd_SOURCES = balloc.c \ |
13 |
channel.c \ |
14 |
channel_mode.c \ |
15 |
client.c \ |
16 |
csvlib.c \ |
17 |
dbuf.c \ |
18 |
dynlink.c \ |
19 |
event.c \ |
20 |
fdlist.c \ |
21 |
fileio.c \ |
22 |
getopt.c \ |
23 |
hash.c \ |
24 |
hook.c \ |
25 |
hostmask.c \ |
26 |
irc_getaddrinfo.c \ |
27 |
irc_getnameinfo.c \ |
28 |
irc_res.c \ |
29 |
irc_reslib.c \ |
30 |
irc_string.c \ |
31 |
ircd.c \ |
32 |
ircd_signal.c \ |
33 |
list.c \ |
34 |
listener.c \ |
35 |
match.c \ |
36 |
memory.c \ |
37 |
modules.c \ |
38 |
motd.c \ |
39 |
numeric.c \ |
40 |
packet.c \ |
41 |
parse.c \ |
42 |
s_conf.c \ |
43 |
s_bsd_epoll.c \ |
44 |
s_bsd_poll.c \ |
45 |
s_bsd_sigio.c \ |
46 |
s_bsd_devpoll.c \ |
47 |
s_bsd_kqueue.c \ |
48 |
s_bsd_select.c \ |
49 |
s_bsd_win32.c \ |
50 |
restart.c \ |
51 |
resv.c \ |
52 |
s_auth.c \ |
53 |
s_bsd.c \ |
54 |
s_gline.c \ |
55 |
s_log.c \ |
56 |
s_misc.c \ |
57 |
s_serv.c \ |
58 |
s_user.c \ |
59 |
send.c \ |
60 |
sprintf_irc.c \ |
61 |
tools.c \ |
62 |
version.c \ |
63 |
watch.c \ |
64 |
whowas.c \ |
65 |
ircd_parser.y \ |
66 |
ircd_lexer.l |
67 |
if ENABLE_SSL |
68 |
ircd_SOURCES += rsa.c |
69 |
endif |