tmk_keyboard/protocol/pjrc.mk

21 lines
371 B
Makefile
Raw Normal View History

2012-06-28 16:05:21 +02:00
PJRC_DIR = protocol/pjrc
2011-02-08 16:03:58 +01:00
2012-06-28 16:05:21 +02:00
OPT_DEFS += -DHOST_PJRC
2011-02-12 16:15:51 +01:00
2012-06-28 16:05:21 +02:00
SRC += $(PJRC_DIR)/pjrc.c \
$(PJRC_DIR)/usb_keyboard.c \
$(PJRC_DIR)/usb_debug.c \
2012-06-30 04:19:07 +02:00
$(PJRC_DIR)/usb.c
2011-02-12 16:15:51 +01:00
2011-02-08 16:03:58 +01:00
# Option modules
ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
2012-06-28 16:05:21 +02:00
SRC += $(PJRC_DIR)/usb_mouse.c
2011-02-08 16:03:58 +01:00
endif
ifdef EXTRAKEY_ENABLE
2012-06-28 16:05:21 +02:00
SRC += $(PJRC_DIR)/usb_extra.c
2011-02-08 16:03:58 +01:00
endif
2012-06-28 16:05:21 +02:00
# Search Path
VPATH += $(TOP_DIR)/$(PJRC_DIR)