0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 10:08:56 +02:00
construct/ircd/Makefile.am

143 lines
2.7 KiB
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS = foreign
2016-07-20 20:55:46 +02:00
libircddir = @libdir@
2017-09-30 07:59:11 +02:00
AM_CXXFLAGS = \
###
2016-07-20 20:55:46 +02:00
AM_CPPFLAGS = \
-ffriend-injection \
2016-07-20 20:55:46 +02:00
-I$(top_srcdir)/include \
@ROCKSDB_CPPFLAGS@ \
2016-10-11 06:28:16 +02:00
@JS_CPPFLAGS@ \
@BOOST_CPPFLAGS@ \
@SODIUM_CPPFLAGS@ \
2018-02-18 04:48:36 +01:00
@MAGIC_CPPFLAGS@ \
@SNAPPY_CPPFLAGS@ \
@LZ4_CPPFLAGS@ \
@Z_CPPFLAGS@ \
2017-09-08 11:43:23 +02:00
-include ircd/ircd.h \
###
2016-07-20 20:55:46 +02:00
if MINGW
2016-07-20 20:55:46 +02: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 20:55:46 +02:00
AM_LDFLAGS = \
-version-info 3:1:0 \
2016-11-08 01:28:12 +01:00
-Wl,-fuse-ld=gold \
2018-05-31 22:00:58 +02:00
-Wl,--detect-odr-violations \
2016-11-08 01:28:12 +01:00
-Wl,--export-dynamic \
2018-05-31 22:00:58 +02:00
-Wl,--no-undefined \
2016-11-08 01:28:12 +01:00
-Wl,--no-gnu-unique \
2018-03-24 10:52:40 +01:00
-Wl,--gc-sections \
-Wl,--icf=all \
2018-05-31 22:00:58 +02:00
-Wl,--rosegment \
-Wl,-z -Wl,initfirst \
-Wl,-z -Wl,nodelete \
-Wl,-z -Wl,nodlopen \
2017-08-23 23:39:41 +02:00
-Wl,-z -Wl,now \
2017-09-08 11:43:23 +02:00
$(PLATFORM_LDFLAGS) \
###
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@ \
@SODIUM_LDFLAGS@ \
2018-02-18 04:48:36 +01:00
@MAGIC_LDFLAGS@ \
@SNAPPY_LDFLAGS@ \
@LZ4_LDFLAGS@ \
@Z_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@ \
@SODIUM_LIBS@ \
2018-02-18 04:48:36 +01:00
@MAGIC_LIBS@ \
2017-08-23 23:39:41 +02:00
-lcrypto \
-lssl \
@SNAPPY_LIBS@ \
@LZ4_LIBS@ \
@Z_LIBS@ \
2017-09-08 11:43:23 +02:00
###
2017-08-23 23:39:41 +02: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 23:04:19 +01: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 = \
allocator.cc \
exception.cc \
lexical.cc \
2018-04-25 01:40:55 +02:00
tokens.cc \
json.cc \
locale.cc \
logger.cc \
2017-09-08 11:43:23 +02:00
info.cc \
sodium.cc \
2018-03-02 09:35:02 +01:00
conf.cc \
2018-02-15 23:04:19 +01:00
rfc1459.cc \
rand.cc \
hash.cc \
2018-01-20 14:37:30 +01:00
base.cc \
parse.cc \
openssl.cc \
2018-02-19 07:50:37 +01:00
magic.cc \
fs.cc \
ctx.cc \
rfc3986.cc \
rfc1035.cc \
demangle.cc \
2018-02-15 23:04:19 +01:00
mods.cc \
fmt.cc \
db.cc \
net.cc \
http.cc \
server.cc \
client.cc \
resource.cc \
m/id.cc \
m/event.cc \
m/dbs.cc \
2018-01-29 18:36:05 +01:00
m/state.cc \
m/room.cc \
m/request.cc \
m/v1.cc \
2017-11-30 20:44:23 +01:00
m/m.cc \
ircd.cc \
###
2016-11-29 16:23:38 +01:00
2018-02-06 07:42:40 +01:00
if AIO
libircd_la_SOURCES += \
aio.cc \
###
endif
2016-11-29 16:23:38 +01:00
if JS
libircd_la_SOURCES += \
js.cc \
2017-09-08 11:43:23 +02:00
xdr.cc \
###
2016-11-29 16:23:38 +01:00
endif
install-data-local:
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@