Hans-Christoph Steiner wrote:
make: *** No rule to make target `/usr/include/stdlib.h', needed by `g_canvas.o'. Stop
This is the first line of the first file that you're trying to compile, so it looks like the compiler isn't being specified. Turns out that in the makefile.mingw in pd/src (maybe not the same makefile you're using) the variable $(CC) is never defined; normally it should be set to point to gcc. Did some line(s) get dropped accidentally?
AFAIK, if CC is not defined, make automatically defines it. Or something does, at least, since when I echo $(CC), I get "gcc".
I tried manually defining it and it didn't change the error :(
Did you try a make depend first? Just guessing...
Martin