hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ifeq ($(KBUILD_TOP),)
    ifneq ($(KBUILD_EXTMOD),)
    KBUILD_DIR := $(KBUILD_EXTMOD)
    else
    KBUILD_DIR := $(PWD)
    endif
KBUILD_TOP := $(KBUILD_DIR)/../
endif
 
include $(KBUILD_TOP)/config.mak
 
KBUILD_EXTRA_SYMBOLS += $(KBUILD_TOP)/hci/Module.symvers
 
 
KMODULE_NAME=hci_wrapper
KERN_SRCS := ssv_huw.c
 
 
include $(KBUILD_TOP)/rules.mak