2d46776923
git-subtree-dir: techpack/datarmnet-ext git-subtree-mainline:d9efe6cda3
git-subtree-split:5d395e5560
Change-Id: Id27d4ca0c699d7f9e26a870deee5ec5194b768bb
14 lines
388 B
Makefile
14 lines
388 B
Makefile
#By default build for CLD
|
|
RMNET_OFFLOAD_SELECT := CONFIG_RMNET_OFFLOAD=m
|
|
KBUILD_OPTIONS += $(RMNET_OFFLOAD_SELECT)
|
|
KBUILD_OPTIONS += $(KBUILD_EXTRA) # Extra config if any
|
|
|
|
all:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(shell pwd) modules $(KBUILD_OPTIONS)
|
|
|
|
modules_install:
|
|
$(MAKE) INSTALL_MOD_STRIP=1 -C $(KERNEL_SRC) M=$(shell pwd) modules_install
|
|
|
|
clean:
|
|
$(MAKE) -C $(KERNEL_SRC) M=$(PWD) clean
|