2016-01-05 21:20:25 -06:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
libircddir = @libdir@
|
2016-07-12 22:17:21 -07:00
|
|
|
|
2017-09-29 22:59:11 -07:00
|
|
|
AM_CXXFLAGS = \
|
|
|
|
###
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
AM_CPPFLAGS = \
|
2017-03-20 00:00:14 -07:00
|
|
|
-ffriend-injection \
|
2016-07-20 11:55:46 -07:00
|
|
|
-I$(top_srcdir)/include \
|
2016-09-23 21:01:57 -07:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-10-10 21:28:16 -07:00
|
|
|
@JS_CPPFLAGS@ \
|
2017-10-04 16:37:07 -07:00
|
|
|
-DBOOST_COROUTINES_NO_DEPRECATION_WARNING=1 \
|
|
|
|
-DBOOST_COROUTINE_NO_DEPRECATION_WARNING=1 \
|
2016-08-14 19:44:16 -07:00
|
|
|
@BOOST_CPPFLAGS@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_CPPFLAGS@ \
|
2017-09-08 02:43:23 -07:00
|
|
|
-include ircd/ircd.h \
|
|
|
|
###
|
2016-07-20 11:55:46 -07:00
|
|
|
|
2016-03-20 02:08:14 -05:00
|
|
|
if MINGW
|
2016-07-20 11:55:46 -07:00
|
|
|
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
|
2016-03-20 02:08:14 -05:00
|
|
|
endif
|
|
|
|
|
2017-09-12 09:54:10 -07:00
|
|
|
if DEBUG
|
|
|
|
if GCC
|
|
|
|
AM_CXXFLAGS += -fmax-errors=2
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-07-20 11:55:46 -07:00
|
|
|
AM_LDFLAGS = \
|
2017-10-11 18:03:59 -07:00
|
|
|
-version-info 5:0: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 \
|
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@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_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@ \
|
2017-09-30 19:14:45 -07:00
|
|
|
@SODIUM_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
|
|
|
|
2016-09-01 08:50:48 -07:00
|
|
|
libircd_la_SOURCES = \
|
2016-09-12 18:21:24 -07:00
|
|
|
client.cc \
|
2017-11-06 13:29:50 -08:00
|
|
|
hash.cc \
|
|
|
|
rand.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
ctx.cc \
|
2017-11-30 11:07:07 -08:00
|
|
|
cuckoo.cc \
|
2016-10-10 21:28:16 -07:00
|
|
|
db.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
exception.cc \
|
|
|
|
fmt.cc \
|
|
|
|
fs.cc \
|
2016-11-29 07:23:38 -08:00
|
|
|
http.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
info.cc \
|
|
|
|
ircd.cc \
|
2017-03-20 19:30:07 -07:00
|
|
|
json.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
lexical.cc \
|
|
|
|
locale.cc \
|
|
|
|
logger.cc \
|
2017-12-12 13:33:14 -07:00
|
|
|
m/event.cc \
|
2017-11-30 11:44:23 -08:00
|
|
|
m/id.cc \
|
|
|
|
m/io.cc \
|
2017-12-12 13:33:14 -07:00
|
|
|
m/keys.cc \
|
|
|
|
m/room.cc \
|
2017-11-30 11:44:23 -08:00
|
|
|
m/vm.cc \
|
|
|
|
m/m.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
mods.cc \
|
2017-09-29 23:04:41 -07:00
|
|
|
net.cc \
|
2017-09-29 16:35:55 -07:00
|
|
|
openssl.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
parse.cc \
|
|
|
|
resource.cc \
|
|
|
|
rfc1459.cc \
|
2017-12-12 13:14:47 -07:00
|
|
|
rfc3986.cc \
|
2017-10-25 09:39:58 -07:00
|
|
|
server.cc \
|
2017-09-30 19:14:45 -07:00
|
|
|
sodium.cc \
|
2017-08-19 14:27:51 -06:00
|
|
|
###
|
2016-11-29 07:23:38 -08:00
|
|
|
|
|
|
|
if JS
|
|
|
|
libircd_la_SOURCES += \
|
2016-10-25 00:46:53 -07:00
|
|
|
js.cc \
|
2017-09-08 02:43:23 -07:00
|
|
|
xdr.cc \
|
|
|
|
###
|
2016-11-29 07:23:38 -08:00
|
|
|
endif
|
2016-07-12 22:17:21 -07:00
|
|
|
|
|
|
|
install-data-local:
|
|
|
|
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
|