rabbitmq-server/deps/rabbitmq_auth_backend_cache/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
723 B
Makefile
Raw Permalink Normal View History

2016-05-16 22:28:28 +08:00
PROJECT = rabbitmq_auth_backend_cache
PROJECT_DESCRIPTION = RabbitMQ Authentication Backend cache
PROJECT_MOD = rabbit_auth_backend_cache_app
define PROJECT_ENV
[
{cache_ttl, 15000},
{cache_module, rabbit_auth_cache_ets},
{cache_module_args, []},
{cached_backend, rabbit_auth_backend_internal},
{cache_refusals, false}
]
endef
define PROJECT_APP_EXTRA_KEYS
{broker_version_requirements, []}
endef
2016-05-16 22:28:28 +08:00
2017-08-31 19:31:27 +08:00
DEPS = rabbit_common rabbit
TEST_DEPS = rabbitmq_ct_helpers rabbitmq_ct_client_helpers
2016-05-16 22:28:28 +08:00
2025-02-12 23:55:31 +08:00
PLT_APPS += rabbitmqctl
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
2016-05-16 22:28:28 +08:00
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
include ../../rabbitmq-components.mk
include ../../erlang.mk