diff options
| author | Ryan <fauxpark@gmail.com> | 2020-06-15 20:06:10 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-15 03:06:10 -0700 |
| commit | 44d93285d1e5ae0fdaaaab33aa15ffab456b9434 (patch) | |
| tree | 81c0dac4947bec1fd3fdf12c583d8b21a9031a53 | |
| parent | 8e0af2f5ba1e094149ce5ce2ac4e25c462f98f23 (diff) | |
| download | qmk_firmware-44d93285d1e5ae0fdaaaab33aa15ffab456b9434.tar.gz qmk_firmware-44d93285d1e5ae0fdaaaab33aa15ffab456b9434.zip | |
Change ?= to = in keyboard rules.mk (#9390)
23 files changed, 227 insertions, 227 deletions
diff --git a/keyboards/alu84/rules.mk b/keyboards/alu84/rules.mk index b5f249057..81dbad070 100755 --- a/keyboards/alu84/rules.mk +++ b/keyboards/alu84/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= yes # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= yes | 26 | RGBLIGHT_ENABLE = yes |
diff --git a/keyboards/amj40/rules.mk b/keyboards/amj40/rules.mk index 5d6cff989..cd894dac1 100755 --- a/keyboards/amj40/rules.mk +++ b/keyboards/amj40/rules.mk | |||
| @@ -14,15 +14,15 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 23 | RGBLIGHT_ENABLE ?= yes # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | MIDI_ENABLE ?= no # MIDI controls | 25 | MIDI_ENABLE = no # MIDI controls |
| 26 | AUDIO_ENABLE ?= no | 26 | AUDIO_ENABLE = no |
| 27 | UNICODE_ENABLE ?= no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
| 28 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ckeys/nakey/rules.mk b/keyboards/ckeys/nakey/rules.mk index 95fd5e462..7c0477bcf 100644 --- a/keyboards/ckeys/nakey/rules.mk +++ b/keyboards/ckeys/nakey/rules.mk | |||
| @@ -14,20 +14,20 @@ BOOTLOADER = halfkay | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI support | 27 | MIDI_ENABLE = no # MIDI support |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE ?= no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 32 | 32 | ||
| 33 | LAYOUTS = numpad_5x4 | 33 | LAYOUTS = numpad_5x4 |
diff --git a/keyboards/fc660c/rules.mk b/keyboards/fc660c/rules.mk index 3a3ac4e5d..54fadc826 100644 --- a/keyboards/fc660c/rules.mk +++ b/keyboards/fc660c/rules.mk | |||
| @@ -15,11 +15,11 @@ BOOTLOADER = atmel-dfu | |||
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | # BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | # BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | NKRO_ENABLE ?= yes # USB Nkey Rollover - not yet supported in LUFA | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
| 23 | 23 | ||
| 24 | # Optimize size but this may cause error "relocation truncated to fit" | 24 | # Optimize size but this may cause error "relocation truncated to fit" |
| 25 | #EXTRALDFLAGS = -Wl,--relax | 25 | #EXTRALDFLAGS = -Wl,--relax |
diff --git a/keyboards/gh80_3000/rules.mk b/keyboards/gh80_3000/rules.mk index 524303ec2..d6cb5fcfa 100644 --- a/keyboards/gh80_3000/rules.mk +++ b/keyboards/gh80_3000/rules.mk | |||
| @@ -14,15 +14,15 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
| 27 | 27 | ||
| 28 | LAYOUTS = fullsize_ansi fullsize_iso | 28 | LAYOUTS = fullsize_ansi fullsize_iso |
diff --git a/keyboards/handwired/magicforce61/rules.mk b/keyboards/handwired/magicforce61/rules.mk index d1ed63f65..b72fff096 100644 --- a/keyboards/handwired/magicforce61/rules.mk +++ b/keyboards/handwired/magicforce61/rules.mk | |||
| @@ -14,17 +14,17 @@ BOOTLOADER = halfkay | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug(+400) | 20 | CONSOLE_ENABLE = yes # Console for debug(+400) |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI controls | 27 | MIDI_ENABLE = no # MIDI controls |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/not_so_minidox/rules.mk b/keyboards/handwired/not_so_minidox/rules.mk index ae5cb83b7..6e87d7545 100644 --- a/keyboards/handwired/not_so_minidox/rules.mk +++ b/keyboards/handwired/not_so_minidox/rules.mk | |||
| @@ -15,21 +15,21 @@ BOOTLOADER = caterina | |||
| 15 | # change to "no" to disable the options, or define them in the Makefile in | 15 | # change to "no" to disable the options, or define them in the Makefile in |
| 16 | # the appropriate keymap folder that will get included automatically | 16 | # the appropriate keymap folder that will get included automatically |
| 17 | # | 17 | # |
| 18 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | 18 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 19 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | 19 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 20 | EXTRAKEY_ENABLE ?= no # Audio control and System control(+450) | 20 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) |
| 21 | CONSOLE_ENABLE ?= no # Console for debug(+400) | 21 | CONSOLE_ENABLE = no # Console for debug(+400) |
| 22 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 23 | NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | MIDI_ENABLE ?= no # MIDI controls | 25 | MIDI_ENABLE = no # MIDI controls |
| 26 | AUDIO_ENABLE ?= no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
| 27 | UNICODE_ENABLE ?= no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
| 28 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 29 | RGBLIGHT_ENABLE ?= no # Enable WS2812 RGB underlight. | 29 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. |
| 30 | USE_I2C ?= no | 30 | USE_I2C = no |
| 31 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 31 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 32 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 32 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 33 | 33 | ||
| 34 | CUSTOM_MATRIX = yes | 34 | CUSTOM_MATRIX = yes |
| 35 | SRC += matrix.c \ | 35 | SRC += matrix.c \ |
diff --git a/keyboards/handwired/onekey/blackpill_f401/rules.mk b/keyboards/handwired/onekey/blackpill_f401/rules.mk index 36093820c..609262049 100644 --- a/keyboards/handwired/onekey/blackpill_f401/rules.mk +++ b/keyboards/handwired/onekey/blackpill_f401/rules.mk | |||
| @@ -20,7 +20,7 @@ MCU = cortex-m4 | |||
| 20 | ARMV = 7 | 20 | ARMV = 7 |
| 21 | USE_FPU = yes | 21 | USE_FPU = yes |
| 22 | # Address of the booloader in system memory | 22 | # Address of the booloader in system memory |
| 23 | STM32_BOOTLOADER_ADDRESS ?= 0x1FFF0000 | 23 | STM32_BOOTLOADER_ADDRESS = 0x1FFF0000 |
| 24 | 24 | ||
| 25 | # Options to pass to dfu-util when flashing | 25 | # Options to pass to dfu-util when flashing |
| 26 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave | 26 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave |
diff --git a/keyboards/handwired/onekey/blackpill_f411/rules.mk b/keyboards/handwired/onekey/blackpill_f411/rules.mk index 18fb92dbe..f2e0f2b4f 100644 --- a/keyboards/handwired/onekey/blackpill_f411/rules.mk +++ b/keyboards/handwired/onekey/blackpill_f411/rules.mk | |||
| @@ -20,7 +20,7 @@ MCU = cortex-m4 | |||
| 20 | ARMV = 7 | 20 | ARMV = 7 |
| 21 | USE_FPU = yes | 21 | USE_FPU = yes |
| 22 | # Address of the booloader in system memory | 22 | # Address of the booloader in system memory |
| 23 | STM32_BOOTLOADER_ADDRESS ?= 0x1FFF0000 | 23 | STM32_BOOTLOADER_ADDRESS = 0x1FFF0000 |
| 24 | 24 | ||
| 25 | # Options to pass to dfu-util when flashing | 25 | # Options to pass to dfu-util when flashing |
| 26 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave | 26 | DFU_ARGS = -d 0483:df11 -a 0 -s 0x08000000:leave |
diff --git a/keyboards/handwired/woodpad/rules.mk b/keyboards/handwired/woodpad/rules.mk index 772513197..a3a1e5ffe 100644 --- a/keyboards/handwired/woodpad/rules.mk +++ b/keyboards/handwired/woodpad/rules.mk | |||
| @@ -14,19 +14,19 @@ BOOTLOADER = caterina | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug(+400) | 20 | CONSOLE_ENABLE = yes # Console for debug(+400) |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI support (+2400 to 4200, depending on config) | 27 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE ?= no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
| 32 | RGBLIGHT_ENABLE ?= no | 32 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/katana60/rules.mk b/keyboards/katana60/rules.mk index 62a038091..e41c168c4 100644 --- a/keyboards/katana60/rules.mk +++ b/keyboards/katana60/rules.mk | |||
| @@ -14,18 +14,18 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI support | 27 | MIDI_ENABLE = no # MIDI support |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE ?= no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
diff --git a/keyboards/knops/mini/rules.mk b/keyboards/knops/mini/rules.mk index 312bfb4fd..1d0be6516 100644 --- a/keyboards/knops/mini/rules.mk +++ b/keyboards/knops/mini/rules.mk | |||
| @@ -14,18 +14,18 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI support | 27 | MIDI_ENABLE = no # MIDI support |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
| 31 | FAUXCLICKY_ENABLE ?= no # Use buzzer to emulate clicky switches | 31 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches |
diff --git a/keyboards/kona_classic/rules.mk b/keyboards/kona_classic/rules.mk index 2640360f2..8c5740b51 100644 --- a/keyboards/kona_classic/rules.mk +++ b/keyboards/kona_classic/rules.mk | |||
| @@ -14,17 +14,17 @@ BOOTLOADER = halfkay | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 25 | NKRO_ENABLE ?= no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
| 26 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
| 27 | MIDI_ENABLE ?= no # MIDI controls | 27 | MIDI_ENABLE = no # MIDI controls |
| 28 | UNICODE_ENABLE ?= no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
| 29 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 30 | AUDIO_ENABLE ?= no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mt40/rules.mk b/keyboards/mt40/rules.mk index c81f35f65..2b8e18a95 100644 --- a/keyboards/mt40/rules.mk +++ b/keyboards/mt40/rules.mk | |||
| @@ -12,18 +12,18 @@ MCU = atmega32a | |||
| 12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
| 13 | 13 | ||
| 14 | # build options | 14 | # build options |
| 15 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 16 | MOUSEKEY_ENABLE ?= no # Mouse keys | 16 | MOUSEKEY_ENABLE = no # Mouse keys |
| 17 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 18 | CONSOLE_ENABLE ?= no # Console for debug | 18 | CONSOLE_ENABLE = no # Console for debug |
| 19 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 20 | NKRO_ENABLE ?= no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ # nkro-doesnt-work | 20 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ # nkro-doesnt-work |
| 21 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 22 | MIDI_ENABLE ?= no # MIDI controls | 22 | MIDI_ENABLE = no # MIDI controls |
| 23 | AUDIO_ENABLE ?= no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
| 24 | UNICODE_ENABLE ?= no # Unicode | 24 | UNICODE_ENABLE = no # Unicode |
| 25 | BLUETOOTH_ENABLE ?= no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
| 26 | RGBLIGHT_ENABLE ?= yes # Enable WS2812 RGB underlight. | 26 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
| 27 | WS2812_DRIVER = i2c | 27 | WS2812_DRIVER = i2c |
| 28 | TAP_DANCE_ENABLE = no | 28 | TAP_DANCE_ENABLE = no |
| 29 | 29 | ||
diff --git a/keyboards/noxary/268/rules.mk b/keyboards/noxary/268/rules.mk index b57e64fce..f2d381510 100644 --- a/keyboards/noxary/268/rules.mk +++ b/keyboards/noxary/268/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/omnikey_bh/rules.mk b/keyboards/omnikey_bh/rules.mk index 59f163e2f..739bea393 100644 --- a/keyboards/omnikey_bh/rules.mk +++ b/keyboards/omnikey_bh/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = halfkay | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/paladin64/rules.mk b/keyboards/paladin64/rules.mk index 6caa47e90..739e00613 100755 --- a/keyboards/paladin64/rules.mk +++ b/keyboards/paladin64/rules.mk | |||
| @@ -14,18 +14,18 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= yes | 26 | RGBLIGHT_ENABLE = yes |
| 27 | #PS2_MOUSE_ENABLE ?= yes | 27 | #PS2_MOUSE_ENABLE = yes |
| 28 | #PS2_USE_USART ?= yes | 28 | #PS2_USE_USART = yes |
| 29 | #PS2_USE_INT ?= yes | 29 | #PS2_USE_INT = yes |
| 30 | 30 | ||
| 31 | LAYOUTS = 60_ansi | 31 | LAYOUTS = 60_ansi |
diff --git a/keyboards/primekb/prime_r/rules.mk b/keyboards/primekb/prime_r/rules.mk index fb3fd385e..6f7dd4705 100644 --- a/keyboards/primekb/prime_r/rules.mk +++ b/keyboards/primekb/prime_r/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/sx60/rules.mk b/keyboards/sx60/rules.mk index 64b2f2b2c..3fa616a27 100755 --- a/keyboards/sx60/rules.mk +++ b/keyboards/sx60/rules.mk | |||
| @@ -14,17 +14,17 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
| 27 | CUSTOM_MATRIX ?= yes | 27 | CUSTOM_MATRIX = yes |
| 28 | 28 | ||
| 29 | # project specific files | 29 | # project specific files |
| 30 | SRC = twimaster.c \ | 30 | SRC = twimaster.c \ |
diff --git a/keyboards/toad/rules.mk b/keyboards/toad/rules.mk index 731b405c0..94733eeaf 100644 --- a/keyboards/toad/rules.mk +++ b/keyboards/toad/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/uk78/rules.mk b/keyboards/uk78/rules.mk index 40fc506aa..7bcfa4ef1 100644 --- a/keyboards/uk78/rules.mk +++ b/keyboards/uk78/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= yes | 26 | RGBLIGHT_ENABLE = yes |
diff --git a/keyboards/wilba_tech/zeal60/rules.mk b/keyboards/wilba_tech/zeal60/rules.mk index 31c960c22..172ebaf6b 100644 --- a/keyboards/wilba_tech/zeal60/rules.mk +++ b/keyboards/wilba_tech/zeal60/rules.mk | |||
| @@ -34,7 +34,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | |||
| 34 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. | 34 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. |
| 35 | 35 | ||
| 36 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 36 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 37 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 37 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 38 | 38 | ||
| 39 | CIE1931_CURVE = yes | 39 | CIE1931_CURVE = yes |
| 40 | 40 | ||
diff --git a/keyboards/xmmx/rules.mk b/keyboards/xmmx/rules.mk index 731b405c0..94733eeaf 100644 --- a/keyboards/xmmx/rules.mk +++ b/keyboards/xmmx/rules.mk | |||
| @@ -14,13 +14,13 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE ?= no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
| 19 | EXTRAKEY_ENABLE ?= yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE ?= no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE ?= no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 23 | NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
| 24 | BACKLIGHT_ENABLE ?= no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
| 25 | AUDIO_ENABLE ?= no | 25 | AUDIO_ENABLE = no |
| 26 | RGBLIGHT_ENABLE ?= no | 26 | RGBLIGHT_ENABLE = no |
