19 lines
297 B
Makefile
19 lines
297 B
Makefile
SRC += zigotica.c
|
|
|
|
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
|
|
SRC += tapdances.c
|
|
endif
|
|
|
|
ifeq ($(strip $(COMBO_ENABLE)), yes)
|
|
INTROSPECTION_KEYMAP_C = combos.c
|
|
endif
|
|
|
|
ifeq ($(strip $(OLED_ENABLE)), yes)
|
|
SRC += oled.c
|
|
endif
|
|
|
|
ifeq ($(strip $(ENCODER_ENABLE)), yes)
|
|
SRC += encoder.c
|
|
endif
|
|
|