forked from forks/qmk_firmware
92385b3fb6
* Better handle LTO_ENABLE Especially when calling from command line * Replace LINK_TIME_OPTIMIZATION_ENABLE with LTO_ENABLE * Remove long for LTO from show_options.mk
16 lines
326 B
Makefile
16 lines
326 B
Makefile
AUTO_SHIFT_ENABLE = yes
|
|
AUTO_SHIFT_MODIFIERS = yes
|
|
UNICODE_ENABLE = yes
|
|
LTO_ENABLE = yes
|
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev5)
|
|
BACKLIGHT_ENABLE = yes
|
|
CONSOLE_ENABLE = no
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev6)
|
|
BACKLIGHT_ENABLE = no
|
|
CONSOLE_ENABLE = yes
|
|
EXTRALDFLAGS = -Wl,--build-id=none
|
|
UNICODE_ENABLE = yes
|
|
endif
|