refactor(core): nix duplicate makefile inclusions

DIP_SWITCH and DYNAMIC KEYMAP are already included by
generic_features.mk
This commit is contained in:
honorless 2023-06-17 16:44:27 -04:00
parent 4fb8cc318c
commit be099f9f32
No known key found for this signature in database
GPG Key ID: 1B48A311ABE8DA4D

View File

@ -655,11 +655,6 @@ ifeq ($(strip $(VIALRGB_ENABLE)), yes)
OPT_DEFS += -DVIALRGB_ENABLE
endif
ifeq ($(strip $(DYNAMIC_KEYMAP_ENABLE)), yes)
OPT_DEFS += -DDYNAMIC_KEYMAP_ENABLE
SRC += $(QUANTUM_DIR)/dynamic_keymap.c
endif
ifeq ($(strip $(QMK_SETTINGS)), yes)
AUTO_SHIFT_ENABLE := yes
SRC += $(QUANTUM_DIR)/qmk_settings.c
@ -669,11 +664,6 @@ ifeq ($(strip $(QMK_SETTINGS)), yes)
-DCOMBO_TERM_PER_COMBO
endif
ifeq ($(strip $(DIP_SWITCH_ENABLE)), yes)
OPT_DEFS += -DDIP_SWITCH_ENABLE
SRC += $(QUANTUM_DIR)/dip_switch.c
endif
VALID_MAGIC_TYPES := yes
BOOTMAGIC_ENABLE ?= no
ifneq ($(strip $(BOOTMAGIC_ENABLE)), no)