Files
android_kernel_samsung_sm86…/wlan/Makefile
Sean Tranchetti b7ca2db0ec rmnet_wlan: I99b277c4c8f699c7fa057318aca4894588fdd574
Adds the initial rmnet_wlan module.

Change-Id: Ibf80879ec062150058b8db6d527df936bd2ae7a0
Signed-off-by: Sean Tranchetti <stranche@codeaurora.org>
2021-03-26 13:39:42 -07:00

16 rader
380 B
Makefile

#By default build for CLD
RMNET_WLAN_SELECT := CONFIG_RMNET_WLAN=m
KBUILD_OPTIONS += $(RMNET_WLAN_SELECT)
KBUILD_OPTIONS += $(KBUILD_EXTRA) # Extra config if any
M ?= $(shell pwd)
all:
$(MAKE) -C $(KERNEL_SRC) M=$(M) modules $(KBUILD_OPTIONS)
modules_install:
$(MAKE) INSTALL_MOD_STRIP=1 -C $(KERNEL_SRC) M=$(M) modules_install
clean:
$(MAKE) -C $(KERNEL_SRC) M=$(M) clean