
Initial commit of the module. CRs-Fixed: 2813607 Change-Id: Ib5790d9be711b975231a38fde1a87a23dbdb5bd2 Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
17 righe
498 B
Makefile
17 righe
498 B
Makefile
#By default build for CLD
|
|
RMNET_PERF_TETHER_SELECT := CONFIG_RMNET_PERF_TETHER=m
|
|
KBUILD_OPTIONS += $(RMNET_PERF_TETHER_SELECT)
|
|
KBUILD_OPTIONS += $(KBUILD_EXTRA) # Extra config if any
|
|
KBUILD_EXTRA_SYMBOLS := $(M)/../../$(DATARMNET_CORE_PATH)/Module.symvers
|
|
|
|
M ?= $(shell pwd)
|
|
|
|
all:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) modules $(KBUILD_OPTIONS) $(KBUILD_EXTRA_SYMBOLS)
|
|
|
|
modules_install:
|
|
$(MAKE) INSTALL_MOD_STRIP=1 -C $(KERNEL_SRC) M=$(M) modules_install
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean
|