Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pjrc.mk 406B

123456789101112131415161718192021
  1. PJRC_DIR = protocol/pjrc
  2. OPT_DEFS += -DHOST_PJRC
  3. SRC += $(PJRC_DIR)/pjrc.c \
  4. $(PJRC_DIR)/usb_keyboard.c \
  5. $(PJRC_DIR)/usb_debug.c \
  6. $(PJRC_DIR)/usb.c \
  7. $(PJRC_DIR)/bootloader_teensy.c
  8. # Option modules
  9. ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
  10. SRC += $(PJRC_DIR)/usb_mouse.c
  11. endif
  12. ifdef EXTRAKEY_ENABLE
  13. SRC += $(PJRC_DIR)/usb_extra.c
  14. endif
  15. # Search Path
  16. VPATH += $(TOP_DIR)/$(PJRC_DIR)