2016-01-05 21:20:25 -06:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
libircddir = @libdir@
|
2016-07-12 22:17:21 -07:00
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
2016-09-23 21:01:57 -07:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-10-10 21:28:16 -07:00
|
|
|
@JS_CPPFLAGS@ \
|
2016-08-14 19:44:16 -07:00
|
|
|
@BOOST_CPPFLAGS@ \
|
|
|
|
-include ircd/ircd.h
|
2016-07-20 11:55:46 -07:00
|
|
|
|
2016-03-20 02:08:14 -05:00
|
|
|
if MINGW
|
2016-07-20 11:55:46 -07:00
|
|
|
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
|
2016-03-20 02:08:14 -05:00
|
|
|
endif
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
AM_LDFLAGS = \
|
|
|
|
-export-dynamic \
|
|
|
|
-avoid-version \
|
|
|
|
-no-undefined \
|
|
|
|
$(PLATFORM_LDFLAGS)
|
|
|
|
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-L$(top_srcdir)/rb \
|
2016-10-10 21:28:16 -07:00
|
|
|
@JS_LDFLAGS@ \
|
2016-09-23 21:01:57 -07:00
|
|
|
@ROCKSDB_LDFLAGS@ \
|
2016-07-20 11:55:46 -07:00
|
|
|
@BOOST_LDFLAGS@
|
|
|
|
|
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
|
|
|
|
libircd_la_LIBADD = \
|
|
|
|
-lrb \
|
2016-09-23 21:01:57 -07:00
|
|
|
@ROCKSDB_LIBS@ \
|
2016-10-10 21:28:16 -07:00
|
|
|
@JS_LIBS@ \
|
2016-07-20 11:55:46 -07:00
|
|
|
@BOOST_LIBS@
|
|
|
|
|
2016-09-01 08:50:48 -07: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-05 16:05:16 -07:00
|
|
|
info.cc \
|
2016-09-10 13:50:52 -07:00
|
|
|
cmds.cc \
|
2016-09-10 12:57:33 -07:00
|
|
|
ctx.cc \
|
2016-09-12 18:21:24 -07:00
|
|
|
client.cc \
|
2016-09-16 19:48:25 -07:00
|
|
|
vm.cc \
|
2016-09-22 16:59:22 -07:00
|
|
|
hook.cc \
|
2016-09-23 21:01:57 -07:00
|
|
|
fmt.cc \
|
2016-10-10 21:28:16 -07:00
|
|
|
db.cc \
|
2016-10-25 00:46:53 -07:00
|
|
|
js.cc \
|
|
|
|
locale.cc
|
2016-09-01 08:50:48 -07: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-12 22:17:21 -07:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
|
|
|
|
|
2016-06-30 20:04:00 -07:00
|
|
|
clean-local:
|
2016-07-24 16:11:34 -07: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
|