| Revision: | 1029 |
| Committed: | Sun Nov 8 13:10:50 2009 UTC (16 years, 8 months ago) by michael |
| Original Path: | ircd-hybrid-7.3/src/Makefile.am |
| File size: | 2127 byte(s) |
| Log Message: | - branch off trunk to create 7.3 branch |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | michael | 912 | AUTOMAKE_OPTIONS = foreign |
| 2 | |||
| 3 | sbin_PROGRAMS = ircd | ||
| 4 | |||
| 5 | AM_YFLAGS = -d | ||
| 6 | |||
| 7 | michael | 1009 | AM_CPPFLAGS = $(INCLTDL) -I$(top_srcdir)/include |
| 8 | michael | 977 | ircd_LDFLAGS = -export-dynamic |
| 9 | michael | 1009 | ircd_LDADD = $(LIBLTDL) |
| 10 | ircd_DEPENDENCIES = $(LIBLTDL) | ||
| 11 | michael | 912 | |
| 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 | michael | 982 | rng_mt.c \ |
| 40 | michael | 912 | 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 | stu | 908 | endif |