From 0bc1116e90e2711d99359a4d3b8dc4d4ead4afcc Mon Sep 17 00:00:00 2001 From: sjlongland Date: Thu, 24 Sep 2015 09:17:54 +0000 Subject: [PATCH] Makefile: Fix build of fft_test.elf git-svn-id: https://svn.code.sf.net/p/freetel/code@2373 01035d8c-6547-0410-b346-abe4f91aad63 --- codec2-dev/stm32/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/codec2-dev/stm32/Makefile b/codec2-dev/stm32/Makefile index 0ea758a0..21698d03 100644 --- a/codec2-dev/stm32/Makefile +++ b/codec2-dev/stm32/Makefile @@ -410,6 +410,7 @@ FFT_TEST_SRCS = \ $(DSPLIB)/Examples/arm_fft_bin_example/GCC/arm_fft_bin_data.c \ fft_test.c \ src/startup_stm32f4xx.s \ +src/system_stm32f4xx.c \ stm32f4_machdep.c \ gdb_stdio.c \ ../src/kiss_fft.c @@ -495,7 +496,7 @@ CODEC2_PROFILE_SRCS += $(CODEC2_SRCS) codec2_profile.elf: $(CODEC2_PROFILE_SRCS:.c=.o) libstm32f4.a $(CC) $(CFLAGS) -DPROFILE $^ -o $@ $(LIBPATHS) $(LIBS) -fft_test.elf: $(FFT_TEST_SRCS:.c=.o) +fft_test.elf: $(FFT_TEST_SRCS:.c=.o) libstm32f4.a $(CC) $(CFLAGS) $^ -o $@ $(LIBPATHS) $(LIBS) DAC_UT_SRCS=\ -- 2.25.1