blob: 359ddbfef1bf072cf217115f196d394917851526 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|