blob: 8342e9aa574e9d8a4d483aada172dbc5e9e4151a [file] [log] [blame]
Shad Ansari2f7f9be2017-06-07 13:34:53 -07001#
2# API/logger integration
3#
4MOD_NAME = api_dev_log
5MOD_TYPE = lib
6MOD_DEPS = dev_log
7
8ifeq ("$(ENABLE_LOG)", "y")
9 ifeq ("$(ENABLE_CLI)", "y")
10 ifeq ("$(RELEASE_BUILD)", "y")
11 MOD_DEPS += api_cli
12 else
13 MOD_DEPS += api_cli_helpers
14 endif
15
16 ifeq ("$(OS_KERNEL)", "linux")
17 MOD_DEPS += dev_log_linux
18 endif
19
20 srcs = bcm_api_dev_log.c
21 endif
22endif