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.

Makefile.pjrc 344B

123456789101112131415161718192021
  1. OPT_DEFS += -DHOST_PJRC
  2. SRC = usb_keyboard.c \
  3. usb_debug.c \
  4. usb.c \
  5. jump_bootloader.c
  6. SRC += $(TARGET_SRC)
  7. # C source file search path
  8. VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/pjrc
  9. # Option modules
  10. ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
  11. SRC += usb_mouse.c
  12. endif
  13. ifdef USB_EXTRA_ENABLE
  14. SRC += usb_extra.c
  15. endif