Para uma solução rápida, adicione à linha de compilação:
-I/home/student/Downloads/fftw-3.3.4/api/ -L/home/student/Downloads/fftw-3.3.4/lib
O caminho -L pode precisar de ajuste dependendo de onde as bibliotecas estão.
Para automatizar isso, você pode adicionar o seguinte ao seu arquivo .bashrc
:
export LDFLAGS="-L/home/student/Downloads/fftw-3.3.4/lib"
export CFLAGS="-I/home/student/Downloads/fftw-3.3.4/api"
export CPPFLAGS="-I/home/student/Downloads/fftw-3.3.4/api"
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/student/Downloads/fftw-3.3.4/lib