rules.mk 478 B

12345678910111213141516171819
  1. ifeq ($(strip $(KEYBOARD)), lets_split_rev2)
  2. SRC += ../../keyboards/lets_split/lets_split.c
  3. endif
  4. SRC += wanleg.c tapdances.c
  5. ifndef TAP_DANCE_ENABLE
  6. TAP_DANCE_ENABLE = yes
  7. endif
  8. ifndef MOUSEKEY_ENABLE
  9. MOUSEKEY_ENABLE = yes
  10. endif
  11. #If using a ProMicro and it has the QMK DFU bootloader instead of Caterina,
  12. #run "make <keyboard>:<keymap> dfu=qmk" when compiling to ensure it is flagged properly after being flashed
  13. ifeq ($(strip $(dfu)), qmk)
  14. BOOTLOADER = qmk-dfu
  15. endif