0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-06 10:38:37 +02:00
construct/ircd/Makefile.am
2017-04-04 16:10:29 -07:00

61 lines
1.2 KiB
Makefile

AUTOMAKE_OPTIONS = foreign
libircddir = @libdir@
AM_CPPFLAGS = \
-ffriend-injection \
-I$(top_srcdir)/include \
@ROCKSDB_CPPFLAGS@ \
@JS_CPPFLAGS@ \
@BOOST_CPPFLAGS@ \
-include ircd/ircd.h
if MINGW
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
endif
AM_LDFLAGS = \
-avoid-version \
-Wl,-fuse-ld=gold \
-Wl,--no-allow-shlib-undefined \
-Wl,--export-dynamic \
-Wl,--no-gnu-unique \
-Wl,--no-allow-shlib-undefined \
$(PLATFORM_LDFLAGS)
# -Wl,--no-undefined
libircd_LTLIBRARIES = libircd.la
libircd_la_SOURCES = \
ircd.cc \
info.cc \
exception.cc \
rfc1459.cc \
lexical.cc \
logger.cc \
fs.cc \
mods.cc \
resource.cc \
ctx.cc \
socket.cc \
client.cc \
vm.cc \
fmt.cc \
db.cc \
locale.cc \
http.cc \
json.cc \
parse.cc \
conf.cc \
listen.cc \
matrix.cc
if JS
libircd_la_SOURCES += \
js.cc \
xdr.cc
endif
install-data-local:
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@