]> git.donarmstrong.com Git - qmk_firmware.git/blob - common_features.mk
Merge commit 'cedfbfcb1a9ad9cf93816f1952fc4bf7c55fbb61'
[qmk_firmware.git] / common_features.mk
1 # Copyright 2017 Fred Sundvik
2 #
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 SERIAL_DIR := $(QUANTUM_DIR)/serial_link
17 SERIAL_PATH := $(QUANTUM_PATH)/serial_link
18 SERIAL_SRC := $(wildcard $(SERIAL_PATH)/protocol/*.c)
19 SERIAL_SRC += $(wildcard $(SERIAL_PATH)/system/*.c)
20 SERIAL_DEFS += -DSERIAL_LINK_ENABLE
21 COMMON_VPATH += $(SERIAL_PATH)
22
23 ifeq ($(strip $(API_SYSEX_ENABLE)), yes)
24     OPT_DEFS += -DAPI_SYSEX_ENABLE
25     SRC += $(QUANTUM_DIR)/api/api_sysex.c
26     OPT_DEFS += -DAPI_ENABLE
27     SRC += $(QUANTUM_DIR)/api.c
28     MIDI_ENABLE=yes
29 endif
30
31 MUSIC_ENABLE := 0
32
33 ifeq ($(strip $(AUDIO_ENABLE)), yes)
34     OPT_DEFS += -DAUDIO_ENABLE
35     MUSIC_ENABLE := 1
36     SRC += $(QUANTUM_DIR)/process_keycode/process_audio.c
37     SRC += $(QUANTUM_DIR)/audio/audio.c
38     SRC += $(QUANTUM_DIR)/audio/voices.c
39     SRC += $(QUANTUM_DIR)/audio/luts.c
40 endif
41
42 ifeq ($(strip $(MIDI_ENABLE)), yes)
43     OPT_DEFS += -DMIDI_ENABLE
44     MUSIC_ENABLE := 1
45     SRC += $(QUANTUM_DIR)/process_keycode/process_midi.c
46 endif
47
48 ifeq ($(MUSIC_ENABLE), 1)
49     SRC += $(QUANTUM_DIR)/process_keycode/process_music.c
50 endif
51
52 ifeq ($(strip $(COMBO_ENABLE)), yes)
53     OPT_DEFS += -DCOMBO_ENABLE
54     SRC += $(QUANTUM_DIR)/process_keycode/process_combo.c
55 endif
56
57 ifeq ($(strip $(VIRTSER_ENABLE)), yes)
58     OPT_DEFS += -DVIRTSER_ENABLE
59 endif
60
61 ifeq ($(strip $(FAUXCLICKY_ENABLE)), yes)
62     OPT_DEFS += -DFAUXCLICKY_ENABLE
63     SRC += $(QUANTUM_DIR)/fauxclicky.c
64 endif
65
66 ifeq ($(strip $(UCIS_ENABLE)), yes)
67     OPT_DEFS += -DUCIS_ENABLE
68     UNICODE_COMMON = yes
69     SRC += $(QUANTUM_DIR)/process_keycode/process_ucis.c
70 endif
71
72 ifeq ($(strip $(UNICODEMAP_ENABLE)), yes)
73     OPT_DEFS += -DUNICODEMAP_ENABLE
74     UNICODE_COMMON = yes
75     SRC += $(QUANTUM_DIR)/process_keycode/process_unicodemap.c
76 endif
77
78 ifeq ($(strip $(UNICODE_ENABLE)), yes)
79     OPT_DEFS += -DUNICODE_ENABLE
80     UNICODE_COMMON = yes
81     SRC += $(QUANTUM_DIR)/process_keycode/process_unicode.c
82 endif
83
84 ifeq ($(strip $(UNICODE_COMMON)), yes)
85     SRC += $(QUANTUM_DIR)/process_keycode/process_unicode_common.c
86 endif
87
88 ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
89     OPT_DEFS += -DRGBLIGHT_ENABLE
90     SRC += $(QUANTUM_DIR)/light_ws2812.c
91     SRC += $(QUANTUM_DIR)/rgblight.c
92     CIE1931_CURVE = yes
93     LED_BREATHING_TABLE = yes
94 endif
95
96 ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)
97     OPT_DEFS += -DTAP_DANCE_ENABLE
98     SRC += $(QUANTUM_DIR)/process_keycode/process_tap_dance.c
99 endif
100
101 ifeq ($(strip $(PRINTING_ENABLE)), yes)
102     OPT_DEFS += -DPRINTING_ENABLE
103     SRC += $(QUANTUM_DIR)/process_keycode/process_printer.c
104     SRC += $(TMK_DIR)/protocol/serial_uart.c
105 endif
106
107 ifeq ($(strip $(SERIAL_LINK_ENABLE)), yes)
108     SRC += $(patsubst $(QUANTUM_PATH)/%,%,$(SERIAL_SRC))
109     OPT_DEFS += $(SERIAL_DEFS)
110     VAPTH += $(SERIAL_PATH)
111 endif
112
113 ifneq ($(strip $(VARIABLE_TRACE)),)
114     SRC += $(QUANTUM_DIR)/variable_trace.c
115     OPT_DEFS += -DNUM_TRACED_VARIABLES=$(strip $(VARIABLE_TRACE))
116 ifneq ($(strip $(MAX_VARIABLE_TRACE_SIZE)),)
117     OPT_DEFS += -DMAX_VARIABLE_TRACE_SIZE=$(strip $(MAX_VARIABLE_TRACE_SIZE))
118 endif
119 endif
120
121 ifeq ($(strip $(LCD_ENABLE)), yes)
122     CIE1931_CURVE = yes
123 endif
124
125 ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
126     ifeq ($(strip $(VISUALIZER_ENABLE)), yes)
127         CIE1931_CURVE = yes
128     endif
129 endif
130
131 ifeq ($(strip $(CIE1931_CURVE)), yes)
132     OPT_DEFS += -DUSE_CIE1931_CURVE
133     LED_TABLES = yes
134 endif
135
136 ifeq ($(strip $(LED_BREATHING_TABLE)), yes)
137     OPT_DEFS += -DUSE_LED_BREATHING_TABLE
138     LED_TABLES = yes
139 endif
140
141 ifeq ($(strip $(LED_TABLES)), yes)
142     SRC += $(QUANTUM_DIR)/led_tables.c
143 endif
144
145 QUANTUM_SRC:= \
146     $(QUANTUM_DIR)/quantum.c \
147     $(QUANTUM_DIR)/keymap_common.c \
148     $(QUANTUM_DIR)/keycode_config.c \
149     $(QUANTUM_DIR)/process_keycode/process_leader.c
150
151 ifndef CUSTOM_MATRIX
152     QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
153 endif