linuxOS_AP05/external/rkwifibt/realtek/bluetooth_usb_driver/Makefile

16 lines
325 B
Makefile
Raw Normal View History

2025-06-02 05:59:07 +00:00
ifneq ($(KERNELRELEASE),)
obj-m := rtk_btusb.o
rtk_btusb-y = rtk_coex.o rtk_misc.o rtk_bt.o
else
PWD := $(shell pwd)
KVER := $(shell uname -r)
KDIR := /lib/modules/$(KVER)/build
all:
$(MAKE) -C $(KDIR) M=$(PWD) modules
clean:
rm -rf *.o .*.cmd *.mod.c *.mod.o *.ko *.symvers *.order *.a *.mod
endif