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
|
|
|
|
2017-09-29 22:59:11 -07:00
|
|
|
AM_CXXFLAGS = \
|
2018-12-23 16:56:28 -08:00
|
|
|
-ftls-model=initial-exec \
|
2018-11-29 12:39:33 -08:00
|
|
|
@EXTRA_CXXFLAGS@ \
|
2017-09-29 22:59:11 -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@ \
|
2018-09-03 03:02:35 -07:00
|
|
|
@SSL_CPPFLAGS@ \
|
|
|
|
@CRYPTO_CPPFLAGS@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_CPPFLAGS@ \
|
2018-02-17 19:48:36 -08:00
|
|
|
@MAGIC_CPPFLAGS@ \
|
2018-06-04 14:48:04 -07:00
|
|
|
@SNAPPY_CPPFLAGS@ \
|
2018-06-04 14:43:20 -07:00
|
|
|
@LZ4_CPPFLAGS@ \
|
2018-06-03 08:29:20 -07:00
|
|
|
@Z_CPPFLAGS@ \
|
2018-06-15 16:13:18 -06:00
|
|
|
-include ircd/ircd.pic.h \
|
2018-11-29 12:39:33 -08:00
|
|
|
@EXTRA_CPPFLAGS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
###
|
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
|
|
|
|
|
2017-09-12 09:54:10 -07:00
|
|
|
if DEBUG
|
|
|
|
if GCC
|
|
|
|
AM_CXXFLAGS += -fmax-errors=2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
AM_LDFLAGS = \
|
2018-01-20 13:56:53 -08:00
|
|
|
-version-info 3:1:0 \
|
2016-11-07 16:28:12 -08:00
|
|
|
-Wl,-fuse-ld=gold \
|
2018-12-21 14:38:14 -08:00
|
|
|
-Wl,--warn-common \
|
|
|
|
-Wl,--warn-execstack \
|
2018-05-31 13:00:58 -07:00
|
|
|
-Wl,--detect-odr-violations \
|
2019-02-08 18:24:20 -08:00
|
|
|
-Wl,--unresolved-symbols=report-all \
|
|
|
|
-Wl,--no-undefined-version \
|
2018-05-31 13:00:58 -07:00
|
|
|
-Wl,--no-undefined \
|
2016-11-07 16:28:12 -08:00
|
|
|
-Wl,--no-gnu-unique \
|
2019-02-08 18:24:20 -08:00
|
|
|
-Wl,--export-dynamic \
|
2018-03-24 02:52:40 -07:00
|
|
|
-Wl,--gc-sections \
|
|
|
|
-Wl,--icf=all \
|
2018-05-31 13:00:58 -07:00
|
|
|
-Wl,--rosegment \
|
2019-01-18 13:53:37 -08:00
|
|
|
-Wl,--whole-archive \
|
2018-05-31 13:00:58 -07:00
|
|
|
-Wl,-z -Wl,initfirst \
|
|
|
|
-Wl,-z -Wl,nodelete \
|
|
|
|
-Wl,-z -Wl,nodlopen \
|
2019-02-08 18:24:20 -08:00
|
|
|
-Wl,-z -Wl,noexecstack \
|
2017-08-23 15:39:41 -06:00
|
|
|
-Wl,-z -Wl,now \
|
2019-01-18 13:53:37 -08:00
|
|
|
-Wl,-z -Wl,combreloc \
|
|
|
|
-Wl,-z -Wl,nocopyreloc \
|
2017-09-08 02:43:23 -07:00
|
|
|
$(PLATFORM_LDFLAGS) \
|
2018-11-29 12:39:33 -08:00
|
|
|
@EXTRA_LDFLAGS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
###
|
2016-07-20 11:55:46 -07:00
|
|
|
|
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
|
2017-08-23 15:39:41 -06:00
|
|
|
libircd_la_LDFLAGS = \
|
|
|
|
$(AM_LDFLAGS) \
|
|
|
|
@ROCKSDB_LDFLAGS@ \
|
|
|
|
@JS_LDFLAGS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
@BOOST_LDFLAGS@ \
|
2018-09-03 03:02:35 -07:00
|
|
|
@SSL_LDFLAGS@ \
|
|
|
|
@CRYPTO_LDFLAGS@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_LDFLAGS@ \
|
2018-02-17 19:48:36 -08:00
|
|
|
@MAGIC_LDFLAGS@ \
|
2018-06-04 14:48:04 -07:00
|
|
|
@SNAPPY_LDFLAGS@ \
|
2018-06-04 14:43:20 -07:00
|
|
|
@LZ4_LDFLAGS@ \
|
2018-06-03 08:29:20 -07:00
|
|
|
@Z_LDFLAGS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
###
|
2017-08-23 15:39:41 -06:00
|
|
|
|
|
|
|
libircd_la_LIBADD = \
|
|
|
|
@ROCKSDB_LIBS@ \
|
|
|
|
@JS_LIBS@ \
|
|
|
|
@BOOST_LIBS@ \
|
2018-09-03 03:02:35 -07:00
|
|
|
@SSL_LIBS@ \
|
|
|
|
@CRYPTO_LIBS@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_LIBS@ \
|
2018-02-17 19:48:36 -08:00
|
|
|
@MAGIC_LIBS@ \
|
2018-06-04 14:48:04 -07:00
|
|
|
@SNAPPY_LIBS@ \
|
2018-06-04 14:43:20 -07:00
|
|
|
@LZ4_LIBS@ \
|
2018-06-03 08:29:20 -07:00
|
|
|
@Z_LIBS@ \
|
2018-11-29 12:39:33 -08:00
|
|
|
@EXTRA_LIBS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
###
|
2017-08-23 15:39:41 -06:00
|
|
|
|
2018-02-11 11:51:46 -08:00
|
|
|
# Since this is a GNU C++ project we assume the non-standard respect for
|
|
|
|
# the order of this sources list. Static initialization will occur in
|
|
|
|
# the same order as this list, and destruction in the reverse order.
|
|
|
|
#
|
|
|
|
# Add the most dependent units at the end and the least dependent units
|
|
|
|
# at the beginning.
|
|
|
|
#
|
2018-02-15 14:04:19 -08:00
|
|
|
# Note: Some exceptions to the order have been made for now to diffuse
|
|
|
|
# the units that compile spirit grammars otherwise they thrash weaker
|
|
|
|
# systems.
|
2016-09-01 08:50:48 -07:00
|
|
|
libircd_la_SOURCES = \
|
2018-12-21 12:58:53 -08:00
|
|
|
info.cc \
|
2019-01-18 13:53:37 -08:00
|
|
|
allocator.cc \
|
2018-05-29 02:24:59 -07:00
|
|
|
exception.cc \
|
2018-10-21 00:50:41 -07:00
|
|
|
util.cc \
|
2018-10-17 05:12:10 -07:00
|
|
|
ios.cc \
|
2018-03-09 12:20:23 -08:00
|
|
|
lexical.cc \
|
2018-04-24 16:40:55 -07:00
|
|
|
tokens.cc \
|
2018-03-09 12:20:23 -08:00
|
|
|
json.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
locale.cc \
|
2018-12-18 17:44:36 -08:00
|
|
|
conf.cc \
|
2019-03-12 15:00:14 -07:00
|
|
|
stats.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
logger.cc \
|
|
|
|
sodium.cc \
|
2018-02-15 14:04:19 -08:00
|
|
|
rfc1459.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
rand.cc \
|
2018-11-08 17:04:15 -08:00
|
|
|
crh.cc \
|
2018-01-20 05:37:30 -08:00
|
|
|
base.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
parse.cc \
|
|
|
|
openssl.cc \
|
2018-02-18 22:50:37 -08:00
|
|
|
magic.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
fs.cc \
|
|
|
|
ctx.cc \
|
|
|
|
rfc3986.cc \
|
|
|
|
rfc1035.cc \
|
2018-03-23 11:47:23 -07:00
|
|
|
demangle.cc \
|
2018-02-15 14:04:19 -08:00
|
|
|
mods.cc \
|
|
|
|
fmt.cc \
|
2019-01-23 13:51:17 -08:00
|
|
|
db_port.cc \
|
|
|
|
db_env.cc \
|
2018-02-15 14:04:19 -08:00
|
|
|
db.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
net.cc \
|
2018-03-09 12:20:23 -08:00
|
|
|
http.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
server.cc \
|
|
|
|
client.cc \
|
|
|
|
resource.cc \
|
2019-01-23 13:24:53 -08:00
|
|
|
m_name.cc \
|
|
|
|
m_id.cc \
|
|
|
|
m_event.cc \
|
|
|
|
m_dbs.cc \
|
|
|
|
m_state.cc \
|
|
|
|
m_room.cc \
|
|
|
|
m_v1.cc \
|
|
|
|
m.cc \
|
2018-02-11 11:51:46 -08:00
|
|
|
ircd.cc \
|
2017-08-19 14:27:51 -06:00
|
|
|
###
|
2016-11-29 07:23:38 -08:00
|
|
|
|
2018-02-05 22:42:40 -08:00
|
|
|
if AIO
|
|
|
|
libircd_la_SOURCES += \
|
2019-01-23 13:20:38 -08:00
|
|
|
fs_aio.cc \
|
2018-02-05 22:42:40 -08:00
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
2016-11-29 07:23:38 -08:00
|
|
|
if JS
|
|
|
|
libircd_la_SOURCES += \
|
2016-10-25 00:46:53 -07:00
|
|
|
js.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
###
|
2016-11-29 07:23:38 -08:00
|
|
|
endif
|