blob: 6ab83b56efed855b04d63ba93c09d8e2085ea2f0 [file] [log] [blame]
# Makefile for building host/host_api as linux library to be called from kernel modules
#
ifeq ("$(OS_KERNEL)", "linux")
MOD_NAME = host_api_linux
MOD_TYPE = linux_lib
MOD_DEPS = common_gpon
srcs = bcmolt_host_api.c
# If called by linux kernel builder - add include paths manually.
# It is not elegant, but we'll not have many linux modules
ifneq ("$(KBUILD_SRC)", "")
-include $(OUT_DIR_BASE)/Makefile.config.$(MOD_NAME)
endif
endif