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
|
|
|
|
2017-09-30 07:59:11 +02:00
|
|
|
AM_CXXFLAGS = \
|
|
|
|
###
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_CPPFLAGS = \
|
2017-03-20 08:00:14 +01:00
|
|
|
-ffriend-injection \
|
2016-07-20 20:55:46 +02:00
|
|
|
-I$(top_srcdir)/include \
|
2016-09-24 06:01:57 +02:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-10-11 06:28:16 +02:00
|
|
|
@JS_CPPFLAGS@ \
|
2017-10-05 01:37:07 +02:00
|
|
|
-DBOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
|
|
|
|
-DBOOST_COROUTINE_NO_DEPRECATION_WARNING=1 \
|
2016-08-15 04:44:16 +02:00
|
|
|
@BOOST_CPPFLAGS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_CPPFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
-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
|
|
|
|
|
2017-09-12 18:54:10 +02:00
|
|
|
if DEBUG
|
|
|
|
if GCC
|
|
|
|
AM_CXXFLAGS += -fmax-errors=2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_LDFLAGS = \
|
2018-01-20 22:56:53 +01:00
|
|
|
-version-info 3:1:0 \
|
2016-11-08 01:28:12 +01:00
|
|
|
-Wl,-fuse-ld=gold \
|
|
|
|
-Wl,--no-allow-shlib-undefined \
|
|
|
|
-Wl,--export-dynamic \
|
|
|
|
-Wl,--no-gnu-unique \
|
2017-08-23 23:39:41 +02:00
|
|
|
-Wl,-z -Wl,now \
|
2017-09-08 11:43:23 +02:00
|
|
|
$(PLATFORM_LDFLAGS) \
|
|
|
|
# -Wl,--no-undefined \
|
|
|
|
###
|
2016-07-20 20:55:46 +02:00
|
|
|
|
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
libircd_la_LDFLAGS = \
|
|
|
|
$(AM_LDFLAGS) \
|
|
|
|
@ROCKSDB_LDFLAGS@ \
|
|
|
|
@JS_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
@BOOST_LDFLAGS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2017-08-23 23:39:41 +02:00
|
|
|
|
|
|
|
libircd_la_LIBADD = \
|
|
|
|
@ROCKSDB_LIBS@ \
|
|
|
|
@JS_LIBS@ \
|
|
|
|
@BOOST_LIBS@ \
|
2017-10-01 04:14:45 +02:00
|
|
|
@SODIUM_LIBS@ \
|
2017-08-23 23:39:41 +02:00
|
|
|
-lcrypto \
|
|
|
|
-lssl \
|
2017-09-08 11:43:23 +02:00
|
|
|
-lz \
|
|
|
|
###
|
2017-08-23 23:39:41 +02:00
|
|
|
|
2016-09-01 17:50:48 +02:00
|
|
|
libircd_la_SOURCES = \
|
2016-09-13 03:21:24 +02:00
|
|
|
client.cc \
|
2017-11-06 22:29:50 +01:00
|
|
|
hash.cc \
|
|
|
|
rand.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
ctx.cc \
|
2016-10-11 06:28:16 +02:00
|
|
|
db.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
exception.cc \
|
|
|
|
fmt.cc \
|
|
|
|
fs.cc \
|
2016-11-29 16:23:38 +01:00
|
|
|
http.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
info.cc \
|
|
|
|
ircd.cc \
|
2017-03-21 03:30:07 +01:00
|
|
|
json.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
lexical.cc \
|
2018-01-20 14:37:30 +01:00
|
|
|
base.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
locale.cc \
|
|
|
|
logger.cc \
|
2017-12-12 21:33:14 +01:00
|
|
|
m/event.cc \
|
2017-11-30 20:44:23 +01:00
|
|
|
m/id.cc \
|
|
|
|
m/io.cc \
|
2017-12-12 21:33:14 +01:00
|
|
|
m/keys.cc \
|
2018-01-20 11:35:50 +01:00
|
|
|
m/request.cc \
|
2017-12-12 21:33:14 +01:00
|
|
|
m/room.cc \
|
2017-11-30 20:44:23 +01:00
|
|
|
m/vm.cc \
|
|
|
|
m/m.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
mods.cc \
|
2017-09-30 08:04:41 +02:00
|
|
|
net.cc \
|
2017-09-30 01:35:55 +02:00
|
|
|
openssl.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
parse.cc \
|
|
|
|
resource.cc \
|
2018-01-15 05:06:49 +01:00
|
|
|
rfc1035.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
rfc1459.cc \
|
2017-12-12 21:14:47 +01:00
|
|
|
rfc3986.cc \
|
2017-10-25 18:39:58 +02:00
|
|
|
server.cc \
|
2017-10-01 04:14:45 +02:00
|
|
|
sodium.cc \
|
2017-08-19 22:27:51 +02:00
|
|
|
###
|
2016-11-29 16:23:38 +01:00
|
|
|
|
|
|
|
if JS
|
|
|
|
libircd_la_SOURCES += \
|
2016-10-25 09:46:53 +02:00
|
|
|
js.cc \
|
2017-09-08 11:43:23 +02:00
|
|
|
xdr.cc \
|
|
|
|
###
|
2016-11-29 16:23:38 +01:00
|
|
|
endif
|
2016-07-13 07:17:21 +02:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
|