Trying to setup OpenWebRX on Raspiberry pi but dependency won't compile

Red Squirrel

No Lifer
May 24, 2003
69,998
13,484
126
www.anyf.ca
Yet another fun game of dependency hell!

Trying to install this dependency: https://github.com/simonyiszk/csdr

But I get this error:

Code:
root@sdr01:/tmp/csdr-master# make
NOTE: you may have to manually edit Makefile to optimize for your CPU (especially if you compile on ARM, please edit PARAMS_NEON).
Auto-detected optimization parameters: -mfloat-abi=hard -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad -funsafe-math-optimizations -Wformat=0

rm -f dumpvect*.vect
gcc -std=gnu99 -O3 -ffast-math -fdump-tree-vect-details -dumpbase dumpvect -mfloat-abi=hard -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad -funsafe-math-optimizations -Wformat=0 fft_fftw.c libcsdr_wrapper.c  -g -lm -lrt -lfftw3f -DUSE_FFTW -DLIBCSDR_GPL -DUSE_IMA_ADPCM -Wno-unused-result -fpic -shared -Wl,-soname,libcsdr.so.0.15 -o libcsdr.so.0.15
In file included from fft_fftw.c:3:0:
fft_fftw.h:7:19: fatal error: fftw3.h: No such file or directory
 #include <fftw3.h>
                   ^
compilation terminated.
In file included from libcsdr.h:79:0,
                 from libcsdr.c:38,
                 from libcsdr_wrapper.c:1:
fft_fftw.h:7:19: fatal error: fftw3.h: No such file or directory
 #include <fftw3.h>
                   ^
compilation terminated.
Makefile:52: recipe for target 'libcsdr.so' failed
make: *** [libcsdr.so] Error 1
root@sdr01:/tmp/csdr-master#

I edited out the last entry in the makefile as it suggests (found something on Google, I forget the parameter name but it was the last one)

Still nothing.

I also tried apt-get install fftw, libfftw with and withouth -devel just graping at straws, but nothing.

Not finding much on Google, everything I find is related to completely different programs. Anything else I can try?

My Distro is Raspian and it's a fresh install on a new Raspberry PI.