diff options
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index 319834b5e..a67cf230f 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -34,7 +34,11 @@ ifeq ($(strip $(AUDIO_ENABLE)), yes) | |||
34 | OPT_DEFS += -DAUDIO_ENABLE | 34 | OPT_DEFS += -DAUDIO_ENABLE |
35 | MUSIC_ENABLE := 1 | 35 | MUSIC_ENABLE := 1 |
36 | SRC += $(QUANTUM_DIR)/process_keycode/process_audio.c | 36 | SRC += $(QUANTUM_DIR)/process_keycode/process_audio.c |
37 | SRC += $(QUANTUM_DIR)/audio/audio.c | 37 | ifeq ($(PLATFORM),AVR) |
38 | SRC += $(QUANTUM_DIR)/audio/audio.c | ||
39 | else | ||
40 | SRC += $(QUANTUM_DIR)/audio/audio_arm.c | ||
41 | endif | ||
38 | SRC += $(QUANTUM_DIR)/audio/voices.c | 42 | SRC += $(QUANTUM_DIR)/audio/voices.c |
39 | SRC += $(QUANTUM_DIR)/audio/luts.c | 43 | SRC += $(QUANTUM_DIR)/audio/luts.c |
40 | endif | 44 | endif |