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

133 lines
2.6 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 = \
###
2016-07-20 11:55:46 -07:00
AM_CPPFLAGS = \
-ffriend-injection \
2016-07-20 11:55:46 -07:00
-I$(top_srcdir)/include \
@ROCKSDB_CPPFLAGS@ \
2016-10-10 21:28:16 -07:00
@JS_CPPFLAGS@ \
-DBOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
-DBOOST_COROUTINE_NO_DEPRECATION_WARNING=1 \
@BOOST_CPPFLAGS@ \
@SODIUM_CPPFLAGS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_CPPFLAGS@ \
2017-09-08 02:43:23 -07:00
-include ircd/ircd.h \
###
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 \
-Wl,--no-allow-shlib-undefined \
-Wl,--export-dynamic \
-Wl,--no-gnu-unique \
2018-03-24 02:52:40 -07:00
-Wl,--gc-sections \
-Wl,--icf=all \
2017-08-23 15:39:41 -06:00
-Wl,-z -Wl,now \
2017-09-08 02:43:23 -07:00
$(PLATFORM_LDFLAGS) \
# -Wl,--no-undefined \
###
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@ \
@SODIUM_LDFLAGS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_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@ \
@SODIUM_LIBS@ \
2018-02-17 19:48:36 -08:00
@MAGIC_LIBS@ \
2017-08-23 15:39:41 -06:00
-lcrypto \
-lssl \
2017-09-08 02:43:23 -07:00
-lz \
###
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 = \
2017-09-08 02:43:23 -07:00
exception.cc \
lexical.cc \
json.cc \
locale.cc \
logger.cc \
2017-09-08 02:43:23 -07:00
info.cc \
sodium.cc \
2018-03-02 00:35:02 -08:00
conf.cc \
2018-02-15 14:04:19 -08:00
rfc1459.cc \
rand.cc \
hash.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.cc \
net.cc \
http.cc \
server.cc \
client.cc \
resource.cc \
m/id.cc \
m/event.cc \
m/dbs.cc \
2018-01-29 09:36:05 -08:00
m/state.cc \
m/room.cc \
m/filter.cc \
m/request.cc \
m/v1.cc \
2017-11-30 11:44:23 -08:00
m/m.cc \
2018-02-25 23:24:12 -08:00
m/vm.cc \
ircd.cc \
###
2016-11-29 07:23:38 -08:00
2018-02-05 22:42:40 -08:00
if AIO
libircd_la_SOURCES += \
aio.cc \
###
endif
2016-11-29 07:23:38 -08:00
if JS
libircd_la_SOURCES += \
js.cc \
2017-09-08 02:43:23 -07:00
xdr.cc \
###
2016-11-29 07:23:38 -08:00
endif
install-data-local:
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@