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

76 lines
1.3 KiB
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS = foreign
2016-07-20 20:55:46 +02:00
libircddir = @libdir@
2016-07-20 20:55:46 +02:00
AM_CPPFLAGS = \
2017-08-23 23:39:41 +02:00
-fmax-errors=2 \
-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@ \
-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
2016-07-20 20:55:46 +02:00
AM_LDFLAGS = \
-avoid-version \
2016-11-08 01:28:12 +01:00
-Wl,-fuse-ld=gold \
-Wl,--no-allow-shlib-undefined \
-Wl,--export-dynamic \
-Wl,--no-gnu-unique \
2017-08-23 23:39:41 +02:00
-Wl,-z -Wl,now \
2016-07-20 20:55:46 +02:00
$(PLATFORM_LDFLAGS)
2017-04-03 06:04:46 +02:00
# -Wl,--no-undefined
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@ \
@BOOST_LDFLAGS@
libircd_la_LIBADD = \
@ROCKSDB_LIBS@ \
@JS_LIBS@ \
@BOOST_LIBS@ \
-lcrypto \
-lssl \
-lz
libircd_la_SOURCES = \
ircd.cc \
2016-11-29 16:23:38 +01:00
info.cc \
exception.cc \
rfc1459.cc \
lexical.cc \
logger.cc \
fs.cc \
mods.cc \
2016-11-29 16:23:38 +01:00
resource.cc \
2016-09-10 21:57:33 +02:00
ctx.cc \
2016-11-29 16:23:38 +01:00
socket.cc \
client.cc \
fmt.cc \
2016-10-11 06:28:16 +02:00
db.cc \
2016-11-29 16:23:38 +01:00
locale.cc \
http.cc \
2017-03-21 03:30:07 +01:00
json.cc \
parse.cc \
listen.cc \
matrix.cc \
rand.cc \
###
2016-11-29 16:23:38 +01:00
if JS
libircd_la_SOURCES += \
js.cc \
2016-11-29 16:23:38 +01:00
xdr.cc
endif
install-data-local:
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@