irssi/src/irc/core/Makefile.am
Timo Sirainen 850cf993eb Moved rewritten server redirection code from core to irc. This new code
should be able to do the redirecting a lot more error-proof. Changed
lag-checking to use PINGs instead of NOTIFYs. This breaks scripts using
redirection. Hopefully this doesn't break too much things in irssi :)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1980 dbcabf3a-b0e7-0310-adc4-f8d773084564
2001-11-11 18:59:19 +00:00

54 lines
1.1 KiB
Makefile

noinst_LIBRARIES = libirc_core.a
INCLUDES = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
$(GLIB_CFLAGS)
libirc_core_a_SOURCES = \
bans.c \
ctcp.c \
channels-query.c \
channel-events.c \
channel-rejoin.c \
irc.c \
irc-core.c \
irc-channels.c \
irc-channels-setup.c \
irc-chatnets.c \
irc-commands.c \
irc-expandos.c \
irc-masks.c \
irc-nicklist.c \
irc-queries.c \
irc-servers.c \
irc-servers-reconnect.c \
irc-servers-setup.c \
lag.c \
massjoin.c \
modes.c \
mode-lists.c \
netsplit.c \
servers-idle.c \
servers-redirect.c
noinst_HEADERS = \
bans.h \
ctcp.h \
channel-rejoin.h \
irc.h \
irc-channels.h \
irc-chatnets.h \
irc-commands.h \
irc-masks.h \
irc-nicklist.h \
irc-queries.h \
irc-servers.h \
irc-servers-setup.h \
modes.h \
mode-lists.h \
module.h \
netsplit.h \
servers-idle.h \
servers-redirect.h