1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/protocol/vusb.mk

22 righe
365 B
Makefile

2012-06-30 05:44:14 +00:00
VUSB_DIR = protocol/vusb
OPT_DEFS += -DPROTOCOL_VUSB
2012-06-30 05:44:14 +00:00
SRC += $(VUSB_DIR)/main.c \
$(VUSB_DIR)/vusb.c \
$(VUSB_DIR)/usbdrv/usbdrv.c \
$(VUSB_DIR)/usbdrv/usbdrvasm.S \
$(VUSB_DIR)/usbdrv/oddebug.c
ifdef NO_UART
SRC += sendchar_null.c
else
SRC += sendchar_uart.c \
uart.c
endif
# Search Path
VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv