rules.mk 320 B

123456789101112
  1. SRC += konstantin.c
  2. ifneq (,$(filter yes,$(RGBLIGHT_ENABLE) $(RGB_MATRIX_ENABLE))) # if either is yes
  3. SRC += rgb.c
  4. endif
  5. ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
  6. SRC += tap_dance.c
  7. endif
  8. ifneq (,$(filter yes,$(UNICODE_ENABLE) $(UNICODEMAP_ENABLE))) # if either is yes
  9. SRC += unicode.c
  10. endif
  11. EXTRAFLAGS += -flto