Parent Directory
|
Revision Log
- move list manipulation routines from tools.c to list.c - mem_frob() goes to memory.c - sort out redundant/unneeded header includes
1 | AUTOMAKE_OPTIONS = foreign |
2 | |
3 | sbin_PROGRAMS = ircd |
4 | |
5 | AM_YFLAGS = -d |
6 | |
7 | AM_CPPFLAGS = $(INCLTDL) -I$(top_srcdir)/include |
8 | ircd_LDFLAGS = -export-dynamic |
9 | ircd_LDADD = $(LIBLTDL) |
10 | ircd_DEPENDENCIES = $(LIBLTDL) |
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 | rng_mt.c \ |
40 | numeric.c \ |
41 | packet.c \ |
42 | parse.c \ |
43 | s_conf.c \ |
44 | s_bsd_epoll.c \ |
45 | s_bsd_poll.c \ |
46 | s_bsd_sigio.c \ |
47 | s_bsd_devpoll.c \ |
48 | s_bsd_kqueue.c \ |
49 | s_bsd_select.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 | version.c \ |
62 | watch.c \ |
63 | whowas.c \ |
64 | ircd_parser.y \ |
65 | ircd_lexer.l |
66 | if ENABLE_SSL |
67 | ircd_SOURCES += rsa.c |
68 | endif |
svnadmin@ircd-hybrid.org | ViewVC Help |
Powered by ViewVC 1.1.28 |