rules.mk 593 B

123456789101112131415161718
  1. BOOTMAGIC_ENABLE = no # Disable Boot Magic (https://beta.docs.qmk.fm/features/feature_bootmagic)
  2. MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
  3. EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
  4. TAP_DANCE_ENABLE = yes # Enable Tap Dance.
  5. Link_Time_Optimization = no # if firmware size over limit, try this option
  6. ifeq ($(strip $(Link_Time_Optimization)),yes)
  7. EXTRAFLAGS += -flto -DUSE_Link_Time_Optimization
  8. endif
  9. SRC += ninjonas.c \
  10. process_records.c \
  11. tap_dances.c
  12. ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
  13. SRC += secrets.c
  14. endif