so i'm compiling on windows using mingw 8.1 and regular cmd.exe
compiling works, altough "clean" uses linux specific stuff that fails to cleanup properly nonetheless it compiles
however i noticed a few things when compiling the simplest make lib/slib forms:
- it requires libpthread-1.dll just for clock_gettime. so i added a clock_gettime.c to sources on windows, so that libpthread is not included if used just for that
- its requiring a mingw gcc dll for div??? when generating the .dll as dependency that i removed by adding -static-libgcc to compile options.. so now just a warning left..