24 lines
591 B
Makefile
24 lines
591 B
Makefile
PROJECT = rabbitmq_auth_mechanism_ssl
|
|
PROJECT_DESCRIPTION = RabbitMQ SSL authentication (SASL EXTERNAL)
|
|
PROJECT_MOD = rabbit_auth_mechanism_ssl_app
|
|
|
|
define PROJECT_ENV
|
|
[
|
|
{name_from, distinguished_name}
|
|
]
|
|
endef
|
|
|
|
define PROJECT_APP_EXTRA_KEYS
|
|
{broker_version_requirements, []}
|
|
endef
|
|
|
|
LOCAL_DEPS = public_key
|
|
DEPS = rabbit_common rabbit
|
|
TEST_DEPS = rabbitmq_ct_helpers rabbitmq_ct_client_helpers amqp10_client
|
|
|
|
DEP_EARLY_PLUGINS = rabbit_common/mk/rabbitmq-early-plugin.mk
|
|
DEP_PLUGINS = rabbit_common/mk/rabbitmq-plugin.mk
|
|
|
|
include ../../rabbitmq-components.mk
|
|
include ../../erlang.mk
|