blob: e4005624d0c29b69683e9db20e2790291eb0f4d0 [file] [log] [blame]
Shad Ansari2f7f9be2017-06-07 13:34:53 -07001# EPON optical monitoring application
2
3ifeq ("$(ENABLE_CLI)", "y")
4
5 MOD_NAME = bcm_user_appl_omon
6 MOD_TYPE = lib
7 MOD_DEPS = host_api
8 ifneq ("$(SIMULATION_BUILD)", "y")
9 MOD_DEPS += bcm_board i2c_devs
10 endif
11
12 ifeq ("$(OS_KERNEL)", "linux")
13 MOD_DEPS += dev_log_linux
14 endif
15
16 ifneq ("$(SIMULATION_BUILD)", "y")
17 srcs = omon.c
18 endif
19
20endif