diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-05-09 20:05:33 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-05-09 11:05:33 -0700 |
commit | 2835a7074985f25dea9398a7ac211914c9d52fe4 (patch) | |
tree | 82cbc69fce72d87f331b1146dbd61c52ac4b7ca7 | |
parent | 94c4b6bd740bf1dbc2ff45a4a5f6385d06440ef0 (diff) |
[Keymap] Fix RGB_MATRIX_ENABLE check in users/konstantin/rules.mk (#5832)
-rw-r--r-- | users/konstantin/rules.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/users/konstantin/rules.mk b/users/konstantin/rules.mk index 1799d2be50..bf0ab979fb 100644 --- a/users/konstantin/rules.mk +++ b/users/konstantin/rules.mk @@ -2,6 +2,7 @@ SRC += konstantin.c ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) SRC += rgb.c endif +RGB_MATRIX_ENABLE ?= no ifneq ($(strip $(RGB_MATRIX_ENABLE)), no) SRC += rgb.c endif |