From: Ramakrishnan Muthukrishnan <ram@rkrishnan.org>
Date: Wed, 8 Mar 2023 13:44:30 +0000 (+0530)
Subject: makefile: explicitly add fftw linking
X-Git-Url: https://git.rkrishnan.org/pf/content/en/seg/priv/?a=commitdiff_plain;h=6654ba4fef4137a7359b017b9ccfcb8da2cc41a2;p=pihpsdr.git

makefile: explicitly add fftw linking
---

diff --git a/Makefile b/Makefile
index af67794..ce21e40 100644
--- a/Makefile
+++ b/Makefile
@@ -176,7 +176,7 @@ ifeq ($(UNAME_S), Linux)
 RT_OPTION=-lrt
 endif
 
-LIBS=$(RT_OPTION) -lm -lwdsp -lrnnoise -lspecbleach -lpthread $(AUDIO_LIBS) $(USBOZY_LIBS) $(GTKLIBS) $(GPIO_LIBS) $(MIDI_LIBS)
+LIBS=$(RT_OPTION) -lfftw3 -lm -lwdsp -lrnnoise -lspecbleach -lpthread $(AUDIO_LIBS) $(USBOZY_LIBS) $(GTKLIBS) $(GPIO_LIBS) $(MIDI_LIBS)
 INCLUDES=$(GTKINCLUDES)
 
 COMPILE=$(CC) $(CFLAGS) $(OPTIONS) $(INCLUDES)