common.mk 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. COMMON_DIR = common
  2. SRC += $(COMMON_DIR)/host.c \
  3. $(COMMON_DIR)/keyboard.c \
  4. $(COMMON_DIR)/action.c \
  5. $(COMMON_DIR)/action_tapping.c \
  6. $(COMMON_DIR)/action_macro.c \
  7. $(COMMON_DIR)/action_layer.c \
  8. $(COMMON_DIR)/action_util.c \
  9. $(COMMON_DIR)/keymap.c \
  10. $(COMMON_DIR)/print.c \
  11. $(COMMON_DIR)/debug.c \
  12. $(COMMON_DIR)/util.c \
  13. $(COMMON_DIR)/avr/suspend.c \
  14. $(COMMON_DIR)/avr/xprintf.S \
  15. $(COMMON_DIR)/avr/timer.c \
  16. $(COMMON_DIR)/avr/bootloader.c
  17. # Option modules
  18. ifeq ($(strip $(BOOTMAGIC_ENABLE)), yes)
  19. SRC += $(COMMON_DIR)/bootmagic.c
  20. SRC += $(COMMON_DIR)/avr/eeconfig.c
  21. OPT_DEFS += -DBOOTMAGIC_ENABLE
  22. endif
  23. ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
  24. SRC += $(COMMON_DIR)/mousekey.c
  25. OPT_DEFS += -DMOUSEKEY_ENABLE
  26. OPT_DEFS += -DMOUSE_ENABLE
  27. endif
  28. ifeq ($(strip $(EXTRAKEY_ENABLE)), yes)
  29. OPT_DEFS += -DEXTRAKEY_ENABLE
  30. endif
  31. ifeq ($(strip $(CONSOLE_ENABLE)), yes)
  32. OPT_DEFS += -DCONSOLE_ENABLE
  33. else
  34. OPT_DEFS += -DNO_PRINT
  35. OPT_DEFS += -DNO_DEBUG
  36. endif
  37. ifeq ($(strip $(COMMAND_ENABLE)), yes)
  38. SRC += $(COMMON_DIR)/command.c
  39. OPT_DEFS += -DCOMMAND_ENABLE
  40. endif
  41. ifeq ($(strip $(NKRO_ENABLE)), yes)
  42. OPT_DEFS += -DNKRO_ENABLE
  43. endif
  44. ifeq ($(strip $(MIDI_ENABLE)), yes)
  45. OPT_DEFS += -DMIDI_ENABLE
  46. endif
  47. ifeq ($(strip $(AUDIO_ENABLE)), yes)
  48. OPT_DEFS += -DAUDIO_ENABLE
  49. endif
  50. ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
  51. OPT_DEFS += -DUSB_6KRO_ENABLE
  52. endif
  53. ifeq ($(strip $(SLEEP_LED_ENABLE)), yes)
  54. SRC += $(COMMON_DIR)/sleep_led.c
  55. OPT_DEFS += -DSLEEP_LED_ENABLE
  56. OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
  57. endif
  58. ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
  59. SRC += $(COMMON_DIR)/backlight.c
  60. SRC += $(COMMON_DIR)/avr/eeconfig.c
  61. OPT_DEFS += -DBACKLIGHT_ENABLE
  62. endif
  63. ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
  64. OPT_DEFS += -DBLUETOOTH_ENABLE
  65. endif
  66. ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
  67. OPT_DEFS += -DKEYMAP_SECTION_ENABLE
  68. ifeq ($(strip $(MCU)),atmega32u2)
  69. EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr35.x
  70. else ifeq ($(strip $(MCU)),atmega32u4)
  71. EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
  72. else
  73. EXTRALDFLAGS = $(error no ldscript for keymap section)
  74. endif
  75. endif
  76. # Version string
  77. OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
  78. # Search Path
  79. VPATH += $(TMK_DIR)/common