2017-09-08 10:47:50 -07:00
|
|
|
ifndef QUANTUM_DIR
|
|
|
|
include ../../../../Makefile
|
|
|
|
endif
|
|
|
|
|
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
2018-08-31 08:12:37 -07:00
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
2017-12-08 06:33:24 -08:00
|
|
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
2018-10-03 08:30:44 -07:00
|
|
|
EXTRAKEY_ENABLE = no
|
2017-09-08 10:47:50 -07:00
|
|
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
|
|
|
API_SYSEX_ENABLE = no
|
2018-08-31 08:12:37 -07:00
|
|
|
|
2018-10-31 07:07:34 -07:00
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev3)
|
|
|
|
AUDIO_ENABLE = no
|
|
|
|
BACKLIGHT_ENABLE = yes
|
|
|
|
RGB_MATRIX_ENABLE = no
|
2018-08-31 08:12:37 -07:00
|
|
|
endif
|
2018-10-31 07:07:34 -07:00
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/rev6)
|
|
|
|
EXTRALDFLAGS = -Wl,--build-id=none
|
|
|
|
AUDIO_ENABLE = yes
|
|
|
|
BACKLIGHT_ENABLE = no
|
|
|
|
RGB_MATRIX_ENABLE = no
|
|
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), planck/light)
|
|
|
|
AUDIO_ENABLE = yes
|
|
|
|
BACKLIGHT_ENABLE = no
|
|
|
|
RGB_MATRIX_ENABLE = yes
|
|
|
|
endif
|
|
|
|
|