summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/lufa.mk
diff options
context:
space:
mode:
authorIBNobody <ibnobody@gmail.com>2016-04-15 05:29:33 +0200
committerIBNobody <ibnobody@gmail.com>2016-04-15 05:29:33 +0200
commitd4f90fe882b33a99fd94e1befdf21323293e71ea (patch)
tree471c87ffe70b7ffb18b2282c68dcbd51cedc3cb4 /tmk_core/protocol/lufa.mk
parent3dd20f2b6c16ea56bacc5e1581db3fbc1cfc5444 (diff)
parent63462bf8c12cea1c13ca1bd1f105fe53f556806e (diff)
downloadqmk_firmware-d4f90fe882b33a99fd94e1befdf21323293e71ea.tar.gz
qmk_firmware-d4f90fe882b33a99fd94e1befdf21323293e71ea.tar.xz
Merge remote-tracking branch 'remotes/jackhumbert/new_defaults'
Diffstat (limited to 'tmk_core/protocol/lufa.mk')
-rw-r--r--tmk_core/protocol/lufa.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa.mk b/tmk_core/protocol/lufa.mk
index 4905760bb..f3209c227 100644
--- a/tmk_core/protocol/lufa.mk
+++ b/tmk_core/protocol/lufa.mk
@@ -17,7 +17,7 @@ LUFA_SRC = $(LUFA_DIR)/lufa.c \
$(LUFA_DIR)/descriptor.c \
$(LUFA_SRC_USB)
-ifdef MIDI_ENABLE
+ifeq ($(MIDI_ENABLE), yes)
LUFA_SRC += $(LUFA_DIR)/midi/midi.c \
$(LUFA_DIR)/midi/midi_device.c \
$(LUFA_DIR)/midi/bytequeue/bytequeue.c \
@@ -25,7 +25,7 @@ ifdef MIDI_ENABLE
$(LUFA_SRC_USBCLASS)
endif
-ifdef BLUETOOTH_ENABLE
+ifeq ($(BLUETOOTH_ENABLE), yes)
LUFA_SRC += $(LUFA_DIR)/bluetooth.c \
$(TMK_DIR)/protocol/serial_uart.c
endif