blob: 78867d8e709ee8a67da5748952ef7296b514cac7 [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 = utils_linux
6MOD_TYPE = linux_lib
7srcs = bcmolt_buf.c
8
9# If called by linux kernel builder - add include paths manually.
10# It is not elegant, but we'll not have many linux modules
11ifneq ("$(KBUILD_SRC)", "")
12 -include $(OUT_DIR_BASE)/Makefile.config.$(MOD_NAME)
13endif
14
15endif