Makefile 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. #----------------------------------------------------------------------------
  2. # On command line:
  3. #
  4. # make = Make software.
  5. #
  6. # make clean = Clean out built project files.
  7. #
  8. # That's pretty much all you need. To compile, always go make clean,
  9. # followed by make.
  10. #
  11. # For advanced users only:
  12. # make teensy = Download the hex file to the device, using teensy_loader_cli.
  13. # (must have teensy_loader_cli installed).
  14. #
  15. #----------------------------------------------------------------------------
  16. SUBPROJECT_DEFAULT = ez
  17. # Build Options
  18. # comment out to disable the options.
  19. #
  20. BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000)
  21. MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
  22. EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
  23. CONSOLE_ENABLE ?= no # Console for debug(+400)
  24. COMMAND_ENABLE ?= yes # Commands for debug and configuration
  25. CUSTOM_MATRIX ?= yes # Custom matrix file for the ErgoDox EZ
  26. SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend
  27. NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  28. MIDI_ENABLE ?= no # MIDI controls
  29. UNICODE_ENABLE ?= yes # Unicode
  30. ifndef QUANTUM_DIR
  31. include ../../Makefile
  32. endif