mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
dcfffa7b67
* Relocate non platform files within tmk_core/common/ * clang
14 lines
300 B
Makefile
14 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
|