0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-20 19:41:55 +01:00
construct/modules/Makefile.am

96 lines
2.4 KiB
Text
Raw Normal View History

#
#AM_CXXFLAGS = \
# -fno-implicit-templates
#
2016-07-20 11:55:46 -07:00
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
2016-10-15 19:09:38 -07:00
@JS_CPPFLAGS@ \
@BOOST_CPPFLAGS@ \
-include $(top_srcdir)/include/ircd/ircd.h \
-include $(top_srcdir)/include/ircd/mapi.h \
2017-09-08 02:43:23 -07:00
-include $(top_srcdir)/include/ircd/m.h \
###
2016-07-20 11:55:46 -07:00
AM_LDFLAGS = \
-L$(top_srcdir)/ircd \
2016-11-07 16:28:12 -08:00
@JS_LDFLAGS@ \
2017-09-08 02:43:23 -07:00
@BOOST_LDFLAGS@ \
###
2016-07-20 11:55:46 -07:00
AM_LDFLAGS += \
-avoid-version \
2016-11-07 16:28:12 -08:00
-module \
-Wl,-fuse-ld=gold \
-Wl,--shared \
-Wl,--export-dynamic \
-Wl,--no-gnu-unique \
2017-04-02 21:04:46 -07:00
-Wl,--no-allow-shlib-undefined \
2017-09-08 02:43:23 -07:00
$(PLATFORM_LDFLAGS) \
# -Wl,--no-undefined \
# -export-symbols-regex IRCD_MODULE* \
# -export-symbols-regex * \
###
2016-07-20 11:55:46 -07:00
moduledir=@moduledir@
root_la_SOURCES = root.cc
module_LTLIBRARIES = \
2017-08-23 15:39:41 -06:00
root.la \
###
# This puts the source in db/ but the installed
# library is client_X.so in the main modules dir.
db_moduledir = @moduledir@
db_db_events_la_SOURCES = db/events.cc
db_module_LTLIBRARIES = \
db/db_events.la \
###
2017-08-23 15:39:41 -06:00
# This puts the source in client/ but the installed
# library is client_X.so in the main modules dir.
client_moduledir = @moduledir@
client_client_versions_la_SOURCES = client/versions.cc
client_client_events_la_SOURCES = client/events.cc
client_client_account_la_SOURCES = client/account.cc
client_client_register_la_SOURCES = client/register.cc
client_client_login_la_SOURCES = client/login.cc
client_client_logout_la_SOURCES = client/logout.cc
client_client_sync_la_SOURCES = client/sync.cc
client_client_rooms_la_SOURCES = client/rooms.cc
client_client_publicrooms_la_SOURCES = client/publicrooms.cc
client_client_createroom_la_SOURCES = client/createroom.cc
client_client_pushrules_la_SOURCES = client/pushrules.cc
client_client_user_la_SOURCES = client/user.cc
client_client_voip_turnserver_la_SOURCES = client/voip/turnserver.cc
client_module_LTLIBRARIES = \
client/client_versions.la \
client/client_events.la \
client/client_account.la \
client/client_register.la \
client/client_login.la \
client/client_logout.la \
client/client_sync.la \
client/client_rooms.la \
client/client_publicrooms.la \
client/client_createroom.la \
client/client_pushrules.la \
client/client_user.la \
client/client_voip_turnserver.la \
###
if JS
server_moduledir = @moduledir@
server_server_console_la_SOURCES = server/console.cc
server_server_listener_la_SOURCES = server/listener.cc
server_module_LTLIBRARIES = \
server/server_console.la \
server/server_listener.la \
###
endif
if JS
module_LTLIBRARIES += \
kernel.la \
###
endif