rules.mk 724 B

123456789101112131415161718192021222324252627
  1. #----------------------------------------------------------------------------
  2. # make georgi:extrakey:dfu
  3. # Make sure you have dfu-programmer installed!
  4. #----------------------------------------------------------------------------
  5. #Debug options
  6. VERBOSE = yes
  7. CONSOLE_ENABLE = yes
  8. DEBUG_MATRIX_SCAN_RATE = no
  9. DEBUG_MATRIX = no
  10. KEYBOARD_SHARED_EP = yes
  11. CUSTOM_MATRIX = yes
  12. MOUSEKEY_ENABLE = yes
  13. SINGLE_LAYER = no
  14. # A bunch of stuff that you shouldn't touch unless you
  15. # know what you're doing.
  16. #
  17. # No touchy, capiche?
  18. SRC += matrix.c i2c_master.c
  19. ifeq ($(strip $(DEBUG_MATRIX)), yes)
  20. OPT_DEFS += -DDEBUG_MATRIX
  21. endif
  22. ifeq ($(strip $(SINGLE_LAYER)), yes)
  23. OPT_DEFS += -DSINGLE_LAYER
  24. endif