diff options
Diffstat (limited to 'users')
| -rw-r--r-- | users/bcat/rules.mk | 2 | ||||
| -rw-r--r-- | users/dshields/rules.mk | 3 | ||||
| -rw-r--r-- | users/issmirnov/rules.mk | 2 | ||||
| -rw-r--r-- | users/kuchosauronad0/rules.mk | 4 | ||||
| -rw-r--r-- | users/pvinis/rules.mk | 2 | ||||
| -rw-r--r-- | users/yanfali/rules.mk | 2 | ||||
| -rw-r--r-- | users/yet-another-developer/rules.mk | 2 |
7 files changed, 8 insertions, 9 deletions
diff --git a/users/bcat/rules.mk b/users/bcat/rules.mk index a595d1f58..f87974ed9 100644 --- a/users/bcat/rules.mk +++ b/users/bcat/rules.mk | |||
| @@ -14,7 +14,7 @@ EXTRAKEY_ENABLE = yes | |||
| 14 | NKRO_ENABLE = yes | 14 | NKRO_ENABLE = yes |
| 15 | 15 | ||
| 16 | # Enable link-time optimization to reduce binary size. | 16 | # Enable link-time optimization to reduce binary size. |
| 17 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 17 | LTO_ENABLE = yes |
| 18 | 18 | ||
| 19 | # Disable unused build options on all keyboards. | 19 | # Disable unused build options on all keyboards. |
| 20 | COMMAND_ENABLE = no | 20 | COMMAND_ENABLE = no |
diff --git a/users/dshields/rules.mk b/users/dshields/rules.mk index abfbe5e40..462649289 100644 --- a/users/dshields/rules.mk +++ b/users/dshields/rules.mk | |||
| @@ -10,7 +10,7 @@ SPACE_CADET_ENABLE = no | |||
| 10 | LEADER_ENABLE = no | 10 | LEADER_ENABLE = no |
| 11 | DYNAMIC_MACRO_ENABLE = yes | 11 | DYNAMIC_MACRO_ENABLE = yes |
| 12 | 12 | ||
| 13 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 13 | LTO_ENABLE = yes |
| 14 | 14 | ||
| 15 | ifeq ($(strip $(KEYBOARD)), planck/rev3) | 15 | ifeq ($(strip $(KEYBOARD)), planck/rev3) |
| 16 | AUDIO_ENABLE = no | 16 | AUDIO_ENABLE = no |
| @@ -29,4 +29,3 @@ ifeq ($(strip $(KEYBOARD)), planck/light) | |||
| 29 | BACKLIGHT_ENABLE = no | 29 | BACKLIGHT_ENABLE = no |
| 30 | RGB_MATRIX_ENABLE = yes | 30 | RGB_MATRIX_ENABLE = yes |
| 31 | endif | 31 | endif |
| 32 | |||
diff --git a/users/issmirnov/rules.mk b/users/issmirnov/rules.mk index 096d7b4c0..93ec21b01 100644 --- a/users/issmirnov/rules.mk +++ b/users/issmirnov/rules.mk | |||
| @@ -4,7 +4,7 @@ SRC += issmirnov.c | |||
| 4 | 4 | ||
| 5 | # https://www.reddit.com/r/olkb/comments/bmpgjm/programming_help/ | 5 | # https://www.reddit.com/r/olkb/comments/bmpgjm/programming_help/ |
| 6 | # Should shave 2000 bytes | 6 | # Should shave 2000 bytes |
| 7 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 7 | LTO_ENABLE = yes |
| 8 | 8 | ||
| 9 | # Enable debugging only when needed. | 9 | # Enable debugging only when needed. |
| 10 | CONSOLE_ENABLE = yes # +400 bytes (hid_listen support) | 10 | CONSOLE_ENABLE = yes # +400 bytes (hid_listen support) |
diff --git a/users/kuchosauronad0/rules.mk b/users/kuchosauronad0/rules.mk index b844d12c9..dfab85703 100644 --- a/users/kuchosauronad0/rules.mk +++ b/users/kuchosauronad0/rules.mk | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | SRC += kuchosauronad0.c \ | 1 | SRC += kuchosauronad0.c \ |
| 2 | process_records.c | 2 | process_records.c |
| 3 | 3 | ||
| 4 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 4 | LTO_ENABLE = yes |
| 5 | SPACE_CADET_ENABLE = no | 5 | SPACE_CADET_ENABLE = no |
| 6 | 6 | ||
| 7 | ifneq ($(strip $(RGBLIGHT_ENABLE)),yes ) | 7 | ifneq ($(strip $(RGBLIGHT_ENABLE)),yes ) |
| @@ -24,7 +24,7 @@ ifeq ($(strip $(LEADER_ENABLE)), yes) | |||
| 24 | SRC += leader.c | 24 | SRC += leader.c |
| 25 | endif | 25 | endif |
| 26 | 26 | ||
| 27 | ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") | 27 | ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") |
| 28 | SRC += secrets.c | 28 | SRC += secrets.c |
| 29 | endif | 29 | endif |
| 30 | ifeq ($(strip $(NO_SECRETS)), yes) | 30 | ifeq ($(strip $(NO_SECRETS)), yes) |
diff --git a/users/pvinis/rules.mk b/users/pvinis/rules.mk index f6f09e54d..6c7b47399 100644 --- a/users/pvinis/rules.mk +++ b/users/pvinis/rules.mk | |||
| @@ -14,6 +14,6 @@ SRC += pvinis.c # add userspace file | |||
| 14 | 14 | ||
| 15 | ## Some extra stuff to make firmware smaller. | 15 | ## Some extra stuff to make firmware smaller. |
| 16 | 16 | ||
| 17 | # LINK_TIME_OPTIMIZATION_ENABLE = yes | 17 | # LTO_ENABLE = yes |
| 18 | # CONSOLE_ENABLE = no | 18 | # CONSOLE_ENABLE = no |
| 19 | # COMMAND_ENABLE = no | 19 | # COMMAND_ENABLE = no |
diff --git a/users/yanfali/rules.mk b/users/yanfali/rules.mk index 456d3bf32..a7208daa2 100644 --- a/users/yanfali/rules.mk +++ b/users/yanfali/rules.mk | |||
| @@ -2,7 +2,7 @@ BOOTMAGIC = lite | |||
| 2 | DYNAMIC_KEYMAP_ENABLE = no | 2 | DYNAMIC_KEYMAP_ENABLE = no |
| 3 | CONSOLE_ENABLE = yes | 3 | CONSOLE_ENABLE = yes |
| 4 | COMMAND_ENABLE = yes | 4 | COMMAND_ENABLE = yes |
| 5 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 5 | LTO_ENABLE = yes |
| 6 | AUDIO_ENABLE = no | 6 | AUDIO_ENABLE = no |
| 7 | 7 | ||
| 8 | # only enable audio on specific boards | 8 | # only enable audio on specific boards |
diff --git a/users/yet-another-developer/rules.mk b/users/yet-another-developer/rules.mk index 597df6d0b..64cf1f2fc 100644 --- a/users/yet-another-developer/rules.mk +++ b/users/yet-another-developer/rules.mk | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | SRC += yet-another-developer.c \ | 1 | SRC += yet-another-developer.c \ |
| 2 | process_records.c | 2 | process_records.c |
| 3 | 3 | ||
| 4 | LINK_TIME_OPTIMIZATION_ENABLE = yes | 4 | LTO_ENABLE = yes |
| 5 | SPACE_CADET_ENABLE = no | 5 | SPACE_CADET_ENABLE = no |
| 6 | 6 | ||
| 7 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) | 7 | ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) |
