]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common.mk
Merge https://github.com/jackhumbert/qmk_firmware
[qmk_firmware.git] / tmk_core / common.mk
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
18
19 # Option modules
20 ifeq ($(strip $(BOOTMAGIC_ENABLE)), yes)
21     SRC += $(COMMON_DIR)/bootmagic.c
22     SRC += $(COMMON_DIR)/avr/eeconfig.c
23     OPT_DEFS += -DBOOTMAGIC_ENABLE
24 else
25     SRC += $(COMMON_DIR)/magic.c
26     SRC += $(COMMON_DIR)/avr/eeconfig.c
27 endif
28
29 ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
30     SRC += $(COMMON_DIR)/mousekey.c
31     OPT_DEFS += -DMOUSEKEY_ENABLE
32     OPT_DEFS += -DMOUSE_ENABLE
33 endif
34
35 ifeq ($(strip $(EXTRAKEY_ENABLE)), yes)
36     OPT_DEFS += -DEXTRAKEY_ENABLE
37 endif
38
39 ifeq ($(strip $(CONSOLE_ENABLE)), yes)
40     OPT_DEFS += -DCONSOLE_ENABLE
41 else
42     OPT_DEFS += -DNO_PRINT
43     OPT_DEFS += -DNO_DEBUG
44 endif
45
46 ifeq ($(strip $(COMMAND_ENABLE)), yes)
47     SRC += $(COMMON_DIR)/command.c
48     OPT_DEFS += -DCOMMAND_ENABLE
49 endif
50
51 ifeq ($(strip $(NKRO_ENABLE)), yes)
52     OPT_DEFS += -DNKRO_ENABLE
53 endif
54
55 ifeq ($(strip $(MIDI_ENABLE)), yes)
56     OPT_DEFS += -DMIDI_ENABLE
57 endif
58
59 ifeq ($(strip $(AUDIO_ENABLE)), yes)
60     OPT_DEFS += -DAUDIO_ENABLE
61 endif
62
63 ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
64     OPT_DEFS += -DUSB_6KRO_ENABLE
65 endif
66
67 ifeq ($(strip $(SLEEP_LED_ENABLE)), yes)
68     SRC += $(COMMON_DIR)/sleep_led.c
69     OPT_DEFS += -DSLEEP_LED_ENABLE
70     OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
71 endif
72
73 ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
74     SRC += $(COMMON_DIR)/backlight.c
75     SRC += $(COMMON_DIR)/avr/eeconfig.c
76     OPT_DEFS += -DBACKLIGHT_ENABLE
77 endif
78
79 ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
80     OPT_DEFS += -DBLUETOOTH_ENABLE
81 endif
82
83 ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
84     OPT_DEFS += -DKEYMAP_SECTION_ENABLE
85
86     ifeq ($(strip $(MCU)),atmega32u2)
87         EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr35.x
88     else ifeq ($(strip $(MCU)),atmega32u4)
89         EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
90     else
91         EXTRALDFLAGS = $(error no ldscript for keymap section)
92     endif
93 endif
94
95 # Version string
96 OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
97
98
99 # Search Path
100 VPATH += $(TMK_DIR)/common