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.common 232B

1234567891011121314151617
  1. SRC += keyboard.c \
  2. layer.c \
  3. timer.c \
  4. print.c \
  5. util.c
  6. # Option modules
  7. ifdef MOUSEKEY_ENABLE
  8. SRC += mousekey.c
  9. endif
  10. ifdef PS2_MOUSE_ENABLE
  11. SRC += ps2.c \
  12. ps2_mouse.c
  13. endif
  14. include $(COMMON_DIR)/Makefile.rules