Makefile 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #----------------------------------------------------------------------------
  2. # On command line:
  3. #
  4. # make all = Make software.
  5. #
  6. # make clean = Clean out built project files.
  7. #
  8. # make coff = Convert ELF to AVR COFF.
  9. #
  10. # make extcoff = Convert ELF to AVR Extended COFF.
  11. #
  12. # make program = Download the hex file to the device.
  13. # Please customize your programmer settings(PROGRAM_CMD)
  14. #
  15. # make teensy = Download the hex file to the device, using teensy_loader_cli.
  16. # (must have teensy_loader_cli installed).
  17. #
  18. # make dfu = Download the hex file to the device, using dfu-programmer (must
  19. # have dfu-programmer installed).
  20. #
  21. # make flip = Download the hex file to the device, using Atmel FLIP (must
  22. # have Atmel FLIP installed).
  23. #
  24. # make dfu-ee = Download the eeprom file to the device, using dfu-programmer
  25. # (must have dfu-programmer installed).
  26. #
  27. # make flip-ee = Download the eeprom file to the device, using Atmel FLIP
  28. # (must have Atmel FLIP installed).
  29. #
  30. # make debug = Start either simulavr or avarice as specified for debugging,
  31. # with avr-gdb or avr-insight as the front end for debugging.
  32. #
  33. # make filename.s = Just compile filename.c into the assembler code only.
  34. #
  35. # make filename.i = Create a preprocessed source file for use in submitting
  36. # bug reports to the GCC project.
  37. #
  38. # To rebuild project do "make clean" then "make all".
  39. #----------------------------------------------------------------------------
  40. # Build Options
  41. # change yes to no to disable
  42. #
  43. BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration(+1000)
  44. MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
  45. EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
  46. CONSOLE_ENABLE ?= yes # Console for debug(+400)
  47. COMMAND_ENABLE ?= yes # Commands for debug and configuration
  48. KEYBOARD_LOCK_ENABLE ?= yes # Allow locking of keyboard via magic key
  49. BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality
  50. RGBLIGHT_ENABLE ?= yes # Enable WS2812 underglow RGB strip
  51. MIDI_ENABLE ?= no # MIDI controls
  52. UNICODE_ENABLE ?= no # Unicode
  53. BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID
  54. AUDIO_ENABLE ?= no # Audio output on port C6
  55. # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
  56. SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend
  57. # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
  58. NKRO_ENABLE ?= no # USB Nkey Rollover
  59. ifndef QUANTUM_DIR
  60. include ../../Makefile
  61. endif