2016-01-06 04:20:25 +01:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
libircddir = @libdir@
|
2016-07-13 07:17:21 +02:00
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
2016-09-24 06:01:57 +02:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-08-15 04:44:16 +02:00
|
|
|
@BOOST_CPPFLAGS@ \
|
|
|
|
-include ircd/ircd.h
|
2016-07-20 20:55:46 +02:00
|
|
|
|
2016-03-20 08:08:14 +01:00
|
|
|
if MINGW
|
2016-07-20 20:55:46 +02:00
|
|
|
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
|
2016-03-20 08:08:14 +01:00
|
|
|
endif
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_LDFLAGS = \
|
|
|
|
-export-dynamic \
|
|
|
|
-avoid-version \
|
|
|
|
-no-undefined \
|
|
|
|
$(PLATFORM_LDFLAGS)
|
|
|
|
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-L$(top_srcdir)/rb \
|
2016-09-24 06:01:57 +02:00
|
|
|
@ROCKSDB_LDFLAGS@ \
|
2016-07-20 20:55:46 +02:00
|
|
|
@BOOST_LDFLAGS@
|
|
|
|
|
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
|
|
|
|
libircd_la_LIBADD = \
|
|
|
|
-lrb \
|
2016-09-24 06:01:57 +02:00
|
|
|
@ROCKSDB_LIBS@ \
|
2016-07-20 20:55:46 +02:00
|
|
|
@BOOST_LIBS@
|
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
libircd_la_SOURCES = \
|
|
|
|
ircd.cc \
|
|
|
|
exception.cc \
|
|
|
|
rfc1459.cc \
|
|
|
|
stringops.cc \
|
|
|
|
match.cc \
|
|
|
|
logger.cc \
|
|
|
|
fs.cc \
|
|
|
|
conf.cc \
|
|
|
|
newconf.cc \
|
|
|
|
modules.cc \
|
|
|
|
snomask.cc \
|
2016-09-06 01:05:16 +02:00
|
|
|
info.cc \
|
2016-09-10 22:50:52 +02:00
|
|
|
cmds.cc \
|
2016-09-10 21:57:33 +02:00
|
|
|
ctx.cc \
|
2016-09-13 03:21:24 +02:00
|
|
|
client.cc \
|
2016-09-17 04:48:25 +02:00
|
|
|
vm.cc \
|
2016-09-23 01:59:22 +02:00
|
|
|
hook.cc \
|
2016-09-24 06:01:57 +02:00
|
|
|
fmt.cc \
|
|
|
|
db.cc
|
2016-09-01 17:50:48 +02:00
|
|
|
|
|
|
|
#authproc.cc \
|
|
|
|
#bandbi.cc \
|
|
|
|
#cache.cc \
|
|
|
|
#cache_serv.cc \
|
|
|
|
#capability.cc \
|
|
|
|
#channel.cc \
|
|
|
|
#client.cc \
|
|
|
|
#client_mode.cc \
|
|
|
|
#chmode.cc \
|
|
|
|
#class.cc \
|
|
|
|
#dns.cc \
|
|
|
|
#extban.cc \
|
|
|
|
#hash.cc \
|
|
|
|
#hook.cc \
|
|
|
|
#mask.cc \
|
|
|
|
#ircd.cc \
|
|
|
|
#listener.cc \
|
|
|
|
#monitor.cc \
|
|
|
|
#msgbuf.cc \
|
|
|
|
#operhash.cc \
|
|
|
|
#packet.cc \
|
|
|
|
#parse.cc \
|
|
|
|
#privilege.cc \
|
|
|
|
#ratelimit.cc \
|
|
|
|
#reject.cc \
|
|
|
|
#restart.cc \
|
|
|
|
#s_conf.cc \
|
|
|
|
#s_newconf.cc \
|
|
|
|
#s_serv.cc \
|
|
|
|
#s_user.cc \
|
|
|
|
#sslproc.cc \
|
|
|
|
#substitution.cc \
|
|
|
|
#supported.cc \
|
|
|
|
#tgchange.cc \
|
|
|
|
#whowas.cc \
|
|
|
|
#wsproc.cc
|
2016-07-13 07:17:21 +02:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
|
|
|
|
|
2016-07-01 05:04:00 +02:00
|
|
|
clean-local:
|
2016-07-25 01:11:34 +02:00
|
|
|
rm -f ircd_lexer.c ircd_lexer.cc
|
|
|
|
rm -f ircd_parser.c ircd_parser.cc
|
|
|
|
rm -f ircd_parser.h ircd_parser.hh
|
|
|
|
rm -f stack.hh
|