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
32 lines
845 B
Makefile
32 lines
845 B
Makefile
SRC += dshields.c
|
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
|
EXTRAKEY_ENABLE = no
|
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
API_SYSEX_ENABLE = no
|
|
SPACE_CADET_ENABLE = no
|
|
LEADER_ENABLE = no
|
|
DYNAMIC_MACRO_ENABLE = yes
|
|
|
|
LTO_ENABLE = yes
|
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev3)
|
|
AUDIO_ENABLE = no
|
|
BACKLIGHT_ENABLE = yes
|
|
RGB_MATRIX_ENABLE = no
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev6)
|
|
CFLAGS += -Wno-error=deprecated
|
|
EXTRALDFLAGS = -Wl,--build-id=none
|
|
AUDIO_ENABLE = no
|
|
BACKLIGHT_ENABLE = no
|
|
RGB_MATRIX_ENABLE = no
|
|
endif
|
|
ifeq ($(strip $(KEYBOARD)), planck/light)
|
|
AUDIO_ENABLE = yes
|
|
BACKLIGHT_ENABLE = no
|
|
RGB_MATRIX_ENABLE = yes
|
|
endif
|