glew32s, mingw & makefile

Hi all,

After a long time I eventually got GLEW compiled in msys and mingw. It’s been an indirect compilation using a makefile written for mingw.
I’ve downloaded glew_1.10.0. It contains a config archive where you ‘pick’ the proper makefile. The following line works:
msys: make config=SYSTEM=mingw
It makes usable libs … but not the glew32s … the static library, and that’s what I need.
make all config=SYSTEM=mingw
works too
make all GLEW_STATIC config=SYSTEM=mingw
works too, but does not create the static library.

Any suggestion … ?