summaryrefslogtreecommitdiffstats
path: root/protocol/pjrc.mk
blob: 1ceee0ad97ba26bfa345f18086e9efeb6871a168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PJRC_DIR = protocol/pjrc

OPT_DEFS += -DHOST_PJRC

SRC +=	$(PJRC_DIR)/pjrc.c \
	$(PJRC_DIR)/usb_keyboard.c \
	$(PJRC_DIR)/usb_debug.c \
	$(PJRC_DIR)/usb.c \
	$(PJRC_DIR)/bootloader_teensy.c

# Option modules
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
    SRC += $(PJRC_DIR)/usb_mouse.c
endif

ifdef EXTRAKEY_ENABLE
    SRC += $(PJRC_DIR)/usb_extra.c
endif

# Search Path
VPATH += $(TOP_DIR)/$(PJRC_DIR)