don't do the OLED stuff for Planck
This commit is contained in:
parent
1572a1d707
commit
9a5daf3e45
|
@ -1,3 +1,6 @@
|
|||
# set flags we check in common settings
|
||||
OLED_ENABLE = yes
|
||||
|
||||
# include common settings
|
||||
ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||
include ${ROOT_DIR}../../../../rules.mk
|
||||
|
|
8
rules.mk
8
rules.mk
|
@ -13,9 +13,11 @@ SPACE_CADET_ENABLE = no
|
|||
# add achordion to improve home row modifiers
|
||||
SRC += features/achordion.c
|
||||
|
||||
# add bongocat & luna for OLED
|
||||
SRC += features/oled_bongocat.c
|
||||
SRC += features/oled_luna.c
|
||||
# add bongocat & luna for OLEDs
|
||||
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||
SRC += features/oled_bongocat.c
|
||||
SRC += features/oled_luna.c
|
||||
endif
|
||||
|
||||
# good optimizations
|
||||
LTO_ENABLE = yes
|
||||
|
|
Loading…
Reference in a new issue