summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 0c1c73ac0684dd0e513ce95f5976a5103cffe435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
AUTOMAKE_OPTIONS = foreign

bin_PROGRAMS = ircd

AM_YFLAGS = -d

AM_CPPFLAGS = $(LTDLINCL) -I$(top_srcdir)/include
ircd_LDFLAGS = -export-dynamic
ircd_LDADD = $(LIBLTDL)
ircd_DEPENDENCIES = $(LTDLDEPS)

ircd_SOURCES = channel.c         \
               channel_mode.c    \
               client.c          \
               conf.c            \
               conf_class.c      \
               conf_db.c         \
               conf_parser.y     \
               conf_lexer.l      \
               dbuf.c            \
               event.c           \
               fdlist.c          \
               getopt.c          \
               hash.c            \
               hook.c            \
               hostmask.c        \
               irc_res.c         \
               irc_reslib.c      \
               irc_string.c      \
               ircd.c            \
               ircd_signal.c     \
               list.c            \
               listener.c        \
               log.c             \
               match.c           \
               memory.c          \
               mempool.c         \
               modules.c         \
               motd.c            \
               rng_mt.c          \
               numeric.c         \
               packet.c          \
               parse.c           \
               s_bsd_epoll.c     \
               s_bsd_poll.c      \
               s_bsd_devpoll.c   \
               s_bsd_kqueue.c    \
               s_bsd_select.c    \
               restart.c         \
               resv.c            \
               rsa.c             \
               s_auth.c          \
               s_bsd.c           \
               s_gline.c         \
               s_misc.c          \
               s_serv.c          \
               s_user.c          \
               send.c            \
               version.c         \
               watch.c           \
               whowas.c