I\'m trying to compìle some test C code using a Makefile. The main.c file includes two headers:
main.c
#include \"circle_buffer.h\" #include \"window.h\" <
Sounds like the math library, libm needs to be linked in. Add -lm to the linking stage.
libm
-lm
LIBS=-L/usr/lib/x86_64-linux-gnu -lsndfile -lm
Also try to use c++ instead of gcc compiler. It includes this library by default.