rules.mk 328 B

123456789101112131415
  1. SRC += konstantin.c
  2. ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
  3. SRC += rgb.c
  4. endif
  5. ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
  6. SRC += rgb.c
  7. endif
  8. ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
  9. SRC += tap_dance.c
  10. endif
  11. ifneq (,$(filter yes,$(UNICODE_ENABLE) $(UNICODEMAP_ENABLE)))
  12. SRC += unicode.c
  13. endif
  14. EXTRAFLAGS += -flto