blob: da617b5ac1cfb7af207cfee8e80ee0d644f5bc9d [file] [log] [blame]
Shad Ansari2f7f9be2017-06-07 13:34:53 -07001# Makefile for building utilities as linux module
2#
3ifeq ("$(OS_KERNEL)", "linux")
4
5MOD_NAME = api_linux
6MOD_TYPE = linux_lib
7MOD_DEPS = utils_linux sysmodel
8srcs = bcmolt_msg.c
9
10# If called by linux kernel builder - add include paths manually.
11# It is not elegant, but we'll not have many linux modules
12ifneq ("$(KBUILD_SRC)", "")
13 -include $(OUT_DIR_BASE)/Makefile.config.$(MOD_NAME)
14endif
15
16endif