0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-16 17:46:54 +01:00
construct/ircd/Makefile.am

160 lines
3.1 KiB
Text
Raw Normal View History

AUTOMAKE_OPTIONS = foreign
2016-07-20 11:55:46 -07:00
libircddir = @libdir@
2017-09-29 22:59:11 -07:00
AM_CXXFLAGS = \
2018-12-23 16:56:28 -08:00
-ftls-model=initial-exec \
@EXTRA_CXXFLAGS@ \
2017-09-29 22:59:11 -07:00
###
2016-07-20 11:55:46 -07:00
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
@ROCKSDB_CPPFLAGS@ \
2016-10-10 21:28:16 -07:00
@JS_CPPFLAGS@ \
@BOOST_CPPFLAGS@ \
@SSL_CPPFLAGS@ \
@CRYPTO_CPPFLAGS@ \
@SODIUM_CPPFLAGS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_CPPFLAGS@ \
@SNAPPY_CPPFLAGS@ \
@LZ4_CPPFLAGS@ \
@Z_CPPFLAGS@ \
-include ircd/ircd.pic.h \
@EXTRA_CPPFLAGS@ \
2017-09-08 02:43:23 -07:00
###
2016-07-20 11:55:46 -07:00
if MINGW
2016-07-20 11:55:46 -07:00
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
endif
if DEBUG
if GCC
AM_CXXFLAGS += -fmax-errors=2
endif
endif
2016-07-20 11:55:46 -07:00
AM_LDFLAGS = \
-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 \
-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 \
-Wl,-z -Wl,combreloc \
-Wl,-z -Wl,nocopyreloc \
2017-09-08 02:43:23 -07:00
$(PLATFORM_LDFLAGS) \
@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@ \
@SSL_LDFLAGS@ \
@CRYPTO_LDFLAGS@ \
@SODIUM_LDFLAGS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_LDFLAGS@ \
@SNAPPY_LDFLAGS@ \
@LZ4_LDFLAGS@ \
@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@ \
@SSL_LIBS@ \
@CRYPTO_LIBS@ \
@SODIUM_LIBS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_LIBS@ \
@SNAPPY_LIBS@ \
@LZ4_LIBS@ \
@Z_LIBS@ \
@EXTRA_LIBS@ \
2017-09-08 02:43:23 -07:00
###
2017-08-23 15:39:41 -06: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.
libircd_la_SOURCES = \
info.cc \
allocator.cc \
exception.cc \
util.cc \
ios.cc \
lexical.cc \
2018-04-24 16:40:55 -07:00
tokens.cc \
json.cc \
locale.cc \
conf.cc \
stats.cc \
logger.cc \
sodium.cc \
2018-02-15 14:04:19 -08:00
rfc1459.cc \
rand.cc \
crh.cc \
2018-01-20 05:37:30 -08:00
base.cc \
parse.cc \
openssl.cc \
2018-02-18 22:50:37 -08:00
magic.cc \
fs.cc \
ctx.cc \
rfc3986.cc \
rfc1035.cc \
demangle.cc \
2018-02-15 14:04:19 -08:00
mods.cc \
fmt.cc \
db_port.cc \
db_env.cc \
2018-02-15 14:04:19 -08:00
db.cc \
net.cc \
http.cc \
server.cc \
client.cc \
resource.cc \
m_name.cc \
m_id.cc \
m_event.cc \
m_dbs.cc \
m_state.cc \
m_room.cc \
m_v1.cc \
m.cc \
ircd.cc \
###
2016-11-29 07:23:38 -08:00
2018-02-05 22:42:40 -08:00
if AIO
libircd_la_SOURCES += \
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 += \
js.cc \
2017-09-08 02:43:23 -07:00
###
2016-11-29 07:23:38 -08:00
endif