I'd like to create the simplest possible static OpenBLAS library in windows - single-threaded, and without either LAPACK, LAPACKE or DLL support. I've tried compiling with the line
make NO_LAPACK=1 NO_LAPACKE=1 USE_THREAD=0
...but the binary size comes out exactly the same as if I'd used plain "make", and I still get all the 'cannot find lib.exe' errors which, although the documentation says I shouldn't worry about them, are still undesirable when I aspire to an error-free build of my application as a whole.
Is there some other set of switches I ought to be using when doing the build?