diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-02-09 21:45:25 +0100 |
---|---|---|
committer | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-03-02 15:15:53 +0100 |
commit | ef189da2439d8f0cf20a83756400a38310c1caeb (patch) | |
tree | 23b38e2f4bde9e809cfd9661592b41e92c6d3a44 | |
parent | db1ace5426ab08842cec23e0da190ab222de6088 (diff) | |
download | qmk_firmware-ef189da2439d8f0cf20a83756400a38310c1caeb.tar.gz qmk_firmware-ef189da2439d8f0cf20a83756400a38310c1caeb.zip |
Move feature flags from userspace into keyboard rules
-rw-r--r-- | keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk | 9 | ||||
-rw-r--r-- | keyboards/melody96/keymaps/konstantin/rules.mk | 9 | ||||
-rw-r--r-- | keyboards/whitefox/keymaps/konstantin/rules.mk | 9 | ||||
-rw-r--r-- | users/konstantin/rules.mk | 9 |
4 files changed, 27 insertions, 9 deletions
diff --git a/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk b/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk index a45a631dc..38ccda621 100644 --- a/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk +++ b/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk | |||
@@ -1,2 +1,11 @@ | |||
1 | BOOTMAGIC_ENABLE = no | ||
2 | COMMAND_ENABLE = yes | ||
3 | CONSOLE_ENABLE = yes | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | MOUSEKEY_ENABLE = yes | ||
6 | NKRO_ENABLE = yes | ||
7 | TAP_DANCE_ENABLE = yes | ||
8 | UNICODE_ENABLE = yes | ||
9 | |||
1 | BACKLIGHT_ENABLE = no | 10 | BACKLIGHT_ENABLE = no |
2 | RGBLIGHT_ENABLE = no | 11 | RGBLIGHT_ENABLE = no |
diff --git a/keyboards/melody96/keymaps/konstantin/rules.mk b/keyboards/melody96/keymaps/konstantin/rules.mk index 7b30c0bef..c1d4c9a03 100644 --- a/keyboards/melody96/keymaps/konstantin/rules.mk +++ b/keyboards/melody96/keymaps/konstantin/rules.mk | |||
@@ -1 +1,10 @@ | |||
1 | BOOTMAGIC_ENABLE = no | ||
2 | COMMAND_ENABLE = yes | ||
3 | CONSOLE_ENABLE = no | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | MOUSEKEY_ENABLE = yes | ||
6 | NKRO_ENABLE = yes | ||
7 | TAP_DANCE_ENABLE = yes | ||
8 | UNICODE_ENABLE = yes | ||
9 | |||
1 | BACKLIGHT_ENABLE = no | 10 | BACKLIGHT_ENABLE = no |
diff --git a/keyboards/whitefox/keymaps/konstantin/rules.mk b/keyboards/whitefox/keymaps/konstantin/rules.mk index 1302f14ca..14a29380c 100644 --- a/keyboards/whitefox/keymaps/konstantin/rules.mk +++ b/keyboards/whitefox/keymaps/konstantin/rules.mk | |||
@@ -1,2 +1,11 @@ | |||
1 | BOOTMAGIC_ENABLE = no | ||
2 | COMMAND_ENABLE = yes | ||
3 | CONSOLE_ENABLE = yes | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | MOUSEKEY_ENABLE = yes | ||
6 | NKRO_ENABLE = yes | ||
7 | TAP_DANCE_ENABLE = yes | ||
8 | UNICODE_ENABLE = yes | ||
9 | |||
1 | BACKLIGHT_ENABLE = no | 10 | BACKLIGHT_ENABLE = no |
2 | VISUALIZER_ENABLE = no | 11 | VISUALIZER_ENABLE = no |
diff --git a/users/konstantin/rules.mk b/users/konstantin/rules.mk index d2522b952..4af256e1e 100644 --- a/users/konstantin/rules.mk +++ b/users/konstantin/rules.mk | |||
@@ -1,12 +1,3 @@ | |||
1 | BOOTMAGIC_ENABLE = no | ||
2 | COMMAND_ENABLE = yes | ||
3 | CONSOLE_ENABLE = yes | ||
4 | EXTRAKEY_ENABLE = yes | ||
5 | MOUSEKEY_ENABLE = yes | ||
6 | NKRO_ENABLE = yes | ||
7 | TAP_DANCE_ENABLE = yes | ||
8 | UNICODE_ENABLE = yes | ||
9 | |||
10 | SRC += konstantin.c | 1 | SRC += konstantin.c |
11 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) | 2 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) |
12 | SRC += tap_dance.c | 3 | SRC += tap_dance.c |