mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
99 lines
1.7 KiB
Makefile
99 lines
1.7 KiB
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
libircddir = @libdir@
|
|
|
|
AM_CXXFLAGS = \
|
|
###
|
|
|
|
AM_CPPFLAGS = \
|
|
-ffriend-injection \
|
|
-I$(top_srcdir)/include \
|
|
@ROCKSDB_CPPFLAGS@ \
|
|
@JS_CPPFLAGS@ \
|
|
-DBOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
|
|
-DBOOST_COROUTINE_NO_DEPRECATION_WARNING=1 \
|
|
@BOOST_CPPFLAGS@ \
|
|
@SODIUM_CPPFLAGS@ \
|
|
-include ircd/ircd.h \
|
|
###
|
|
|
|
if MINGW
|
|
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
|
|
endif
|
|
|
|
if DEBUG
|
|
if GCC
|
|
AM_CXXFLAGS += -fmax-errors=2
|
|
endif
|
|
endif
|
|
|
|
AM_LDFLAGS = \
|
|
-version-info 5:0:0 \
|
|
-Wl,-fuse-ld=gold \
|
|
-Wl,--no-allow-shlib-undefined \
|
|
-Wl,--export-dynamic \
|
|
-Wl,--no-gnu-unique \
|
|
-Wl,-z -Wl,now \
|
|
$(PLATFORM_LDFLAGS) \
|
|
# -Wl,--no-undefined \
|
|
###
|
|
|
|
libircd_LTLIBRARIES = libircd.la
|
|
|
|
libircd_la_LDFLAGS = \
|
|
$(AM_LDFLAGS) \
|
|
@ROCKSDB_LDFLAGS@ \
|
|
@JS_LDFLAGS@ \
|
|
@BOOST_LDFLAGS@ \
|
|
@SODIUM_LDFLAGS@ \
|
|
###
|
|
|
|
libircd_la_LIBADD = \
|
|
@ROCKSDB_LIBS@ \
|
|
@JS_LIBS@ \
|
|
@BOOST_LIBS@ \
|
|
@SODIUM_LIBS@ \
|
|
-lcrypto \
|
|
-lssl \
|
|
-lz \
|
|
###
|
|
|
|
libircd_la_SOURCES = \
|
|
client.cc \
|
|
hash.cc \
|
|
rand.cc \
|
|
ctx.cc \
|
|
db.cc \
|
|
exception.cc \
|
|
fmt.cc \
|
|
fs.cc \
|
|
http.cc \
|
|
info.cc \
|
|
ircd.cc \
|
|
json.cc \
|
|
lexical.cc \
|
|
locale.cc \
|
|
logger.cc \
|
|
m_id.cc \
|
|
m_io.cc \
|
|
m_vm.cc \
|
|
m.cc \
|
|
mods.cc \
|
|
net.cc \
|
|
openssl.cc \
|
|
parse.cc \
|
|
resource.cc \
|
|
rfc1459.cc \
|
|
server.cc \
|
|
sodium.cc \
|
|
###
|
|
|
|
if JS
|
|
libircd_la_SOURCES += \
|
|
js.cc \
|
|
xdr.cc \
|
|
###
|
|
endif
|
|
|
|
install-data-local:
|
|
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
|