2000-08-26 15:39:44 +00:00
|
|
|
noinst_LIBRARIES = libcore.a
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2014-06-21 11:37:28 -04:00
|
|
|
AM_CPPFLAGS = \
|
2001-11-05 14:48:03 +00:00
|
|
|
-I$(top_srcdir)/src \
|
|
|
|
-I$(top_srcdir)/src/core \
|
2000-04-26 08:03:38 +00:00
|
|
|
$(GLIB_CFLAGS) \
|
|
|
|
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
2001-11-05 14:48:03 +00:00
|
|
|
-DMODULEDIR=\""$(libdir)/irssi/modules"\"
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2017-02-16 22:48:13 +01:00
|
|
|
if USE_GREGEX
|
|
|
|
regex_impl=iregex-gregex.c
|
|
|
|
else
|
|
|
|
regex_impl=iregex-regexh.c
|
|
|
|
endif
|
|
|
|
|
2000-08-26 15:39:44 +00:00
|
|
|
libcore_a_SOURCES = \
|
2000-04-26 08:03:38 +00:00
|
|
|
args.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
channels.c \
|
|
|
|
channels-setup.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
commands.c \
|
2000-09-30 22:49:48 +00:00
|
|
|
chat-commands.c \
|
2000-09-01 00:26:46 +00:00
|
|
|
chat-protocols.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
chatnets.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
core.c \
|
2000-12-05 00:53:04 +00:00
|
|
|
expandos.c \
|
2000-10-09 23:40:18 +00:00
|
|
|
ignore.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
levels.c \
|
|
|
|
line-split.c \
|
|
|
|
log.c \
|
2001-07-15 14:07:48 +00:00
|
|
|
log-away.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
masks.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
misc.c \
|
|
|
|
modules.c \
|
2001-08-14 00:41:59 +00:00
|
|
|
modules-load.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
net-disconnect.c \
|
|
|
|
net-nonblock.c \
|
2000-07-16 20:18:05 +00:00
|
|
|
net-sendbuffer.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
network.c \
|
2002-08-26 19:32:15 +00:00
|
|
|
network-openssl.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
nicklist.c \
|
2001-01-21 04:09:48 +00:00
|
|
|
nickmatch-cache.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
pidwait.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
queries.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
rawlog.c \
|
2004-08-20 00:03:40 +00:00
|
|
|
recode.c \
|
2000-08-26 15:39:44 +00:00
|
|
|
servers.c \
|
|
|
|
servers-reconnect.c \
|
|
|
|
servers-setup.c \
|
2001-11-19 01:48:58 +00:00
|
|
|
session.c \
|
2000-04-26 08:03:38 +00:00
|
|
|
settings.c \
|
|
|
|
signals.c \
|
2001-02-10 05:54:35 +00:00
|
|
|
special-vars.c \
|
2016-05-13 01:26:33 +02:00
|
|
|
utf8.c \
|
2017-02-16 22:48:13 +01:00
|
|
|
$(regex_impl) \
|
2016-05-18 15:42:09 +02:00
|
|
|
wcwidth.c \
|
2016-10-16 14:07:22 +02:00
|
|
|
tls.c \
|
2001-02-10 05:54:35 +00:00
|
|
|
write-buffer.c
|
2000-04-26 08:03:38 +00:00
|
|
|
|
2000-08-26 15:39:44 +00:00
|
|
|
structure_headers = \
|
|
|
|
channel-rec.h \
|
2001-02-17 19:44:22 +00:00
|
|
|
channel-setup-rec.h \
|
|
|
|
chatnet-rec.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
query-rec.h \
|
|
|
|
server-rec.h \
|
|
|
|
server-setup-rec.h \
|
|
|
|
server-connect-rec.h \
|
|
|
|
window-item-rec.h
|
|
|
|
|
2004-05-10 20:30:57 +00:00
|
|
|
pkginc_coredir=$(pkgincludedir)/src/core
|
|
|
|
pkginc_core_HEADERS = \
|
2000-04-26 08:03:38 +00:00
|
|
|
args.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
channels.h \
|
|
|
|
channels-setup.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
commands.h \
|
2000-09-01 00:26:46 +00:00
|
|
|
chat-protocols.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
chatnets.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
core.h \
|
2000-12-05 00:53:04 +00:00
|
|
|
expandos.h \
|
2000-10-09 23:40:18 +00:00
|
|
|
ignore.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
levels.h \
|
|
|
|
line-split.h \
|
|
|
|
log.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
masks.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
misc.h \
|
|
|
|
module.h \
|
|
|
|
modules.h \
|
2001-08-14 00:41:59 +00:00
|
|
|
modules-load.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
net-disconnect.h \
|
|
|
|
net-nonblock.h \
|
2000-07-16 20:18:05 +00:00
|
|
|
net-sendbuffer.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
network.h \
|
2000-12-06 01:07:21 +00:00
|
|
|
nick-rec.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
nicklist.h \
|
2001-01-21 04:09:48 +00:00
|
|
|
nickmatch-cache.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
pidwait.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
queries.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
rawlog.h \
|
2004-08-20 00:03:40 +00:00
|
|
|
recode.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
servers.h \
|
|
|
|
servers-reconnect.h \
|
|
|
|
servers-setup.h \
|
2001-11-19 01:48:58 +00:00
|
|
|
session.h \
|
2000-04-26 08:03:38 +00:00
|
|
|
settings.h \
|
|
|
|
signals.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
special-vars.h \
|
2016-05-18 15:42:09 +02:00
|
|
|
utf8.h \
|
2017-02-16 22:48:13 +01:00
|
|
|
iregex.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
window-item-def.h \
|
2016-10-16 14:07:22 +02:00
|
|
|
tls.h \
|
2001-02-10 05:54:35 +00:00
|
|
|
write-buffer.h \
|
2000-08-26 15:39:44 +00:00
|
|
|
$(structure_headers)
|