diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-14 22:29:33 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-14 22:29:33 -0500 |
commit | d4f90fe882b33a99fd94e1befdf21323293e71ea (patch) | |
tree | 471c87ffe70b7ffb18b2282c68dcbd51cedc3cb4 /quantum | |
parent | 3dd20f2b6c16ea56bacc5e1581db3fbc1cfc5444 (diff) | |
parent | 63462bf8c12cea1c13ca1bd1f105fe53f556806e (diff) | |
download | firmware-d4f90fe882b33a99fd94e1befdf21323293e71ea.tar.gz firmware-d4f90fe882b33a99fd94e1befdf21323293e71ea.tar.bz2 firmware-d4f90fe882b33a99fd94e1befdf21323293e71ea.zip |
Merge remote-tracking branch 'remotes/jackhumbert/new_defaults'
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/quantum.mk b/quantum/quantum.mk index de93af7e8..3069f582c 100644 --- a/quantum/quantum.mk +++ b/quantum/quantum.mk @@ -23,19 +23,19 @@ ifndef CUSTOM_MATRIX SRC += $(QUANTUM_DIR)/matrix.c endif -ifdef MIDI_ENABLE +ifeq ($(MIDI_ENABLE), yes) SRC += $(QUANTUM_DIR)/keymap_midi.c endif -ifdef AUDIO_ENABLE +ifeq ($(AUDIO_ENABLE), yes) SRC += $(QUANTUM_DIR)/audio.c endif -ifdef UNICODE_ENABLE +ifeq ($(UNICODE_ENABLE), yes) SRC += $(QUANTUM_DIR)/keymap_unicode.c endif -ifdef RGBLIGHT_ENABLE +ifeq ($(RGBLIGHT_ENABLE), yes) SRC += $(QUANTUM_DIR)/light_ws2812.c SRC += $(QUANTUM_DIR)/rgblight.c OPT_DEFS += -DRGBLIGHT_ENABLE |