diff options
author | Joel Challis <git@zvecr.com> | 2021-10-28 22:31:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 22:31:59 +0100 |
commit | dcfffa7b67a072f7d9e37bd8c0029c53b61aeb0f (patch) | |
tree | 65491c3878ee76f50c4b46a318503cc27fdb4a6b /tmk_core/protocol.mk | |
parent | 0c87e2e7025140ca6105b7fec2639c78c3cd8109 (diff) | |
download | qmk_firmware-dcfffa7b67a072f7d9e37bd8c0029c53b61aeb0f.tar.gz qmk_firmware-dcfffa7b67a072f7d9e37bd8c0029c53b61aeb0f.zip |
Relocate protocol files within tmk_core/common/ (#14972)
* Relocate non platform files within tmk_core/common/
* clang
Diffstat (limited to 'tmk_core/protocol.mk')
-rw-r--r-- | tmk_core/protocol.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/protocol.mk b/tmk_core/protocol.mk index d4ad50db6..359ddbfef 100644 --- a/tmk_core/protocol.mk +++ b/tmk_core/protocol.mk | |||
@@ -1,5 +1,11 @@ | |||
1 | PROTOCOL_DIR = protocol | 1 | PROTOCOL_DIR = protocol |
2 | 2 | ||
3 | TMK_COMMON_SRC += \ | ||
4 | $(PROTOCOL_DIR)/host.c \ | ||
5 | $(PROTOCOL_DIR)/report.c \ | ||
6 | $(PROTOCOL_DIR)/usb_device_state.c \ | ||
7 | $(PROTOCOL_DIR)/usb_util.c \ | ||
8 | |||
3 | ifeq ($(strip $(USB_HID_ENABLE)), yes) | 9 | ifeq ($(strip $(USB_HID_ENABLE)), yes) |
4 | include $(TMK_DIR)/protocol/usb_hid.mk | 10 | include $(TMK_DIR)/protocol/usb_hid.mk |
5 | endif | 11 | endif |