mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-23 03:50:28 +08:00
dcfffa7b67
* Relocate non platform files within tmk_core/common/ * clang
15 lines
300 B
Makefile
15 lines
300 B
Makefile
PROTOCOL_DIR = protocol
|
|
|
|
TMK_COMMON_SRC += \
|
|
$(PROTOCOL_DIR)/host.c \
|
|
$(PROTOCOL_DIR)/report.c \
|
|
$(PROTOCOL_DIR)/usb_device_state.c \
|
|
$(PROTOCOL_DIR)/usb_util.c \
|
|
|
|
ifeq ($(strip $(USB_HID_ENABLE)), yes)
|
|
include $(TMK_DIR)/protocol/usb_hid.mk
|
|
endif
|
|
|
|
# Search Path
|
|
VPATH += $(TMK_DIR)/protocol
|