Files
android_kernel_samsung_sm86…/Makefile
Franklin Abreu Bueno 45014a6ec9 Add support for pineapple
- Enables bt kernel driver for pineapple
- Replace fallthrough comments with attribute
- Disable WLAN dependencies

Change-Id: I7843ecc47b656e22d9e558af6be8d3445d79918f
2022-11-17 16:56:32 -08:00

17 lines
343 B
Makefile

KERNEL_SRC ?= /lib/modules/$(shell uname -r)/build
M ?= $(shell pwd)
M=$(PWD)
BT_ROOT=$(KERNEL_SRC)/$(M)
KBUILD_OPTIONS+= BT_ROOT=$(BT_ROOT)
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