ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/Makefile.am
Revision: 1325
Committed: Sat Mar 31 10:29:02 2012 UTC (13 years, 4 months ago) by michael
Original Path: ircd-hybrid-8/src/Makefile.am
File size: 1978 byte(s)
Log Message:
- Get rid of fileio.c. Replace some ircsprintf() with snprintf() while on it

File Contents

# User Rev Content
1 michael 912 AUTOMAKE_OPTIONS = foreign
2    
3     sbin_PROGRAMS = ircd
4    
5     AM_YFLAGS = -d
6    
7 michael 1090 AM_CPPFLAGS = $(LTDLINCL) -I$(top_srcdir)/include
8 michael 977 ircd_LDFLAGS = -export-dynamic
9 michael 1009 ircd_LDADD = $(LIBLTDL)
10 michael 1090 ircd_DEPENDENCIES = $(LTDLDEPS)
11 michael 912
12     ircd_SOURCES = balloc.c \
13     channel.c \
14     channel_mode.c \
15     client.c \
16 michael 1309 conf.c \
17 michael 1316 conf_parser.y \
18 michael 1309 conf_lexer.l \
19 michael 912 csvlib.c \
20     dbuf.c \
21     event.c \
22     fdlist.c \
23     getopt.c \
24     hash.c \
25     hook.c \
26     hostmask.c \
27     irc_res.c \
28     irc_reslib.c \
29     irc_string.c \
30     ircd.c \
31     ircd_signal.c \
32     list.c \
33     listener.c \
34 michael 1309 log.c \
35 michael 912 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_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     restart.c \
50     resv.c \
51 michael 1304 rsa.c \
52 michael 912 s_auth.c \
53     s_bsd.c \
54     s_gline.c \
55     s_misc.c \
56     s_serv.c \
57     s_user.c \
58     send.c \
59     sprintf_irc.c \
60     version.c \
61     watch.c \
62 michael 1309 whowas.c