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
|
|
|
#
|
|
|
|
|
2019-05-28 02:05:07 +02:00
|
|
|
DEFS += \
|
|
|
|
-DIRCD_UNIT \
|
2019-05-31 03:55:00 +02:00
|
|
|
-DIRCD_UNIT_MODULE \
|
2019-05-28 02:05:07 +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-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 = \
|
2016-11-08 01:28:12 +01:00
|
|
|
-module \
|
2019-05-15 02:57:36 +02:00
|
|
|
-avoid-version \
|
2018-12-21 23:38:14 +01:00
|
|
|
-Wl,--warn-common \
|
|
|
|
-Wl,--warn-execstack \
|
|
|
|
-Wl,--detect-odr-violations \
|
2019-05-15 02:57:36 +02:00
|
|
|
-Wl,--allow-shlib-undefined \
|
2018-03-24 10:52:40 +01:00
|
|
|
-Wl,--icf=all \
|
2019-05-17 09:44:00 +02:00
|
|
|
-Wl,--gdb-index \
|
2019-06-06 03:22:28 +02:00
|
|
|
-Wl,-z,lazy \
|
|
|
|
-Wl,-z,noexecstack \
|
|
|
|
-Wl,-z,combreloc \
|
|
|
|
-Wl,-z,text-unlikely-segment \
|
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
|
|
|
###
|
2016-07-20 20:55:46 +02:00
|
|
|
|
2019-06-24 09:05:52 +02:00
|
|
|
if GCC
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-Wl,-fuse-ld=gold \
|
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
|
|
|
if CLANG
|
|
|
|
AM_LDFLAGS += \
|
|
|
|
-fuse-ld=gold \
|
|
|
|
###
|
|
|
|
endif
|
|
|
|
|
2018-05-07 06:15:25 +02:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# /
|
|
|
|
#
|
|
|
|
|
|
|
|
moduledir = @moduledir@
|
|
|
|
|
2019-06-27 08:05:18 +02:00
|
|
|
conf_la_SOURCES = conf.cc
|
|
|
|
stats_la_SOURCES = stats.cc
|
|
|
|
net_dns_la_SOURCES = net_dns.cc net_dns_resolver.cc
|
2019-06-27 08:32:58 +02:00
|
|
|
net_dns_la_CPPFLAGS = $(AM_CPPFLAGS) @BOOST_CPPFLAGS@
|
|
|
|
net_dns_la_LDFLAGS = $(AM_LDFLAGS) @BOOST_LDFLAGS@
|
|
|
|
net_dns_la_LIBADD = $(AM_LIBS) @BOOST_LIBS@
|
2018-05-07 06:15:25 +02:00
|
|
|
console_la_SOURCES = console.cc
|
2019-08-03 23:56:28 +02:00
|
|
|
web_root_la_SOURCES = web_root.cc
|
|
|
|
web_hook_la_SOURCES = web_hook.cc
|
2019-03-28 21:09:34 +01:00
|
|
|
well_known_la_SOURCES = well_known.cc
|
2018-05-07 06:15:25 +02:00
|
|
|
|
|
|
|
module_LTLIBRARIES = \
|
2019-06-27 08:05:18 +02:00
|
|
|
conf.la \
|
|
|
|
stats.la \
|
|
|
|
net_dns.la \
|
2018-05-07 06:15:25 +02:00
|
|
|
console.la \
|
2019-08-03 23:56:28 +02:00
|
|
|
web_root.la \
|
|
|
|
web_hook.la \
|
2019-03-28 21:09:34 +01:00
|
|
|
well_known.la \
|
2018-05-07 06:15:25 +02:00
|
|
|
###
|
|
|
|
|
2019-07-26 06:02:48 +02:00
|
|
|
#
|
|
|
|
# {Image|Graphics}Magick Support
|
|
|
|
#
|
|
|
|
if IMAGEMAGICK
|
|
|
|
|
|
|
|
magick_la_SOURCES = magick.cc
|
|
|
|
magick_la_CPPFLAGS = $(AM_CPPFLAGS) @IMAGEMAGICK_CPPFLAGS@
|
|
|
|
magick_la_LDFLAGS = $(AM_LDFLAGS) @IMAGEMAGICK_LDFLAGS@
|
|
|
|
magick_la_LIBADD = $(AM_LIBS) @IMAGEMAGICK_LIBS@
|
|
|
|
module_LTLIBRARIES += magick.la
|
|
|
|
|
|
|
|
endif IMAGEMAGICK
|
|
|
|
|
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
|
2019-08-18 08:02:07 +02:00
|
|
|
m_event_la_SOURCES = m_event.cc
|
2019-08-03 01:56:18 +02:00
|
|
|
m_event_append_la_SOURCES = m_event_append.cc
|
2018-09-14 14:08:08 +02:00
|
|
|
m_user_la_SOURCES = m_user.cc
|
2019-07-17 23:20:28 +02:00
|
|
|
m_user_events_la_SOURCES = m_user_events.cc
|
|
|
|
m_user_rooms_la_SOURCES = m_user_rooms.cc
|
2019-08-16 16:03:16 +02:00
|
|
|
m_user_filter_la_SOURCES = m_user_filter.cc
|
2019-08-16 07:54:30 +02:00
|
|
|
m_user_mitsein_la_SOURCES = m_user_mitsein.cc
|
2019-08-17 11:21:53 +02:00
|
|
|
m_user_servers_la_SOURCES = m_user_servers.cc
|
2019-07-15 19:07:36 +02:00
|
|
|
m_user_highlight_la_SOURCES = m_user_highlight.cc
|
2019-07-15 01:26:23 +02:00
|
|
|
m_user_profile_la_SOURCES = m_user_profile.cc
|
2019-08-26 03:56:11 +02:00
|
|
|
m_user_account_data_la_SOURCES = m_user_account_data.cc
|
|
|
|
m_user_room_account_data_la_SOURCES = m_user_room_account_data.cc
|
|
|
|
m_user_room_tags_la_SOURCES = m_user_room_tags.cc
|
2019-06-27 08:05:18 +02:00
|
|
|
m_node_la_SOURCES = m_node.cc
|
|
|
|
m_keys_la_SOURCES = m_keys.cc
|
|
|
|
m_feds_la_SOURCES = m_feds.cc
|
|
|
|
m_fetch_la_SOURCES = m_fetch.cc
|
|
|
|
m_command_la_SOURCES = m_command.cc
|
|
|
|
m_control_la_SOURCES = m_control.cc
|
2019-02-20 18:39:57 +01:00
|
|
|
m_device_la_SOURCES = m_device.cc
|
2019-04-22 23:27:37 +02:00
|
|
|
m_direct_la_SOURCES = m_direct.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
|
2019-07-11 21:48:42 +02:00
|
|
|
m_breadcrumb_rooms_la_SOURCES = m_breadcrumb_rooms.cc
|
2019-06-01 02:42:49 +02:00
|
|
|
m_events_la_SOURCES = m_events.cc
|
2018-10-24 23:01:21 +02:00
|
|
|
m_rooms_la_SOURCES = m_rooms.cc
|
2019-08-13 07:59:27 +02:00
|
|
|
m_rooms_summary_la_SOURCES = m_rooms_summary.cc
|
2019-08-18 08:02:07 +02:00
|
|
|
m_room_la_SOURCES = m_room.cc
|
2019-08-30 23:50:11 +02:00
|
|
|
m_room_events_la_SOURCES = m_room_events.cc
|
2019-08-18 08:19:05 +02:00
|
|
|
m_room_auth_la_SOURCES = m_room_auth.cc
|
2019-08-18 09:02:59 +02:00
|
|
|
m_room_head_la_SOURCES = m_room_head.cc
|
2019-07-22 23:29:00 +02:00
|
|
|
m_room_timeline_la_SOURCES = m_room_timeline.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
|
2019-08-26 03:17:00 +02:00
|
|
|
m_room_join_la_SOURCES = m_room_join.cc
|
2019-08-26 03:39:01 +02:00
|
|
|
m_room_leave_la_SOURCES = m_room_leave.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
|
2019-05-26 02:29:30 +02:00
|
|
|
m_room_server_acl_la_SOURCES = m_room_server_acl.cc
|
2019-07-26 02:08:27 +02:00
|
|
|
m_room_third_party_invite_la_SOURCES = m_room_third_party_invite.cc
|
|
|
|
m_room_redaction_la_SOURCES = m_room_redaction.cc
|
2019-07-24 00:37:32 +02:00
|
|
|
m_room_bootstrap_la_SOURCES = m_room_bootstrap.cc
|
2019-08-25 23:26:01 +02:00
|
|
|
m_room_name_la_SOURCES = m_room_name.cc
|
2019-07-15 00:42:36 +02:00
|
|
|
m_init_bootstrap_la_SOURCES = m_init_bootstrap.cc
|
2019-08-14 07:59:27 +02:00
|
|
|
m_init_backfill_la_SOURCES = m_init_backfill.cc
|
2019-07-18 20:27:08 +02:00
|
|
|
m_listen_la_SOURCES = m_listen.cc
|
2019-08-12 04:23:38 +02:00
|
|
|
m_users_la_SOURCES = m_users.cc
|
2019-08-27 00:12:43 +02:00
|
|
|
m_vm_la_SOURCES = m_vm.cc
|
|
|
|
m_vm_fetch_la_SOURCES = m_vm_fetch.cc
|
2018-02-19 21:43:13 +01:00
|
|
|
|
2018-02-14 21:23:20 +01:00
|
|
|
m_module_LTLIBRARIES = \
|
|
|
|
m_noop.la \
|
2019-08-18 08:02:07 +02:00
|
|
|
m_event.la \
|
2019-08-03 01:56:18 +02:00
|
|
|
m_event_append.la \
|
2018-09-14 14:08:08 +02:00
|
|
|
m_user.la \
|
2019-07-17 23:20:28 +02:00
|
|
|
m_user_events.la \
|
|
|
|
m_user_rooms.la \
|
2019-08-16 16:03:16 +02:00
|
|
|
m_user_filter.la \
|
2019-08-16 07:54:30 +02:00
|
|
|
m_user_mitsein.la \
|
2019-08-17 11:21:53 +02:00
|
|
|
m_user_servers.la \
|
2019-07-15 19:07:36 +02:00
|
|
|
m_user_highlight.la \
|
2019-07-15 01:26:23 +02:00
|
|
|
m_user_profile.la \
|
2019-08-26 03:56:11 +02:00
|
|
|
m_user_account_data.la \
|
|
|
|
m_user_room_account_data.la \
|
|
|
|
m_user_room_tags.la \
|
2019-06-27 08:05:18 +02:00
|
|
|
m_node.la \
|
|
|
|
m_keys.la \
|
|
|
|
m_feds.la \
|
|
|
|
m_fetch.la \
|
|
|
|
m_command.la \
|
|
|
|
m_control.la \
|
2019-02-20 18:39:57 +01:00
|
|
|
m_device.la \
|
2019-04-22 23:27:37 +02:00
|
|
|
m_direct.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 \
|
2019-07-11 21:48:42 +02:00
|
|
|
m_breadcrumb_rooms.la \
|
2019-06-01 02:42:49 +02:00
|
|
|
m_events.la \
|
2018-10-24 23:01:21 +02:00
|
|
|
m_rooms.la \
|
2019-08-13 07:59:27 +02:00
|
|
|
m_rooms_summary.la \
|
2019-08-18 08:02:07 +02:00
|
|
|
m_room.la \
|
2019-08-30 23:50:11 +02:00
|
|
|
m_room_events.la \
|
2019-08-18 08:19:05 +02:00
|
|
|
m_room_auth.la \
|
2019-08-18 09:02:59 +02:00
|
|
|
m_room_head.la \
|
2019-07-22 23:29:00 +02:00
|
|
|
m_room_timeline.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 \
|
2019-08-26 03:17:00 +02:00
|
|
|
m_room_join.la \
|
2019-08-26 03:39:01 +02:00
|
|
|
m_room_leave.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 \
|
2019-07-26 02:08:27 +02:00
|
|
|
m_room_third_party_invite.la \
|
|
|
|
m_room_redaction.la \
|
2019-05-26 02:29:30 +02:00
|
|
|
m_room_server_acl.la \
|
2019-07-24 00:37:32 +02:00
|
|
|
m_room_bootstrap.la \
|
2019-08-25 23:26:01 +02:00
|
|
|
m_room_name.la \
|
2019-07-15 00:42:36 +02:00
|
|
|
m_init_bootstrap.la \
|
2019-08-14 07:59:27 +02:00
|
|
|
m_init_backfill.la \
|
2019-07-18 20:27:08 +02:00
|
|
|
m_listen.la \
|
2019-08-12 04:23:38 +02:00
|
|
|
m_users.la \
|
2019-08-27 00:12:43 +02:00
|
|
|
m_vm.la \
|
|
|
|
m_vm_fetch.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
|
2019-03-31 22:46:48 +02:00
|
|
|
client_client_notifications_la_SOURCES = client/notifications.cc
|
2019-08-07 23:48:08 +02:00
|
|
|
client_client_register_email_la_SOURCES = client/register_email.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 \
|
2019-03-31 22:46:48 +02:00
|
|
|
client/client_notifications.la \
|
2019-08-07 23:48:08 +02:00
|
|
|
client/client_register_email.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 \
|
2019-08-14 18:28:05 +02:00
|
|
|
client/rooms/relations.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
|
2019-07-06 15:49:03 +02:00
|
|
|
client_client_sync_rooms_summary_la_SOURCES = client/sync/rooms/summary.cc
|
2019-01-04 02:21:02 +01:00
|
|
|
|
|
|
|
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-07-06 15:49:03 +02:00
|
|
|
client/client_sync_rooms_summary.la \
|
2019-01-04 02:21:02 +01:00
|
|
|
###
|
|
|
|
|
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
|
2019-07-04 04:58:13 +02:00
|
|
|
federation_federation_invite2_la_SOURCES = federation/invite2.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-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 \
|
2019-07-04 04:58:13 +02:00
|
|
|
federation/federation_invite2.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 \
|
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
|