ff213d5fe1
* enable rgblight layers * rgblight layers code * switch to new rgblight layers * testing led positions * fix caps typo * lights and colors working * rules updated for different rgb use * Extra spaces removed
27 lines
No EOL
534 B
Makefile
27 lines
No EOL
534 B
Makefile
TAP_DANCE_ENABLE = yes
|
|
EXTRAKEY_ENABLE = yes
|
|
BACKLIGHT_ENABLE = no
|
|
COMMAND_ENABLE = no
|
|
BOOTMAGIC_ENABLE = no
|
|
MOUSEKEY_ENABLE = no
|
|
AUDIO_ENABLE = no
|
|
CONSOLE_ENABLE = no
|
|
NKRO_ENABLE = no
|
|
|
|
SRC += stanrc85.c
|
|
|
|
ifeq ($(strip $(KEYBOARD)), 1upkeyboards/1up60hse)
|
|
SRC += layer_rgb.c
|
|
VIA_ENABLE = yes
|
|
LTO_ENABLE = yes
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), dz60)
|
|
SRC += layer_rgb.c
|
|
VIA_ENABLE = yes
|
|
LTO_ENABLE = yes
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), projectkb/alice)
|
|
SRC += rgblight_layers.c
|
|
VIA_ENABLE = yes
|
|
LTO_ENABLE = no
|
|
endif |