diff options
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index a1f95955a..e50207b0b 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -407,8 +407,12 @@ ifeq ($(strip $(SPACE_CADET_ENABLE)), yes) | |||
407 | OPT_DEFS += -DSPACE_CADET_ENABLE | 407 | OPT_DEFS += -DSPACE_CADET_ENABLE |
408 | endif | 408 | endif |
409 | 409 | ||
410 | |||
411 | ifeq ($(strip $(DIP_SWITCH_ENABLE)), yes) | 410 | ifeq ($(strip $(DIP_SWITCH_ENABLE)), yes) |
412 | SRC += $(QUANTUM_DIR)/dip_switch.c | 411 | SRC += $(QUANTUM_DIR)/dip_switch.c |
413 | OPT_DEFS += -DDIP_SWITCH_ENABLE | 412 | OPT_DEFS += -DDIP_SWITCH_ENABLE |
414 | endif | 413 | endif |
414 | |||
415 | ifeq ($(strip $(DYNAMIC_MACRO_ENABLE)), yes) | ||
416 | SRC += $(QUANTUM_DIR)/process_keycode/process_dynamic_macro.c | ||
417 | OPT_DEFS += -DDYNAMIC_MACRO_ENABLE | ||
418 | endif | ||