forked from mirrors/qmk_firmware
aad5746682
* Move protocol makefiles into their respective folders * Fix USB-USB converter
17 lines
446 B
Makefile
17 lines
446 B
Makefile
PROTOCOL_DIR = protocol
|
|
CHIBIOS_DIR = $(PROTOCOL_DIR)/chibios
|
|
|
|
|
|
SRC += $(CHIBIOS_DIR)/usb_main.c
|
|
SRC += $(CHIBIOS_DIR)/chibios.c
|
|
SRC += usb_descriptor.c
|
|
SRC += $(CHIBIOS_DIR)/usb_driver.c
|
|
SRC += $(CHIBIOS_DIR)/usb_util.c
|
|
SRC += $(LIBSRC)
|
|
|
|
VPATH += $(TMK_PATH)/$(PROTOCOL_DIR)
|
|
VPATH += $(TMK_PATH)/$(CHIBIOS_DIR)
|
|
VPATH += $(TMK_PATH)/$(CHIBIOS_DIR)/lufa_utils
|
|
|
|
OPT_DEFS += -DFIXED_CONTROL_ENDPOINT_SIZE=64
|
|
OPT_DEFS += -DFIXED_NUM_CONFIGURATIONS=1
|