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
|
# include common settings
|
||||||
ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||||
include ${ROOT_DIR}../../../../rules.mk
|
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
|
# add achordion to improve home row modifiers
|
||||||
SRC += features/achordion.c
|
SRC += features/achordion.c
|
||||||
|
|
||||||
# add bongocat & luna for OLED
|
# add bongocat & luna for OLEDs
|
||||||
SRC += features/oled_bongocat.c
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
||||||
SRC += features/oled_luna.c
|
SRC += features/oled_bongocat.c
|
||||||
|
SRC += features/oled_luna.c
|
||||||
|
endif
|
||||||
|
|
||||||
# good optimizations
|
# good optimizations
|
||||||
LTO_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
|
Loading…
Reference in a new issue