2017-09-30 07:59:11 +02:00
|
|
|
################################################################################
|
2017-09-08 11:32:49 +02:00
|
|
|
#
|
2017-09-30 07:59:11 +02:00
|
|
|
# IRCd Modules
|
2017-09-08 11:32:49 +02:00
|
|
|
#
|
|
|
|
|
2017-09-30 07:59:11 +02:00
|
|
|
AM_CXXFLAGS = \
|
2018-12-30 02:41:05 +01:00
|
|
|
-ftls-model=global-dynamic \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_CXXFLAGS@ \
|
2017-09-30 07:59:11 +02:00
|
|
|
###
|
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-I$(top_srcdir)/include \
|
2018-11-29 21:39:33 +01:00
|
|
|
@ROCKSDB_CPPFLAGS@ \
|
2016-10-16 04:09:38 +02:00
|
|
|
@JS_CPPFLAGS@ \
|
2016-08-15 04:44:16 +02:00
|
|
|
@BOOST_CPPFLAGS@ \
|
2018-11-29 21:39:33 +01:00
|
|
|
@SSL_CPPFLAGS@ \
|
|
|
|
@CRYPTO_CPPFLAGS@ \
|
|
|
|
@SODIUM_CPPFLAGS@ \
|
|
|
|
@MAGIC_CPPFLAGS@ \
|
|
|
|
@SNAPPY_CPPFLAGS@ \
|
|
|
|
@LZ4_CPPFLAGS@ \
|
|
|
|
@Z_CPPFLAGS@ \
|
2018-06-16 00:13:18 +02:00
|
|
|
-include $(top_srcdir)/include/ircd/ircd.pic.h \
|
2018-04-24 10:21:05 +02:00
|
|
|
-include $(top_srcdir)/include/ircd/mods/mapi.h \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_CPPFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
###
|
2016-07-25 08:50:26 +02:00
|
|
|
|
2016-07-20 20:55:46 +02:00
|
|
|
AM_LDFLAGS = \
|
|
|
|
-avoid-version \
|
2016-11-08 01:28:12 +01:00
|
|
|
-module \
|
|
|
|
-Wl,-fuse-ld=gold \
|
|
|
|
-Wl,--shared \
|
2018-12-21 23:38:14 +01:00
|
|
|
-Wl,--warn-common \
|
|
|
|
-Wl,--warn-execstack \
|
|
|
|
-Wl,--detect-odr-violations \
|
2016-11-08 01:28:12 +01:00
|
|
|
-Wl,--export-dynamic \
|
2017-03-31 00:58:36 +02:00
|
|
|
-Wl,--no-gnu-unique \
|
2017-04-03 06:04:46 +02:00
|
|
|
-Wl,--no-allow-shlib-undefined \
|
2018-03-24 10:52:40 +01:00
|
|
|
-Wl,--gc-sections \
|
|
|
|
-Wl,--icf=all \
|
2018-05-31 22:00:58 +02:00
|
|
|
-Wl,--rosegment \
|
2018-11-29 21:39:33 +01:00
|
|
|
-L$(top_srcdir)/ircd \
|
2017-09-08 11:43:23 +02:00
|
|
|
$(PLATFORM_LDFLAGS) \
|
2018-11-29 21:39:33 +01:00
|
|
|
@EXTRA_LDFLAGS@ \
|
2017-09-08 11:43:23 +02:00
|
|
|
# -Wl,--no-undefined \
|
|
|
|
# -export-symbols-regex IRCD_MODULE* \
|
|
|
|
# -export-symbols-regex * \
|
|
|
|
###
|
2016-07-20 20:55:46 +02:00
|
|
|
|
2018-05-07 06:15:25 +02:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /
|
|
|
|
#
|
|
|
|
|
|
|
|
moduledir = @moduledir@
|
|
|
|
|
2018-06-12 08:49:13 +02:00
|
|
|
webroot_la_SOURCES = webroot.cc
|
2019-01-20 01:15:59 +01:00
|
|
|
webhook_la_SOURCES = webhook.cc
|
2018-05-07 06:15:25 +02:00
|
|
|
console_la_SOURCES = console.cc
|
|
|
|
vm_la_SOURCES = vm.cc
|
2019-03-08 21:31:08 +01:00
|
|
|
metrics_la_SOURCES = metrics.cc
|
2018-05-07 06:15:25 +02:00
|
|
|
|
|
|
|
module_LTLIBRARIES = \
|
2018-06-12 08:49:13 +02:00
|
|
|
webroot.la \
|
2019-01-20 01:15:59 +01:00
|
|
|
webhook.la \
|
2018-05-07 06:15:25 +02:00
|
|
|
console.la \
|
|
|
|
vm.la \
|
2019-03-08 21:31:08 +01:00
|
|
|
metrics.la \
|
2018-05-07 06:15:25 +02:00
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
2018-03-05 11:44:03 +01:00
|
|
|
# Server modules
|
|
|
|
#
|
|
|
|
|
|
|
|
s_moduledir = @moduledir@
|
|
|
|
|
|
|
|
s_conf_la_SOURCES = s_conf.cc
|
|
|
|
s_control_la_SOURCES = s_control.cc
|
2019-03-22 02:24:36 +01:00
|
|
|
s_dns_la_SOURCES = s_dns.cc s_dns_resolver.cc
|
2018-03-05 17:53:48 +01:00
|
|
|
s_node_la_SOURCES = s_node.cc
|
2018-08-16 08:41:12 +02:00
|
|
|
s_listen_la_SOURCES = s_listen.cc
|
2018-08-17 19:37:12 +02:00
|
|
|
s_keys_la_SOURCES = s_keys.cc
|
2018-10-23 18:13:48 +02:00
|
|
|
s_fetch_la_SOURCES = s_fetch.cc
|
2018-03-05 11:44:03 +01:00
|
|
|
|
|
|
|
s_module_LTLIBRARIES = \
|
|
|
|
s_conf.la \
|
|
|
|
s_control.la \
|
2018-10-01 04:01:06 +02:00
|
|
|
s_dns.la \
|
2018-03-05 17:53:48 +01:00
|
|
|
s_node.la \
|
2018-08-16 08:41:12 +02:00
|
|
|
s_listen.la \
|
2018-08-17 19:37:12 +02:00
|
|
|
s_keys.la \
|
2018-10-23 18:13:48 +02:00
|
|
|
s_fetch.la \
|
2018-03-05 11:44:03 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Messages / protocol
|
2018-02-14 21:23:20 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
m_moduledir = @moduledir@
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
m_noop_la_SOURCES = m_noop.cc
|
2018-09-14 14:08:08 +02:00
|
|
|
m_user_la_SOURCES = m_user.cc
|
2018-09-04 16:29:04 +02:00
|
|
|
m_event_la_SOURCES = m_event.cc
|
2019-02-20 18:39:57 +01:00
|
|
|
m_device_la_SOURCES = m_device.cc
|
2018-03-08 18:29:42 +01:00
|
|
|
m_typing_la_SOURCES = m_typing.cc
|
2018-03-15 05:05:08 +01:00
|
|
|
m_receipt_la_SOURCES = m_receipt.cc
|
2018-03-05 11:44:03 +01:00
|
|
|
m_presence_la_SOURCES = m_presence.cc
|
2019-02-18 22:40:51 +01:00
|
|
|
m_direct_to_device_la_SOURCES = m_direct_to_device.cc
|
2019-02-20 22:26:43 +01:00
|
|
|
m_device_list_update_la_SOURCES = m_device_list_update.cc
|
2019-03-15 01:07:16 +01:00
|
|
|
m_ignored_user_list_la_SOURCES = m_ignored_user_list.cc
|
2018-11-14 09:13:27 +01:00
|
|
|
m_state_la_SOURCES = m_state.cc
|
2018-10-24 23:01:21 +02:00
|
|
|
m_rooms_la_SOURCES = m_rooms.cc
|
2018-05-18 09:02:04 +02:00
|
|
|
m_room_la_SOURCES = m_room.cc
|
2018-03-29 04:26:16 +02:00
|
|
|
m_room_create_la_SOURCES = m_room_create.cc
|
2018-03-29 04:54:12 +02:00
|
|
|
m_room_member_la_SOURCES = m_room_member.cc
|
2018-05-13 05:22:22 +02:00
|
|
|
m_room_join_rules_la_SOURCES = m_room_join_rules.cc
|
2018-05-20 03:32:22 +02:00
|
|
|
m_room_history_visibility_la_SOURCES = m_room_history_visibility.cc
|
2018-06-12 07:43:19 +02:00
|
|
|
m_room_canonical_alias_la_SOURCES = m_room_canonical_alias.cc
|
2018-06-12 08:11:28 +02:00
|
|
|
m_room_aliases_la_SOURCES = m_room_aliases.cc
|
2018-10-16 20:35:22 +02:00
|
|
|
m_room_message_la_SOURCES = m_room_message.cc
|
2018-10-24 21:01:56 +02:00
|
|
|
m_room_power_levels_la_SOURCES = m_room_power_levels.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
m_module_LTLIBRARIES = \
|
|
|
|
m_noop.la \
|
2018-09-14 14:08:08 +02:00
|
|
|
m_user.la \
|
2018-09-04 16:29:04 +02:00
|
|
|
m_event.la \
|
2019-02-20 18:39:57 +01:00
|
|
|
m_device.la \
|
2018-03-08 18:29:42 +01:00
|
|
|
m_typing.la \
|
2018-03-15 05:05:08 +01:00
|
|
|
m_receipt.la \
|
2018-03-05 11:44:03 +01:00
|
|
|
m_presence.la \
|
2019-02-18 22:40:51 +01:00
|
|
|
m_direct_to_device.la \
|
2019-02-20 22:26:43 +01:00
|
|
|
m_device_list_update.la \
|
2019-03-15 01:07:16 +01:00
|
|
|
m_ignored_user_list.la \
|
2018-11-14 09:13:27 +01:00
|
|
|
m_state.la \
|
2018-10-24 23:01:21 +02:00
|
|
|
m_rooms.la \
|
2018-05-18 09:02:04 +02:00
|
|
|
m_room.la \
|
2018-03-29 04:26:16 +02:00
|
|
|
m_room_create.la \
|
2018-03-29 04:54:12 +02:00
|
|
|
m_room_member.la \
|
2018-05-13 05:22:22 +02:00
|
|
|
m_room_join_rules.la \
|
2018-05-20 03:32:22 +02:00
|
|
|
m_room_history_visibility.la \
|
2018-06-12 07:43:19 +02:00
|
|
|
m_room_canonical_alias.la \
|
2018-06-12 08:11:28 +02:00
|
|
|
m_room_aliases.la \
|
2018-10-16 20:35:22 +02:00
|
|
|
m_room_message.la \
|
2018-10-24 21:01:56 +02:00
|
|
|
m_room_power_levels.la \
|
2018-02-14 21:23:20 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/client/
|
|
|
|
#
|
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
# This puts the source in client/ but the installed
|
|
|
|
# library is client_X.so in the main modules dir.
|
|
|
|
client_moduledir = @moduledir@
|
2018-02-14 21:23:20 +01:00
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
client_client_versions_la_SOURCES = client/versions.cc
|
|
|
|
client_client_events_la_SOURCES = client/events.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
|
2018-02-12 23:45:48 +01:00
|
|
|
client_client_presence_la_SOURCES = client/presence.cc
|
|
|
|
client_client_profile_la_SOURCES = client/profile.cc
|
2018-02-15 06:56:47 +01:00
|
|
|
client_client_devices_la_SOURCES = client/devices.cc
|
2018-02-12 23:45:48 +01:00
|
|
|
client_client_pushers_la_SOURCES = client/pushers.cc
|
2017-08-23 23:39:41 +02:00
|
|
|
client_client_publicrooms_la_SOURCES = client/publicrooms.cc
|
|
|
|
client_client_createroom_la_SOURCES = client/createroom.cc
|
|
|
|
client_client_pushrules_la_SOURCES = client/pushrules.cc
|
2017-11-16 02:48:25 +01:00
|
|
|
client_client_join_la_SOURCES = client/join.cc
|
2018-02-24 07:13:17 +01:00
|
|
|
client_client_publicised_groups_la_SOURCES = client/publicised_groups.cc
|
2018-04-10 22:15:19 +02:00
|
|
|
client_client_initialsync_la_SOURCES = client/initialsync.cc
|
2018-05-29 13:01:36 +02:00
|
|
|
client_client_search_la_SOURCES = client/search.cc
|
2018-06-18 05:34:03 +02:00
|
|
|
client_client_joined_groups_la_SOURCES = client/joined_groups.cc
|
2019-01-12 20:51:57 +01:00
|
|
|
client_client_register_available_la_SOURCES = client/register_available.cc
|
2019-02-12 20:32:13 +01:00
|
|
|
client_client_capabilities_la_SOURCES = client/capabilities.cc
|
2019-02-18 22:39:59 +01:00
|
|
|
client_client_send_to_device_la_SOURCES = client/send_to_device.cc
|
2019-02-20 18:45:23 +01:00
|
|
|
client_client_delete_devices_la_SOURCES = client/delete_devices.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
|
|
|
client_module_LTLIBRARIES = \
|
2017-08-23 23:39:41 +02:00
|
|
|
client/client_versions.la \
|
|
|
|
client/client_events.la \
|
|
|
|
client/client_register.la \
|
|
|
|
client/client_login.la \
|
|
|
|
client/client_logout.la \
|
|
|
|
client/client_sync.la \
|
2018-02-12 23:45:48 +01:00
|
|
|
client/client_presence.la \
|
|
|
|
client/client_profile.la \
|
2018-02-15 06:56:47 +01:00
|
|
|
client/client_devices.la \
|
2018-02-12 23:45:48 +01:00
|
|
|
client/client_pushers.la \
|
2017-08-23 23:39:41 +02:00
|
|
|
client/client_publicrooms.la \
|
|
|
|
client/client_createroom.la \
|
|
|
|
client/client_pushrules.la \
|
2017-11-16 02:48:25 +01:00
|
|
|
client/client_join.la \
|
2018-02-24 07:13:17 +01:00
|
|
|
client/client_publicised_groups.la \
|
2018-04-10 22:15:19 +02:00
|
|
|
client/client_initialsync.la \
|
2018-05-29 13:01:36 +02:00
|
|
|
client/client_search.la \
|
2018-06-18 05:34:03 +02:00
|
|
|
client/client_joined_groups.la \
|
2019-01-12 20:51:57 +01:00
|
|
|
client/client_register_available.la \
|
2019-02-12 20:32:13 +01:00
|
|
|
client/client_capabilities.la \
|
2019-02-18 22:39:59 +01:00
|
|
|
client/client_send_to_device.la \
|
2019-02-20 18:45:23 +01:00
|
|
|
client/client_delete_devices.la \
|
2017-08-23 23:39:41 +02:00
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
#
|
|
|
|
# client/rooms/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_rooms_la_SOURCES = \
|
|
|
|
client/rooms/messages.cc \
|
|
|
|
client/rooms/state.cc \
|
|
|
|
client/rooms/members.cc \
|
|
|
|
client/rooms/context.cc \
|
2019-02-17 02:29:58 +01:00
|
|
|
client/rooms/event.cc \
|
2018-02-14 21:23:20 +01:00
|
|
|
client/rooms/send.cc \
|
|
|
|
client/rooms/typing.cc \
|
2018-02-16 01:07:02 +01:00
|
|
|
client/rooms/redact.cc \
|
2018-02-14 21:23:20 +01:00
|
|
|
client/rooms/receipt.cc \
|
|
|
|
client/rooms/join.cc \
|
2018-02-22 00:22:04 +01:00
|
|
|
client/rooms/invite.cc \
|
|
|
|
client/rooms/leave.cc \
|
|
|
|
client/rooms/forget.cc \
|
|
|
|
client/rooms/kick.cc \
|
|
|
|
client/rooms/ban.cc \
|
|
|
|
client/rooms/unban.cc \
|
2018-02-14 21:23:20 +01:00
|
|
|
client/rooms/read_markers.cc \
|
2018-02-25 13:07:48 +01:00
|
|
|
client/rooms/initialsync.cc \
|
2019-03-15 00:01:41 +01:00
|
|
|
client/rooms/report.cc \
|
2018-02-14 21:23:20 +01:00
|
|
|
client/rooms/rooms.cc \
|
|
|
|
###
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_rooms.la \
|
|
|
|
###
|
2018-02-14 21:23:20 +01:00
|
|
|
|
2018-02-14 21:42:25 +01:00
|
|
|
#
|
|
|
|
# client/user/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_user_la_SOURCES = \
|
2018-02-20 23:45:22 +01:00
|
|
|
client/user/openid.cc \
|
2018-02-14 21:42:25 +01:00
|
|
|
client/user/filter.cc \
|
|
|
|
client/user/account_data.cc \
|
2018-02-22 01:53:07 +01:00
|
|
|
client/user/rooms.cc \
|
2018-02-14 21:42:25 +01:00
|
|
|
client/user/user.cc \
|
|
|
|
###
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_user.la \
|
|
|
|
###
|
2018-02-14 21:42:25 +01:00
|
|
|
|
2018-02-14 21:54:21 +01:00
|
|
|
#
|
|
|
|
# client/account/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_account_la_SOURCES = \
|
2018-02-14 23:29:26 +01:00
|
|
|
client/account/3pid.cc \
|
2018-02-14 21:59:42 +01:00
|
|
|
client/account/whoami.cc \
|
2018-02-14 21:54:21 +01:00
|
|
|
client/account/password.cc \
|
|
|
|
client/account/deactivate.cc \
|
|
|
|
client/account/account.cc \
|
|
|
|
###
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_account.la \
|
|
|
|
###
|
2018-02-14 21:54:21 +01:00
|
|
|
|
2018-02-22 00:34:35 +01:00
|
|
|
#
|
2019-01-06 03:36:37 +01:00
|
|
|
# client/directory/
|
2018-02-22 00:34:35 +01:00
|
|
|
#
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
client_client_directory_room_la_SOURCES = client/directory/room.cc
|
|
|
|
client_client_directory_user_la_SOURCES = client/directory/user.cc
|
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_directory_room.la \
|
|
|
|
client/client_directory_user.la \
|
|
|
|
###
|
|
|
|
|
2019-03-14 21:25:28 +01:00
|
|
|
#
|
|
|
|
# client/directory/list
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_directory_list_room_la_SOURCES = client/directory/list/room.cc
|
2019-03-15 21:44:09 +01:00
|
|
|
client_client_directory_list_appservice_la_SOURCES = client/directory/list/appservice.cc
|
2019-03-14 21:25:28 +01:00
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_directory_list_room.la \
|
2019-03-15 21:44:09 +01:00
|
|
|
client/client_directory_list_appservice.la \
|
2019-03-14 21:25:28 +01:00
|
|
|
###
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
#
|
|
|
|
# client/voip/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_voip_turnserver_la_SOURCES = client/voip/turnserver.cc
|
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_voip_turnserver.la \
|
2018-02-22 00:34:35 +01:00
|
|
|
###
|
|
|
|
|
2019-01-06 03:36:37 +01:00
|
|
|
#
|
|
|
|
# client/thirdparty/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_thirdparty_protocols_la_SOURCES = client/thirdparty/protocols.cc
|
|
|
|
|
2018-02-22 00:34:35 +01:00
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_thirdparty_protocols.la \
|
|
|
|
###
|
|
|
|
|
2019-01-04 02:21:02 +01:00
|
|
|
#
|
|
|
|
# client/sync/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_sync_account_data_la_SOURCES = client/sync/account_data.cc
|
|
|
|
client_client_sync_presence_la_SOURCES = client/sync/presence.cc
|
2019-01-04 23:47:01 +01:00
|
|
|
client_client_sync_rooms_la_SOURCES = client/sync/rooms.cc
|
2019-02-08 17:40:13 +01:00
|
|
|
client_client_sync_to_device_la_SOURCES = client/sync/to_device.cc
|
|
|
|
client_client_sync_device_lists_la_SOURCES = client/sync/device_lists.cc
|
|
|
|
client_client_sync_device_one_time_keys_count_la_SOURCES = client/sync/device_one_time_keys_count.cc
|
2019-01-11 22:58:23 +01:00
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_sync_account_data.la \
|
|
|
|
client/client_sync_presence.la \
|
|
|
|
client/client_sync_rooms.la \
|
2019-02-08 17:40:13 +01:00
|
|
|
client/client_sync_to_device.la \
|
|
|
|
client/client_sync_device_lists.la \
|
|
|
|
client/client_sync_device_one_time_keys_count.la \
|
2019-01-11 22:58:23 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
# client/sync/rooms/
|
|
|
|
|
2019-01-04 02:21:02 +01:00
|
|
|
client_client_sync_rooms_account_data_la_SOURCES = client/sync/rooms/account_data.cc
|
2019-01-11 01:55:59 +01:00
|
|
|
client_client_sync_rooms_ephemeral_la_SOURCES = client/sync/rooms/ephemeral.cc
|
2019-01-04 02:21:02 +01:00
|
|
|
client_client_sync_rooms_state_la_SOURCES = client/sync/rooms/state.cc
|
|
|
|
client_client_sync_rooms_timeline_la_SOURCES = client/sync/rooms/timeline.cc
|
|
|
|
client_client_sync_rooms_unread_notifications_la_SOURCES = client/sync/rooms/unread_notifications.cc
|
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_sync_rooms_account_data.la \
|
2019-01-11 01:55:59 +01:00
|
|
|
client/client_sync_rooms_ephemeral.la \
|
2019-01-04 02:21:02 +01:00
|
|
|
client/client_sync_rooms_state.la \
|
|
|
|
client/client_sync_rooms_timeline.la \
|
|
|
|
client/client_sync_rooms_unread_notifications.la \
|
|
|
|
###
|
|
|
|
|
2019-01-11 22:58:23 +01:00
|
|
|
# client/sync/rooms/ephemeral/
|
|
|
|
|
|
|
|
client_client_sync_rooms_ephemeral_receipt_la_SOURCES = client/sync/rooms/ephemeral/receipt.cc
|
2019-02-28 03:18:17 +01:00
|
|
|
client_client_sync_rooms_ephemeral_typing_la_SOURCES = client/sync/rooms/ephemeral/typing.cc
|
2019-01-11 22:58:23 +01:00
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_sync_rooms_ephemeral_receipt.la \
|
2019-02-28 03:18:17 +01:00
|
|
|
client/client_sync_rooms_ephemeral_typing.la \
|
2019-01-11 22:58:23 +01:00
|
|
|
###
|
|
|
|
|
2019-02-21 03:34:22 +01:00
|
|
|
#
|
|
|
|
# client/keys/
|
|
|
|
#
|
|
|
|
|
|
|
|
client_client_keys_upload_la_SOURCES = client/keys/upload.cc
|
|
|
|
client_client_keys_query_la_SOURCES = client/keys/query.cc
|
|
|
|
client_client_keys_claim_la_SOURCES = client/keys/claim.cc
|
|
|
|
client_client_keys_changes_la_SOURCES = client/keys/changes.cc
|
|
|
|
|
|
|
|
client_module_LTLIBRARIES += \
|
|
|
|
client/client_keys_upload.la \
|
|
|
|
client/client_keys_query.la \
|
|
|
|
client/client_keys_claim.la \
|
|
|
|
client/client_keys_changes.la \
|
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/key/
|
|
|
|
#
|
|
|
|
|
2017-10-03 13:12:54 +02:00
|
|
|
key_moduledir = @moduledir@
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-10-03 13:12:54 +02:00
|
|
|
key_key_server_la_SOURCES = key/server.cc
|
|
|
|
key_key_query_la_SOURCES = key/query.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-10-03 13:12:54 +02:00
|
|
|
key_module_LTLIBRARIES = \
|
|
|
|
key/key_server.la \
|
|
|
|
key/key_query.la \
|
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/federation/
|
|
|
|
#
|
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
federation_moduledir = @moduledir@
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
federation_federation_send_la_SOURCES = federation/send.cc
|
|
|
|
federation_federation_event_la_SOURCES = federation/event.cc
|
2018-01-24 00:54:26 +01:00
|
|
|
federation_federation_get_missing_events_la_SOURCES = federation/get_missing_events.cc
|
2018-03-28 09:14:05 +02:00
|
|
|
federation_federation_get_groups_publicised_la_SOURCES = federation/get_groups_publicised.cc
|
2018-02-19 23:20:20 +01:00
|
|
|
federation_federation_version_la_SOURCES = federation/version.cc
|
2018-03-14 21:36:13 +01:00
|
|
|
federation_federation_sender_la_SOURCES = federation/sender.cc
|
2018-04-03 07:14:27 +02:00
|
|
|
federation_federation_query_la_SOURCES = federation/query.cc
|
2018-04-03 07:36:49 +02:00
|
|
|
federation_federation_invite_la_SOURCES = federation/invite.cc
|
2018-04-03 23:50:47 +02:00
|
|
|
federation_federation_make_join_la_SOURCES = federation/make_join.cc
|
2018-04-04 01:53:30 +02:00
|
|
|
federation_federation_send_join_la_SOURCES = federation/send_join.cc
|
2018-04-04 02:05:56 +02:00
|
|
|
federation_federation_state_ids_la_SOURCES = federation/state_ids.cc
|
2018-04-04 02:08:29 +02:00
|
|
|
federation_federation_state_la_SOURCES = federation/state.cc
|
2018-04-03 23:42:31 +02:00
|
|
|
federation_federation_make_leave_la_SOURCES = federation/make_leave.cc
|
2018-04-04 02:16:15 +02:00
|
|
|
federation_federation_send_leave_la_SOURCES = federation/send_leave.cc
|
2018-04-05 03:12:51 +02:00
|
|
|
federation_federation_backfill_la_SOURCES = federation/backfill.cc
|
2018-04-05 07:41:39 +02:00
|
|
|
federation_federation_backfill_ids_la_SOURCES = federation/backfill_ids.cc
|
2018-06-03 04:26:37 +02:00
|
|
|
federation_federation_event_auth_la_SOURCES = federation/event_auth.cc
|
2019-02-08 06:50:00 +01:00
|
|
|
federation_federation_query_auth_la_SOURCES = federation/query_auth.cc
|
2018-10-25 02:24:43 +02:00
|
|
|
federation_federation_publicrooms_la_SOURCES = federation/publicrooms.cc
|
2019-02-08 07:29:14 +01:00
|
|
|
federation_federation_user_devices_la_SOURCES = federation/user_devices.cc
|
2019-02-21 21:52:07 +01:00
|
|
|
federation_federation_user_keys_query_la_SOURCES = federation/user_keys_query.cc
|
|
|
|
federation_federation_user_keys_claim_la_SOURCES = federation/user_keys_claim.cc
|
2018-04-28 03:02:42 +02:00
|
|
|
federation_federation_federation_la_SOURCES = federation/federation.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
federation_module_LTLIBRARIES = \
|
|
|
|
federation/federation_send.la \
|
|
|
|
federation/federation_event.la \
|
2018-01-24 00:54:26 +01:00
|
|
|
federation/federation_get_missing_events.la \
|
2018-03-28 09:14:05 +02:00
|
|
|
federation/federation_get_groups_publicised.la \
|
2018-02-19 23:20:20 +01:00
|
|
|
federation/federation_version.la \
|
2018-03-14 21:36:13 +01:00
|
|
|
federation/federation_sender.la \
|
2018-04-03 07:14:27 +02:00
|
|
|
federation/federation_query.la \
|
2018-04-03 07:36:49 +02:00
|
|
|
federation/federation_invite.la \
|
2018-04-03 23:50:47 +02:00
|
|
|
federation/federation_make_join.la \
|
2018-04-04 01:53:30 +02:00
|
|
|
federation/federation_send_join.la \
|
2018-04-04 02:05:56 +02:00
|
|
|
federation/federation_state_ids.la \
|
2018-04-04 02:08:29 +02:00
|
|
|
federation/federation_state.la \
|
2018-04-03 23:42:31 +02:00
|
|
|
federation/federation_make_leave.la \
|
2018-04-04 02:16:15 +02:00
|
|
|
federation/federation_send_leave.la \
|
2018-04-05 03:12:51 +02:00
|
|
|
federation/federation_backfill.la \
|
2018-04-05 07:41:39 +02:00
|
|
|
federation/federation_backfill_ids.la \
|
2018-06-03 04:26:37 +02:00
|
|
|
federation/federation_event_auth.la \
|
2019-02-08 06:50:00 +01:00
|
|
|
federation/federation_query_auth.la \
|
2018-10-25 02:24:43 +02:00
|
|
|
federation/federation_publicrooms.la \
|
2019-02-09 02:55:35 +01:00
|
|
|
federation/federation_user_devices.la \
|
2019-02-21 21:52:07 +01:00
|
|
|
federation/federation_user_keys_query.la \
|
|
|
|
federation/federation_user_keys_claim.la \
|
2018-04-28 03:02:42 +02:00
|
|
|
federation/federation_federation.la \
|
2017-10-25 18:42:23 +02:00
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/media/
|
|
|
|
#
|
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
media_moduledir = @moduledir@
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-04-12 23:44:30 +02:00
|
|
|
media_media_media_la_SOURCES = \
|
|
|
|
media/download.cc \
|
|
|
|
media/upload.cc \
|
|
|
|
media/thumbnail.cc \
|
2018-04-23 09:47:03 +02:00
|
|
|
media/preview_url.cc \
|
2018-04-12 23:44:30 +02:00
|
|
|
media/media.cc \
|
|
|
|
###
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
media_module_LTLIBRARIES = \
|
2018-04-12 23:44:30 +02:00
|
|
|
media/media_media.la \
|
2017-10-25 18:42:23 +02:00
|
|
|
###
|
|
|
|
|
2018-12-03 01:50:26 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/app/
|
|
|
|
#
|
|
|
|
|
|
|
|
app_moduledir = @moduledir@
|
|
|
|
|
2019-03-15 21:20:05 +01:00
|
|
|
app_app_app_la_SOURCES = \
|
|
|
|
app/app.cc \
|
|
|
|
app/transactions.cc \
|
2018-12-03 01:50:26 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
app_module_LTLIBRARIES = \
|
2019-03-15 21:20:05 +01:00
|
|
|
app/app_app.la \
|
2018-12-03 01:50:26 +01:00
|
|
|
###
|
|
|
|
|
2019-02-18 19:28:09 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /_matrix/identity/
|
|
|
|
#
|
|
|
|
|
|
|
|
identity_moduledir = @moduledir@
|
|
|
|
|
|
|
|
identity_identity_v1_la_SOURCES = identity/v1.cc
|
|
|
|
identity_identity_pubkey_la_SOURCES = identity/pubkey.cc
|
|
|
|
|
|
|
|
identity_module_LTLIBRARIES = \
|
|
|
|
identity/identity_v1.la \
|
|
|
|
identity/identity_pubkey.la \
|
|
|
|
###
|
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# JavaScript
|
|
|
|
#
|
2017-11-16 02:48:25 +01:00
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
if JS
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-03-05 11:49:11 +01:00
|
|
|
js_moduledir = @moduledir@
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-03-05 11:49:11 +01:00
|
|
|
js_js_console_la_SOURCES = js/console.cc
|
|
|
|
js_js_listener_la_SOURCES = js/listener.cc
|
|
|
|
js_js_kernel_la_SOURCES = js/kernel.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-03-05 11:49:11 +01:00
|
|
|
js_module_LTLIBRARIES = \
|
|
|
|
js/js_console.la \
|
|
|
|
js/js_listener.la \
|
|
|
|
js/js_kernel.la \
|
2017-08-23 23:39:41 +02:00
|
|
|
###
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2017-08-23 23:39:41 +02:00
|
|
|
endif
|