diff options
author | Joel Challis <git@zvecr.com> | 2021-10-28 02:43:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 02:43:51 +0100 |
commit | 780e763c13052138e4d9ad379c4138c3b2c344a7 (patch) | |
tree | 529979df4d2e44a1c6c57cde14b8ec2e58cb41d6 /tmk_core/protocol.mk | |
parent | b780c797beb726839e99e3f4054f9b4c33331cdc (diff) | |
download | qmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.tar.gz qmk_firmware-780e763c13052138e4d9ad379c4138c3b2c344a7.zip |
Remove SERIAL_MOUSE (#14969)
Diffstat (limited to 'tmk_core/protocol.mk')
-rw-r--r-- | tmk_core/protocol.mk | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tmk_core/protocol.mk b/tmk_core/protocol.mk index 8aa063c911..d4ad50db6a 100644 --- a/tmk_core/protocol.mk +++ b/tmk_core/protocol.mk @@ -1,25 +1,5 @@ PROTOCOL_DIR = protocol -ifeq ($(strip $(SERIAL_MOUSE_MICROSOFT_ENABLE)), yes) - SRC += $(PROTOCOL_DIR)/serial_mouse_microsoft.c - OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MICROSOFT \ - -DMOUSE_ENABLE -endif - -ifeq ($(strip $(SERIAL_MOUSE_MOUSESYSTEMS_ENABLE)), yes) - SRC += $(PROTOCOL_DIR)/serial_mouse_mousesystems.c - OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MOUSESYSTEMS \ - -DMOUSE_ENABLE -endif - -ifeq ($(strip $(SERIAL_MOUSE_USE_SOFT)), yes) - SRC += $(PROTOCOL_DIR)/serial_soft.c -endif - -ifeq ($(strip $(SERIAL_MOUSE_USE_UART)), yes) - SRC += $(PROTOCOL_DIR)/serial_uart.c -endif - ifeq ($(strip $(USB_HID_ENABLE)), yes) include $(TMK_DIR)/protocol/usb_hid.mk endif |