forked from mirrors/qmk_firmware
core: Fix build config in protocol.mk (#7620)
Backports commits from tmk_keyboard
This commit is contained in:
parent
e4818cf732
commit
2d1c985ff4
1 changed files with 13 additions and 14 deletions
|
@ -1,56 +1,55 @@
|
||||||
PROTOCOL_DIR = protocol
|
PROTOCOL_DIR = protocol
|
||||||
|
|
||||||
|
ifeq ($(strip $(PS2_MOUSE_ENABLE)), yes)
|
||||||
ifdef PS2_MOUSE_ENABLE
|
|
||||||
SRC += $(PROTOCOL_DIR)/ps2_mouse.c
|
SRC += $(PROTOCOL_DIR)/ps2_mouse.c
|
||||||
OPT_DEFS += -DPS2_MOUSE_ENABLE
|
OPT_DEFS += -DPS2_MOUSE_ENABLE
|
||||||
OPT_DEFS += -DMOUSE_ENABLE
|
OPT_DEFS += -DMOUSE_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef PS2_USE_BUSYWAIT
|
ifeq ($(strip $(PS2_USE_BUSYWAIT)), yes)
|
||||||
SRC += protocol/ps2_busywait.c
|
SRC += protocol/ps2_busywait.c
|
||||||
SRC += protocol/ps2_io_avr.c
|
SRC += protocol/ps2_io_avr.c
|
||||||
OPT_DEFS += -DPS2_USE_BUSYWAIT
|
OPT_DEFS += -DPS2_USE_BUSYWAIT
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef PS2_USE_INT
|
ifeq ($(strip $(PS2_USE_INT)), yes)
|
||||||
SRC += protocol/ps2_interrupt.c
|
SRC += protocol/ps2_interrupt.c
|
||||||
SRC += protocol/ps2_io_avr.c
|
SRC += protocol/ps2_io_avr.c
|
||||||
OPT_DEFS += -DPS2_USE_INT
|
OPT_DEFS += -DPS2_USE_INT
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef PS2_USE_USART
|
ifeq ($(strip $(PS2_USE_USART)), yes)
|
||||||
SRC += protocol/ps2_usart.c
|
SRC += protocol/ps2_usart.c
|
||||||
SRC += protocol/ps2_io_avr.c
|
SRC += protocol/ps2_io_avr.c
|
||||||
OPT_DEFS += -DPS2_USE_USART
|
OPT_DEFS += -DPS2_USE_USART
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifdef SERIAL_MOUSE_MICROSOFT_ENABLE
|
ifeq ($(strip $(SERIAL_MOUSE_MICROSOFT_ENABLE)), yes)
|
||||||
SRC += $(PROTOCOL_DIR)/serial_mouse_microsoft.c
|
SRC += $(PROTOCOL_DIR)/serial_mouse_microsoft.c
|
||||||
OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MICROSOFT \
|
OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MICROSOFT \
|
||||||
-DMOUSE_ENABLE
|
-DMOUSE_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef SERIAL_MOUSE_MOUSESYSTEMS_ENABLE
|
ifeq ($(strip $(SERIAL_MOUSE_MOUSESYSTEMS_ENABLE)), yes)
|
||||||
SRC += $(PROTOCOL_DIR)/serial_mouse_mousesystems.c
|
SRC += $(PROTOCOL_DIR)/serial_mouse_mousesystems.c
|
||||||
OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MOUSESYSTEMS \
|
OPT_DEFS += -DSERIAL_MOUSE_ENABLE -DSERIAL_MOUSE_MOUSESYSTEMS \
|
||||||
-DMOUSE_ENABLE
|
-DMOUSE_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef SERIAL_MOUSE_USE_SOFT
|
ifeq ($(strip $(SERIAL_MOUSE_USE_SOFT)), yes)
|
||||||
SRC += $(PROTOCOL_DIR)/serial_soft.c
|
SRC += $(PROTOCOL_DIR)/serial_soft.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef SERIAL_MOUSE_USE_UART
|
ifeq ($(strip $(SERIAL_MOUSE_USE_UART)), yes)
|
||||||
SRC += $(PROTOCOL_DIR)/serial_uart.c
|
SRC += $(PROTOCOL_DIR)/serial_uart.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef ADB_MOUSE_ENABLE
|
ifeq ($(strip $(ADB_MOUSE_ENABLE)), yes)
|
||||||
OPT_DEFS += -DADB_MOUSE_ENABLE -DMOUSE_ENABLE
|
OPT_DEFS += -DADB_MOUSE_ENABLE -DMOUSE_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef XT_ENABLE
|
ifeq ($(strip $(XT_ENABLE)), yes)
|
||||||
SRC += $(PROTOCOL_DIR)/xt_interrupt.c
|
SRC += $(PROTOCOL_DIR)/xt_interrupt.c
|
||||||
OPT_DEFS += -DXT_ENABLE
|
OPT_DEFS += -DXT_ENABLE
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue