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 245B

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