forked from forks/qmk_firmware
e6217b6aa6
* Remove command and console - these options prevent community layouts from being built on other keyboards. Selectively enable it on keyboards I own rather than on everything. * Update users/yanfali/rules.mk
39 lines
789 B
Makefile
39 lines
789 B
Makefile
BOOTMAGIC_ENABLE = lite
|
|
DYNAMIC_KEYMAP_ENABLE = no
|
|
LTO_ENABLE = yes
|
|
AUDIO_ENABLE = no
|
|
|
|
# only enable audio on specific boards
|
|
ifeq ($(strip $(KEYBOARD)), evyd13/plain60)
|
|
AUDIO_ENABLE = yes
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), clueboard/60)
|
|
AUDIO_ENABLE = yes
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), hadron/ver3)
|
|
AUDIO_ENABLE = yes
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), fruity60)
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = no
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), kbdfans/kbd75/rev1)
|
|
COMMAND_ENABLE = no
|
|
endif
|
|
|
|
ifeq ($(strip $(KEYBOARD)), ai03/polaris)
|
|
RGBLIGHT_ENABLE = no
|
|
CONSOLE_ENABLE = yes
|
|
COMMAND_ENABLE = yes
|
|
endif
|