| Revision: | 1309 |
| Committed: | Sun Mar 25 11:24:18 2012 UTC (14 years, 3 months ago) by michael |
| File size: | 2013 byte(s) |
| Log Message: | - renaming files: ircd_parser.y -> conf_parser.y ircd_lexer.l -> conf_lexer.l s_conf.c -> conf.c s_conf.h -> conf.h s_log.c -> log.c s_log.h -> log.h |
| # | Content |
|---|---|
| 1 | AUTOMAKE_OPTIONS = foreign |
| 2 | |
| 3 | sbin_PROGRAMS = ircd |
| 4 | |
| 5 | AM_YFLAGS = -d |
| 6 | |
| 7 | AM_CPPFLAGS = $(LTDLINCL) -I$(top_srcdir)/include |
| 8 | ircd_LDFLAGS = -export-dynamic |
| 9 | ircd_LDADD = $(LIBLTDL) |
| 10 | ircd_DEPENDENCIES = $(LTDLDEPS) |
| 11 | |
| 12 | ircd_SOURCES = balloc.c \ |
| 13 | channel.c \ |
| 14 | channel_mode.c \ |
| 15 | client.c \ |
| 16 | conf.c \ |
| 17 | conf_lexer.l \ |
| 18 | conf_parser.y \ |
| 19 | csvlib.c \ |
| 20 | dbuf.c \ |
| 21 | event.c \ |
| 22 | fdlist.c \ |
| 23 | fileio.c \ |
| 24 | getopt.c \ |
| 25 | hash.c \ |
| 26 | hook.c \ |
| 27 | hostmask.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 | log.c \ |
| 36 | match.c \ |
| 37 | memory.c \ |
| 38 | modules.c \ |
| 39 | motd.c \ |
| 40 | rng_mt.c \ |
| 41 | numeric.c \ |
| 42 | packet.c \ |
| 43 | parse.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 | rsa.c \ |
| 53 | s_auth.c \ |
| 54 | s_bsd.c \ |
| 55 | s_gline.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 |