]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common.mk
Merge pull request #297 from gid0/master
[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 $(UNICODE_ENABLE)), yes)
64     OPT_DEFS += -DUNICODE_ENABLE
65 endif
66
67 ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
68     OPT_DEFS += -DUSB_6KRO_ENABLE
69 endif
70
71 ifeq ($(strip $(SLEEP_LED_ENABLE)), yes)
72     SRC += $(COMMON_DIR)/sleep_led.c
73     OPT_DEFS += -DSLEEP_LED_ENABLE
74     OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
75 endif
76
77 ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
78     SRC += $(COMMON_DIR)/backlight.c
79     SRC += $(COMMON_DIR)/avr/eeconfig.c
80     OPT_DEFS += -DBACKLIGHT_ENABLE
81 endif
82
83 ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
84     OPT_DEFS += -DBLUETOOTH_ENABLE
85 endif
86
87 ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
88     OPT_DEFS += -DKEYMAP_SECTION_ENABLE
89
90     ifeq ($(strip $(MCU)),atmega32u2)
91         EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr35.x
92     else ifeq ($(strip $(MCU)),atmega32u4)
93         EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
94     else
95         EXTRALDFLAGS = $(error no ldscript for keymap section)
96     endif
97 endif
98
99 # Version string
100 OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
101
102
103 # Search Path
104 VPATH += $(TMK_DIR)/common