forked from PsychoticNinja/ailin-nemui-irssi
- window's text buffer should work better - themes are almost working, you can change the text formats with /format - automatically try to rejoin the channel after 5 minutes if the join there failed because it was "temporarily unavailable" (netsplits) - generally cleaning code.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@216 dbcabf3a-b0e7-0310-adc4-f8d773084564
57 lines
1.1 KiB
Makefile
57 lines
1.1 KiB
Makefile
noinst_LTLIBRARIES = libirc_core.la
|
|
|
|
INCLUDES = \
|
|
$(GLIB_CFLAGS) \
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-I$(top_srcdir)/src -I$(top_srcdir)/src/core
|
|
|
|
libirc_core_la_SOURCES = \
|
|
bans.c \
|
|
ctcp.c \
|
|
channels.c \
|
|
channels-query.c \
|
|
channels-setup.c \
|
|
channel-events.c \
|
|
channel-rejoin.c \
|
|
ignore.c \
|
|
irc.c \
|
|
irc-core.c \
|
|
irc-commands.c \
|
|
irc-log.c \
|
|
irc-rawlog.c \
|
|
irc-server.c \
|
|
irc-special-vars.c \
|
|
ircnet-setup.c \
|
|
lag.c \
|
|
masks.c \
|
|
massjoin.c \
|
|
modes.c \
|
|
mode-lists.c \
|
|
netsplit.c \
|
|
nicklist.c \
|
|
query.c \
|
|
server-idle.c \
|
|
server-reconnect.c \
|
|
server-setup.c
|
|
|
|
noinst_HEADERS = \
|
|
bans.h \
|
|
ctcp.h \
|
|
channels.h \
|
|
channels-setup.h \
|
|
ignore.h \
|
|
irc.h \
|
|
irc-core.h \
|
|
irc-server.h \
|
|
ircnet-setup.h \
|
|
masks.h \
|
|
modes.h \
|
|
mode-lists.h \
|
|
module.h \
|
|
netsplit.h \
|
|
nicklist.h \
|
|
query.h \
|
|
server-idle.h \
|
|
server-reconnect.h \
|
|
server-setup.h
|