1If this is a combined source/binary distribution tree, then you can find 2 3 * the binary DLL in the subdirectory binary/bin/ 4 * the include files in the subdirectory binary/include/ 5 6As for building libexif yourself on or for Win32, you can 7 8 a) hack yourself a build system somehow 9 This seems to be the Windows way of doing things. 10 b) Use MinGW32 11 12If you use MinGW32 (including MSYS) on Windows, building libexif should 13follow the usual pattern of 14 15 ./configure 16 make 17 make install 18 19as for any Unix like system and you can just follow the general 20instructions. 21 22Something neat to do is to use a MinGW32 cross compiler on a Unix 23system (Debian ships one for example). Then you can run 24 25 ./configure --host=i586-mingw32msvc --disable-nls 26 make 27 make install 28 29If you want to build a combined source/binary distribution tarball/zipfile, 30then add the --enable-ship-binaries option to the ./configure command line. 31