blob: 8342e9aa574e9d8a4d483aada172dbc5e9e4151a [file] [log] [blame]
#
# API/logger integration
#
MOD_NAME = api_dev_log
MOD_TYPE = lib
MOD_DEPS = dev_log
ifeq ("$(ENABLE_LOG)", "y")
ifeq ("$(ENABLE_CLI)", "y")
ifeq ("$(RELEASE_BUILD)", "y")
MOD_DEPS += api_cli
else
MOD_DEPS += api_cli_helpers
endif
ifeq ("$(OS_KERNEL)", "linux")
MOD_DEPS += dev_log_linux
endif
srcs = bcm_api_dev_log.c
endif
endif